@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

* {
  font-family: "Inter", sans-serif;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}


.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Stagger animations */
.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #fdc102 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow effect */
.glow-border {
  border: 1px solid #3b83f6ad;
}
.glow-border:hover {
  border-color: rgb(246 181 1 / 77%);
}



/* Smooth transitions */
button,
a {
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: 1px solid rgba(59, 130, 246, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid rgba(59, 130, 246, 0.5);
  color: #3b82f6;
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 300px;
}

.hero-video-bg {
  position: relative;
  overflow: hidden;
}

.hero-video-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.7) 50%,
    rgba(15, 23, 42, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.about-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  align-items: center;
}

.about-feat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-content .title {
  font-size: 18px;
  color: #a7a7a7;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.credential-badge {
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid #fcbd0769;
  color: #87b7ff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.experience-highlight {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05),
    rgba(0, 212, 255, 0.02)
  );
  border-left: 3px solid #fcc000;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 4px;
}

.experience-highlight strong {
  color: #fcc000;
  display: block;
  margin-bottom: 5px;
}

.experience-highlight p {
  margin: 0;
  font-size: 14px;
}

.about-image {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  border: 2px solid rgba(250, 192, 0, 0.3);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-content {
  text-align: center;
}

.about-image-content .initials {
  font-size: 60px;
  font-weight: bold;
  color: #fcc000;
  margin-bottom: 15px;
}

.about-image-content p {
  font-size: 14px;
  color: #94a3b8;
}
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
       .about-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 400px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}



 



/* Course card hover */
/* .course-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
} */

/* Testimonial card */
.testimonial-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.card-glow {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.card-glow:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}

.input-field {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
  background: rgba(30, 41, 59, 0.95);
}

/* Slick Carousel Dots - Light Color */
.slick-dots li button:before {
  color: #f3f4f6 !important;
}



    .highlight-item {
      background: rgba(0, 102, 255, 0.05);
      border-left: 3px solid #3b82f6;
      transition: all 0.3s ease;
    }

    .highlight-item:hover {
      background: rgba(0, 102, 255, 0.1);
    }




    /*--------------------------------------------------------------
# whatsApp Section
--------------------------------------------------------------*/

  .wtsApp-button {
    width: 50px;
    height: 50px;
    text-decoration: none;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 18px;
    right: 20px;
    color: #fff;
    border-radius: 50px;
    z-index: 100;
    box-shadow: 1px 2px 5px 2px rgb(30 30 30 / 30%);
    transition: all 0.3s ease-out;
}

.wtsApp_btn_bottom {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  position: absolute;
  margin: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.wtsApp_btn_bottom:hover{
  color:#ffffff ;
}

.wtsApp_btn_bottom:before, .wtsApp_btn_bottom:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.wtsApp_btn_bottom:before {
  animation: pulse 2s ease-out infinite;
}
.wtsApp_btn_bottom:after {
  animation: pulse 2s 1s ease-out infinite;
}


@keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.5);
                opacity: 0.2;
            }
            100% {
                transform: scale(2);
                opacity: 0;
            }
        }
