@charset "utf-8";

:root {
  --primary: #2ECC71;
  --primary-dark: #27AE60;
  --accent: #2ECC71;
  --dark: #1A1A2E;
  --dark-lighter: #222240;
  --text: #2D2D2D;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-hero: #FFF8F0;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
  --border: #E8E8E8;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
}

p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.text-accent {
  color: var(--primary);
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================
   NAVBAR
   =================== */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar-brand img {
  height: 45px;
  transition: var(--transition);
}

.navbar-brand .logo-light {
  display: none !important;
}

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

.btn-primary-custom {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===================
   HERO SECTION
   =================== */
#hero {
  background-color: var(--bg-hero);
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.min-vh-80 {
  min-height: 80vh;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  margin-bottom: 50px;
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 110px;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.stat-box p {
  font-size: 12px;
  margin-bottom: 0;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Floating hero images */
.hero-images {
  position: relative;
  height: 500px;
}

.floating-images-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-img {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  object-fit: cover;
}

.float-img-1 {
  width: 220px;
  height: 260px;
  top: 10%;
  left: 10%;
  z-index: 3;
}

.float-img-2 {
  width: 180px;
  height: 200px;
  top: 5%;
  right: 10%;
  z-index: 2;
}

.float-img-3 {
  width: 200px;
  height: 220px;
  bottom: 10%;
  left: 25%;
  z-index: 4;
}

.float-img-4 {
  width: 160px;
  height: 180px;
  bottom: 15%;
  right: 5%;
  z-index: 1;
}

.float-img-5 {
  width: 140px;
  height: 160px;
  top: 40%;
  left: 0;
  z-index: 2;
}

/* ===================
   CATEGORIES / CLASSES
   =================== */
#classes {
  padding: 100px 0;
  background-color: var(--white);
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.category-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--primary);
  color: var(--white);
}

.category-card h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.badge-custom {
  display: inline-block;
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* ===================
   BATCHES / COURSES
   =================== */
#batches {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.course-video {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--dark);
}

.course-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-info {
  padding: 20px;
}

.course-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.course-info h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.course-info > p {
  font-size: 14px;
  margin-bottom: 12px;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===================
   PROMO VIDEO
   =================== */
#promo-video {
  padding: 100px 0;
  background-color: var(--white);
}

.video-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.video-wrapper video {
  display: block;
  border-radius: var(--radius);
}

/* ===================
   VISION SECTION
   =================== */
#vision {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.vision-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.vision-content .lead {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 25px;
}

.approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approach-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
}

.approach-list li i {
  margin-right: 10px;
  font-size: 16px;
}

.vision-video {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.vision-video video {
  display: block;
  border-radius: var(--radius);
}

/* ===================
   APPROACH SECTION
   =================== */
#approach {
  padding: 100px 0;
  background-color: var(--white);
}

.approach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.approach-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.approach-img {
  margin-bottom: 20px;
}

.approach-img img {
  height: 120px;
  object-fit: contain;
}

.approach-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 15px;
}

/* ===================
   TESTIMONIALS
   =================== */
#testimonials {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.testimonialSwiper {
  padding: 20px 50px 60px;
  position: relative;
}

.testimonial-video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-video {
  width: 100%;
  height: 400px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.testimonial-video-vertical {
  height: 400px;
}

.testimonial-video-info {
  padding: 24px;
}

.testimonial-video-info h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.testimonial-video-info p {
  font-size: 14px;
  margin-bottom: 0;
}

/* Swiper custom styles */
.testimonialSwiper .swiper-button-next,
.testimonialSwiper .swiper-button-prev {
  color: var(--primary);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.testimonialSwiper .swiper-button-next::after,
.testimonialSwiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Google Review Cards */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  height: 100%;
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.review-header h6 {
  margin-bottom: 2px;
  font-weight: 600;
}

.stars {
  color: #FFD700;
  font-size: 13px;
}

.google-icon {
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.review-card > p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================
   FIND COURSES (DARK)
   =================== */
#find-courses {
  padding: 100px 0;
  background-color: var(--dark);
}

#find-courses .section-header h2 {
  color: var(--white);
}

#find-courses .section-header p {
  color: var(--text-muted);
}

.find-course-card {
  background: var(--dark-lighter);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.find-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.find-course-img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
}

.find-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.find-course-card h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.find-course-card span {
  color: var(--text-muted);
  font-size: 14px;
  display: block;
}

/* ===================
   CTA BANNER
   =================== */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #17C1AE, #2ECC71);
  color: var(--white);
}

#cta-banner h2 {
  color: var(--white);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}

#cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 0;
}

#cta-banner .btn-light {
  border-radius: 30px;
  font-weight: 700;
  padding: 14px 32px;
  color: var(--primary-dark);
}

#cta-banner .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===================
   FAQ SECTION
   =================== */
#faq {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  padding: 18px 24px;
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(46, 204, 113, 0.05);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button::after {
  background-size: 16px;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.accordion-body {
  padding: 4px 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ===================
   CONTACT SECTION
   =================== */
#contact {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: var(--transition);
  height: 100%;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
  color: var(--primary);
}

.contact-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.contact-link:hover {
  color: var(--primary);
}

/* ===================
   FOOTER
   =================== */
footer {
  background-color: var(--dark);
  padding: 60px 0 30px;
  color: #ccc;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-about {
  color: #999;
  font-size: 14px;
  line-height: 1.7;
}

footer h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #999;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #999;
  font-size: 14px;
}

.footer-contact a {
  color: #999;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-lighter);
  align-items: center;
  justify-content: center;
  color: #999;
  margin-right: 8px;
  font-size: 18px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

footer hr {
  border-color: #333;
  margin: 30px 0 20px;
}

.copyright {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

/* ===================
   ENQUIRY MODAL
   =================== */
.modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.modal-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
}

.modal-body {
  padding: 24px;
}

.form-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}

.form-control::placeholder {
  color: #bbb;
}

/* ===================
   WHATSAPP FLOAT
   =================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================
   RESPONSIVE STYLES
   =================== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .float-img-1 { width: 180px; height: 210px; }
  .float-img-2 { width: 150px; height: 170px; }
  .float-img-3 { width: 170px; height: 190px; }
  .float-img-4 { width: 130px; height: 150px; }
  .float-img-5 { width: 120px; height: 140px; }
}

@media (max-width: 991px) {
  .section-header h2 {
    font-size: 30px;
  }

  #hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  #hero .row {
    flex-direction: column-reverse;
  }

  .min-vh-80 {
    min-height: auto;
  }

  .hero-content {
    margin-top: 30px;
  }

  .hero-content h1 {
    font-size: 34px;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    max-width: 100%;
  }

  .hero-buttons {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-images {
    height: 320px;
    margin-top: 0;
  }

  .testimonial-video,
  .testimonial-video-vertical {
    height: 300px;
  }

  .float-img-1 { width: 160px; height: 180px; left: 5%; }
  .float-img-2 { width: 130px; height: 150px; right: 5%; }
  .float-img-3 { width: 140px; height: 160px; left: 20%; }
  .float-img-4 { width: 120px; height: 140px; right: 2%; }
  .float-img-5 { width: 100px; height: 120px; }

  .vision-content h2 {
    font-size: 28px;
  }

  #cta-banner h2 {
    font-size: 24px;
  }

  #classes,
  #batches,
  #promo-video,
  #vision,
  #approach,
  #testimonials,
  #find-courses,
  #faq,
  #contact {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 26px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .hero-buttons .btn.ms-2 {
    margin-left: 0 !important;
  }

  .hero-stats {
    gap: 10px;
  }

  .stat-box {
    padding: 12px 16px;
    min-width: 90px;
  }

  .stat-box h3 {
    font-size: 22px;
  }

  .hero-images {
    height: 280px;
  }

  .float-img-1 { width: 130px; height: 150px; top: 5%; left: 35%; }
  .float-img-2 { width: 110px; height: 130px; top: 0; right: 2%; }
  .float-img-3 { width: 120px; height: 140px; bottom: 5%; left: 15%; }
  .float-img-4 { width: 100px; height: 115px; bottom: 10%; right: 30%; }
  .float-img-5 { width: 90px; height: 100px; top: 35%; left: -2%; }

  .testimonialSwiper {
    padding: 20px 10px 110px;
  }

  .testimonialSwiper .swiper-pagination {
    bottom: 50px;
  }

  .testimonialSwiper .swiper-button-next,
  .testimonialSwiper .swiper-button-prev {
    display: flex;
    top: auto;
    bottom: 0;
    transform: none;
    width: 38px;
    height: 38px;
  }

  .testimonialSwiper .swiper-button-prev {
    left: calc(50% - 50px);
  }

  .testimonialSwiper .swiper-button-next {
    right: calc(50% - 50px);
  }

  .testimonialSwiper .swiper-button-next::after,
  .testimonialSwiper .swiper-button-prev::after {
    font-size: 15px;
  }

  .testimonial-video,
  .testimonial-video-vertical {
    height: 260px;
  }

  #cta-banner {
    padding: 50px 0;
    text-align: center;
  }

  #cta-banner h2 {
    font-size: 22px;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius);
    margin-top: 10px;
    box-shadow: var(--shadow);
  }

  .navbar-collapse .btn-primary-custom {
    width: 100%;
    margin-top: 10px;
  }

  #classes,
  #batches,
  #promo-video,
  #vision,
  #approach,
  #testimonials,
  #find-courses,
  #faq,
  #contact {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-images {
    height: 220px;
  }

  .float-img {
    border-radius: 10px;
  }

  .float-img-1 { width: 110px; height: 130px; }
  .float-img-2 { width: 90px; height: 110px; }
  .float-img-3 { width: 100px; height: 120px; }
  .float-img-4 { width: 85px; height: 100px; }
  .float-img-5 { width: 75px; height: 90px; }

  .stat-box {
    padding: 10px 12px;
    min-width: 75px;
  }

  .stat-box h3 {
    font-size: 18px;
  }

  .stat-box p {
    font-size: 10px;
  }

  .review-card {
    padding: 18px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 14px 18px;
  }

  .accordion-body {
    font-size: 14px;
    padding: 4px 18px 16px;
  }
}
