body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif !important;
    font-weight: 500;
    background: #f8f8f8;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0.02em;
}

.hero-section {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    background: url('images/BAT_IMAGE 1.png') center/cover no-repeat;
}

.hero-mobile-section {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  background: url('images/BAT_IMAGE 1.png') center/cover no-repeat;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fefdfd;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Navbar Styles */
.navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: #fefdfd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.logo img {
    height: 56px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 20px;
    transition: color 0.2s;
}
.nav-links li a.active,
.nav-links li a:hover {
    color: #FAAD4F;
    font-weight: 700;
}

.nav-item .nav-link:hover {
  color: #FAAD4F !important;
}

.trial-btn {
    padding: 10px 28px;
    border: 2px solid #222;
    border-radius: 20px;
    background: #fefdfd;
    color: #222;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.trial-btn:hover {
    background: #F9A825;
    color: #fefdfd;
    border-color: #F9A825;
}

/* Banner Styles */
.banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}
.banner-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('banner-bg.jpg') center/cover no-repeat;
    filter: brightness(0.7) blur(0.5px);
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 48px;
}
.banner-image {
    background: #fefdfd;
    border-radius: 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    width: 520px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-text {
    color: #fefdfd;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
}
.banner-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.banner-text h1 .right {
    text-align: right;
    display: inline-block;
}
.banner-text h1 .joy {
    color: #B3D0E7;
    font-weight: 700;
    font-size: 2.2rem;
    display: block;
}
.subtext {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 12px;
}
.who-btn {
    padding: 10px 28px;
    border: 2px solid #fefdfd;
    border-radius: 24px;
    background: transparent;
    color: #fefdfd;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.who-btn:hover {
    background: #fefdfd;
    color: #191b41;
}
.down-arrow {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #fefdfd;
    opacity: 0.85;
    z-index: 3;
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(16px); }
}

@media (max-width: 900px) {
    .banner-content {
        flex-direction: column;
        gap: 32px;
    }
    .banner-image {
        width: 90vw;
        height: 220px;
    }
    .banner-text h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
        padding: 12px 8px;
    }
    .nav-links {
        gap: 16px;
    }
    .banner {
        min-height: 500px;
    }
    .banner-image {
        width: 98vw;
        height: 160px;
    }
    .banner-text {
        max-width: 98vw;
    }
}

.feature-img {
    width: 230px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
@media (max-width: 991.98px) {
    .feature-img {
        width: 40vw;
        height: 48vw;
        min-width: 120px;
        min-height: 180px;
        max-width: 180px;
        max-height: 320px;
    }
}
@media (max-width: 767.98px) {
    .feature-img {
        width: 90vw;
        height: 100vw;
        min-width: 170px;
        min-height: 250px;
        max-width: 320px;
        max-height: 400px;
    }
}
.feature-list {
    border-left: 1px solid #5c87b7;
    margin-left: 18px;
}
.feature-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 2.5rem;
}
.feature-dot {
    position: absolute;
    left: -33px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: #7be3c6;
    border-radius: 50%;
    z-index: 2;
}
.feature-desc {
    margin-left: 2px;
    margin-top: 0.5rem;
    display: none;
    transition: opacity 0.2s;
    visibility: hidden;
    height: 0;
    visibility: hidden;

}
.feature-item:hover .feature-desc {
    display: block !important;
    transition: opacity 0.3s;
    visibility: visible;
    height: auto;
}

@media (min-width: 992px) {
  .feature-img.first {
    margin-top: 60px;

  }
  .feature-img.second {
    margin-bottom: 60px;

  }
}
@media (max-width: 767.98px) {
    .feature-img.first {
        margin-top: 60px;
    
      }
      .feature-img.second {
        margin-bottom: 60px;
    
      }
}

.learn-more-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  border: 2px solid #000000;
  color: #000000;
  background: #fefdfd;
  font-size: 1em;
  transition: background 0.2s, color 0.2s;
}
.btn-link:hover .learn-more-circle {
  background: #191b41;
  color: #fefdfd;
}



.swiper-slide img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .swiper-slide img {
    height: 150px;
  }
}

.swiper-pagination-bullet {
  background: #fefdfd !important;
  opacity: 5;
  width: 12px;
  height: 12px;
  margin: 0 4px !important;
}

.swiper-pagination-bullet-active {
  background: #fefdfd !important;
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.offer-card {
  background: #6290c3;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* Step image circle */
.offer-step-img {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  transition: background 0.3s, border 0.3s;
  border: none;
}
.offer-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  transition: opacity 0.3s;
}
.offer-step-num {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #fefdfd;
  z-index: 2;
  pointer-events: none;
}

/* On hover: card background becomes the image, circle becomes solid color */
.offer-card:hover {
  background-size: cover !important;
  background-position: center !important;
  color: #fefdfd;
}
.offer-card:hover .offer-step-img {
  background: transparent;
  border: 3px solid #fefdfd;
}
.offer-card:hover .offer-step-img img {
  opacity: 0;
  transition: opacity 0.3s;
}

.offer-card h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.offer-card p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #e6eaf2;
}
@media (max-width: 991.98px) {
  .offer-card {
    min-height: 400px;
  }
  .offer-step-img, .offer-step-img img, .offer-step-num-outline {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .offer-card {
    min-height: 320px;
    padding: 1.5rem !important;
  }
  .offer-step-img,
  .offer-step-img img,
  .offer-step-num-outline {
    width: 125px !important;
    height: 125px !important;
    font-size: 2.5rem !important;
  }

  

  .offer-card h4 {
    font-size: 1.1rem;
  }
  .offer-card p {
    font-size: 0.95rem;
  }
}

/* Hide the image and show colored circle on card hover */
.offer-card:hover .offer-step-img img {
  opacity: 0;
  transition: opacity 0.2s;
}

.offer-card .offer-step-img {
  background: transparent;
  border-radius: 50%;
  transition: background 0.2s;
  position: relative;
}

.offer-card:hover .offer-step-img {
  background:none;
  border: 2px solid #fefdfd;
  transition: background 0.3s;
  object-fit: contain;
}

.offer-card .offer-step-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #fefdfd;
  z-index: 2;
  pointer-events: none;
}

.offer-card-bg {
  background: #6290c3;
  transition: background 0.3s, background-image 0.3s;
  position: relative;
  overflow: hidden;
}

.offer-step-num-outline {
  border: 3px solid #fefdfd;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.offer-desc{
    font-size: 0.08rem;
}

.banner-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .mobile-banner-section {
    min-height: 750px !important;
    height: 250px !important;
    max-height: 250px !important;
    overflow: hidden;
  }
  .mobile-banner-video {
    height: 750px !important;
    min-height: 750px !important;
    max-height: 600px !important;
    width: 100vw !important;
    object-fit: cover;
  }
}

.gallery-grid img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.position-relative .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #191b41;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .gallery-grid img {
    height: 120px;
    aspect-ratio: 1/1;
  }
  .position-relative .play-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}


@media (min-width: 768px) {
    .gallery-grid img {
        height: 160px;
    }
}
@media (min-width: 992px) {
    .gallery-grid img {
        height: 180px;
    }
}

.testimonial-card {
  min-height: 215px;   /* Adjust as needed for your content */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-link {
  color: #fefdfd;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #bafe2b;
  text-decoration: none;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid #fefdfd;
  border-radius: 50%;
  color: #fefdfd;
  font-size: 1.3rem;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social-xhs.xhs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid #fefdfd;
  border-radius: 50%;
  background-image: url("images/xhs white.png");
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center;
  transition: border-color 0.2s, background-image 0.2s;
}

.footer-social-xhs.xhs-icon:hover {
  border-color: #bafe2b;
  background-image: url("images/xhs highlight.png"); 
}

.footer-social img {
  display: block;
  margin: 0 auto;
}

.footer-social:hover {
  border-color: #bafe2b;
  color: #bafe2b;
}



.footer-email::placeholder {
  color: #fefdfd !important;
  opacity: 1; 
}
@media (max-width: 991.98px) {
  .footer-section .row > div {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
    .hero-section {
        background-position: top center !important;
        min-height: 300px;
    }

    .hero-mobile-section .hero-text-bottom .hero-title {
      font-size: 4rem !important;
      font-weight: 1000 !important;
      color: #232B36 !important;
      letter-spacing: 2px !important;
      display: block !important;
      line-height: 1.1 !important;
    }
    .footer-section {
        text-align: start;
    }
    .footer-section .row > div {
        margin-bottom: 2rem;
    }
}

.form-control::placeholder, textarea::placeholder {
    font-size: 14px !important;
    font-family: 'Inter', Arial, Helvetica, sans-serif !important;
    color: #b0b8c9 !important;
    opacity: 1;
}

.hero-text-bottom {
    bottom: -100px;
    left: 0;
    right: 0;
    padding-bottom: 0;
    padding-top: 0;
    position: absolute;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(255,255,255,0.7);
}


@media (max-width: 767.98px) {
    .hero-text-bottom {
        bottom: -100px !important;
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .hero-text-bottom h1 {
        font-size: 3.5rem !important;
        line-height: 1.1;
    }
    .hero-text-bottom {
        padding-bottom: 0.5rem;
    }
}

/* Banner */
.contact-banner {
    position: relative;
    width: 100%;
    height: 220px;
    background: url('images/CONTACT.png') center center/cover no-repeat;
}
@media (min-width: 768px) {
    .contact-banner {
        height: 320px;
    }
}
.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-end;
    height: 100%;
}
.contact-banner-content {
    padding: 32px 24px 16px 24px;
}
.contact-banner-subtitle {
    color: #fefdfd;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.contact-banner-title {
    color: #222;
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    background: #fefdfd;
    display: inline-block;
    border-radius: 8px;
    padding: 0 12px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@media (max-width: 767px) {
    .contact-banner-content {
        padding: 16px 12px 8px 12px;
    }
    .contact-banner-title {
        font-size: 2.2rem;
        padding: 0 8px;
    }
}

/* FAQ & Inquiry Layout */
.contact-faq-inquiry {
    padding: 32px 0 0 0;
}
.faq-inquiry-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media (min-width: 992px) {
    .faq-inquiry-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
    .faq-section {
        flex: 2;
    }
    .inquiry-section {
        flex: 1;
        min-width: 340px;
        max-width: 400px;
    }
}

/* FAQ Section */
.faq-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;

}
.faq-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 24px;
}
.faq-link {
    color: #444;
    text-decoration: underline;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: #eff4fa;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(26,35,126,0.04);
}
.faq-item.open {
    background: #6290c3;
}
.faq-question {
    font-weight: 500;
    font-size: 1rem;
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #222;
}
.faq-item.open .faq-question {
    color: #222;
}
.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7ea6e6;
    background: #fefdfd;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}
.faq-item.open .faq-toggle {
    background: #33d2ac;
    color: #6290c3;
}
.faq-answer {
    display: none;
    padding: 0 24px 18px 24px;
    color: #fefdfd;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 100;
}
.faq-item.open .faq-answer {
    display: block;
}
.faq-item:not(.open) .faq-answer {
    display: none;
}
.faq-item:not(.open) .faq-question {
    color: #222;
}
.faq-item:not(.open) .faq-toggle {
    color: #eff4fa;
    background: #33d2ac;
}

/* Inquiry Section */
.inquiry-section {
    width: 100%;
}
.inquiry-box {
    background: #d0deec;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(26,35,126,0.04);
}
.inquiry-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
    text-align: center;
}

.inquiry-box hr {
    border: none;
    border-top: 1.5px solid #b0c4de;
    margin: 12px 0 18px 0;
}
.inquiry-subtitle {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
    color: #222;
    text-align: left;
}

.inquiry-desc {
    font-size: 0.8rem;
    color: #444;
    margin-bottom: 18px;
    text-align: left;
    font-weight: 100;
}
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.inquiry-label {
    font-weight: 500;
    margin-bottom: 2px;
    color: #222;
    font-size: 0.8rem;
    text-align: left;
}
.inquiry-input {
    border: 2px solid #bafe2b;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.8rem;
    background: #f8fafc;
    color: #222;
    margin-bottom: 8px;
    outline: none;
    transition: border 0.2s;
}
.inquiry-input:focus {
    border-color: #7ea6e6;
}
.inquiry-btn {
    background: #bafe2b;
    color: #222;
    font-weight: 900;
    border: none;
    border-radius: 12px;
    padding: 5px 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.inquiry-btn:hover {
    background: #191b41;
    color: #fefdfd;
}

@media (max-width: 991px) {
    .faq-inquiry-wrapper {
        flex-direction: column;
        gap: 32px;
    }
    .inquiry-section {
        max-width: 100%;
        min-width: unset;
    }
}

@media (max-width: 767px) {
    .contact-faq-inquiry {
        padding: 18px 0 0 0;
    }
    .faq-title {
        font-size: 1.3rem;
    }
    .faq-section, .inquiry-section {
        padding: 0 8px;
    }
    .inquiry-box {
        padding: 18px 10px;
    }
}

.location-carousel-section {
  background: #fefdfd;
}

.location-card {
  background: transparent;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}



.location-card .swiper {
  width: 100%;
  height: 220px;
  background: transparent;
}

.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.location-card-body {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.location-card-link {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  background: #111;              
  border-radius: 50%;
  padding: 0.5rem 0.6rem;
  font-size: 1rem;
  color: #fefdfd;                   
  box-shadow: none !important;   
  border: none;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-card-link:hover {
  background: #222;             
  color: #bafe2b;              
}

.location-card-title {
  color: #000;
  font-size: 1.2em;
}


.carousel-arrows-wrapper {
  display: flex;
  gap: 1rem; 
  justify-content: center;
  align-items: center;
  margin-top: 1rem; 
}

.carousel-arrow {
  z-index: 10;
  width: 48px;
  height: 48px;
  background: #bafe2b;
  border-radius: 50%;
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #191b41;
  border: 3px solid #191b41;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin: 0 5px; 
}





@media (max-width: 992px) {
  .carousel-arrow-prev {
      left: 10%;
      transform: none;
  }
  .carousel-arrow-next {
      right: 10%;
      transform: none;
  }
}

@media (max-width: 768px) {
  .carousel-arrow {
      top: -40px;
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
  }
  .carousel-arrow-prev {
      left: 30%;
  }
  .carousel-arrow-next {
      right: 30%;
  }
}

.swiper-pagination-bullet {
  background: #fefdfd;
  opacity: 10;
  border: 2px solid #bafe2b;
  width: 12px;
  height: 12px;
  margin: 0 4px !important;
}

.swiper-pagination-bullet-active {
  background: #fefdfd;
  border-color: #fefdfd;
}

.location-detail-section {
  background: #fefdfd;
  padding: 0px 0 0px 0;
}

.location-detail-card {
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  margin: 0 auto 48px auto;
  max-width: 1100px;
  padding: 0;
}

.location-detail-img-wrapper {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}

.location-detail-img {
  width: 100%;           
  min-width: 350px;     
  min-height: 380px;       
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
}

.location-detail-content {
  padding-left: 48px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
}

.location-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.location-detail-desc {
  font-size: 1rem;
  color: #222;
  font-weight: 100;
  margin-bottom: 32px;
}


.hours-box {
  background: #191b41;
  border-radius: 24px;
  padding: 28px 32px 20px 32px;
  color: #fefdfd;
  max-width: 400px;
}

.hours-title {
  font-size: 0.9rem;
  font-weight: 100;
  letter-spacing: 1px;
  color: #fefdfd;
}

.hours-day {
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hours-time {
  font-size: 0.8rem;
}

.hours-map {
  color: #7b8aad;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  transition: color 0.2s;
}
.hours-map:hover {
  color: #31caa7;
  text-decoration: underline;
  text-decoration: none;

}

.book-now-btn {
  display: inline-flex;
  align-items: center;
  background: #bafe2b;
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 10px 28px 10px 22px;
  margin-top: 12px;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  gap: 12px;
}

.book-now-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #191b41;
  color: #fefdfd;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-left: 23px;
  font-size: 0.9em;
  transition: background 0.2s, color 0.2s;
}

.book-now-btn:hover {
  background: #191b41;
  color: #fefdfd;
}
.book-now-btn:hover .book-now-arrow {
  background: #191b41;
  color: #fefdfd;
}

@media (max-width: 991.98px) {
  .location-detail-content {
    padding-left: 0;
    padding-right: 0;
    margin-top: 24px;
  }
  .location-detail-img {
    min-height: 400px;
    max-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .location-detail-section {
    padding: 18px 0 8px 0;
  }
  .location-detail-card {
    margin-bottom: 24px;
    padding: 0;
  }
  .location-detail-img-wrapper {
    margin-bottom: 0;
  }
  .location-detail-content {
    margin-top: 18px;
  }
  .location-detail-title {
    font-size: 1.5rem;
  }
  .location-detail-img {
    width: 90%;
    height: 400px;
    max-width: 100%;
  }
}

.programme-section {
  max-width: 1400px;
}

.left-card {
  background: #191b41;
  color: #8eb2d9;
  border-radius: 28px;
  min-height: 220px;
  box-shadow: 0 2px 16px rgba(24,29,58,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.left-card h2 {
  color: #8eb2d9;
  font-size: 1.5rem;
  font-weight: 700;
}
.left-card p {
  color: #e6eaf2;
  font-size: 0.8rem;
}
.left-card .nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  background: #bafe2b;
  color: #232b36;
  transition: background 0.2s;
}
.left-card .nav-btn.next {
  background: transparent;
  color: #fefdfd;
  border: 2px solid #fefdfd;
}
.left-card .nav-btn.prev {
  background: #bafe2b;
  color: #232b36;
  border: 2px solid #bafe2b;
}

.prog-card {
  background: rgba(107, 151, 199, 0.08);
  border: 1.5px solid #bcd3e6;
  border-radius: 24px;
  color: #232b36;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 2px 16px rgba(107,151,199,0.04);
}

.prog-label {
  font-weight: 700;
  color: #222;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
}

.prog-content {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.prog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #232b36;
  margin-bottom: 0.5rem;
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: left;
}

.prog-card-desc {
  font-size: 0.7rem;
  font-weight: 400;
  color: #232b36;
  margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .left-card, .prog-card {
    min-height: 320px;
    border-radius: 18px;
    padding: 1.5rem !important;
  }
  .left-card h2 {
    font-size: 1.3rem;
  }
  .prog-card h4 {
    font-size: 1.1rem;
  }
  .prog-label {
    font-size: 0.95rem;
  }
}

.card-bg-stroke, .card-bg-crash, .card-bg-competitive, .card-bg-water-confidence {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1.5px solid #6290c3;
  transition: border-color 0.2s;
}
.card-bg-stroke:hover, .card-bg-crash:hover, .card-bg-competitive:hover, .card-bg-water-confidence:hover {
  border-color: #36d2ad;
}
.card-bg-stroke::before,
.card-bg-crash::before,
.card-bg-competitive::before,
.card-bg-water-confidence::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-bg-stroke::before {
  background-image: url('images/STROKE CORRECTION.PNG'); 
}
.card-bg-crash::before {
  background-image: url('images/CRASH\ COURSE.PNG'); 
}
.card-bg-competitive::before {
  background-image: url('images/COMPETITVE.PNG'); 
}
.card-bg-water-confidence::before {
  background-image: url('images/WATER CONFIDENCE.jpg'); 
}
.card-bg-stroke::after,
.card-bg-crash::after,
.card-bg-competitive::after,
.card-bg-water-confidence::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255,255,255,0.7); 
}
.card-bg-stroke > *,
.card-bg-crash > *,
.card-bg-competitive > *,
.card-bg-water-confidence > * {
  position: relative;
  z-index: 2;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  background: #bafe2b;
  color: #232b36;
  transition: background 0.2s;
}
.nav-btn.next {
  background: #fefdfd;
  color: #232b36;
  border: 2px solid #fefdfd;
}
.nav-btn.prev {
  background: #bafe2b;
  color: #232b36;
  border: 2px solid #bafe2b;
}
@media (max-width: 767.98px) {
  .nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-right: 6px;
  }
}

.age-card {
  background: #f7f7f7;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(24,29,58,0.04);
  min-height: 250px;
  color: #232b36;
}
.age-card h3 {
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #111;
}
.age-card-key-skills {
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 100;
  font-family: 'Montserrat', Arial, sans-serif;
}

.age-card ul {
  font-size: 0.8rem;
  font-weight: 100;
  padding-left: 1.2em;
  margin-bottom: 0.3em;
}
.age-card li {
  font-size: 0.8rem;
  margin-bottom: 0.3em;
  list-style: none;
}
.age-card li:before {
  content: '';
}
@media (max-width: 767.98px) {
  .age-card {
    min-height: 350px;
    border-radius: 18px;
    padding: 1.2rem !important;
  }
  .age-card h3 {
    font-size: 1.4rem;
  }
  .age-card li {
    font-size: 0.95rem;
  }
}
.swiper-progressbar {
  height: 4px !important;
  background: #e0e0e0 !important;
  border-radius: 2px;
  margin-top: 12px;
}
.swiper-progressbar-fill {
  background: #36d2ad !important;
  border-radius: 2px;
}
.swiper-prev-age, .swiper-next-age {
  background: #fefdfd;
  color: #232b36;
  border: 2px solid #36d2ad;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-prev-age {
  margin-right: 8px;
}
.swiper-next-age {
  margin-left: 8px;
}

.age-swiper-controls {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.age-swiper-progressbar {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  margin: 0;
}

.age-swiper-progressbar-fill {
  height: 100%;
  background: #36d2ad;
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s;
}

.custom-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  color: #232b36;
  padding: 0 8px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-arrow:disabled,
.custom-arrow.disabled {
  color: #b0b8c9;
  opacity: 0.5;
}

.age-swiper-prev {
  color: #36d2ad;
}

.age-swiper-next {
  color: #232b36;
}



.prog-desc {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 100;
}



/* Programs Fees Section */
.programs-fees-section {
  background: #fefdfd;
  padding-top: 4rem; 
}

.fees-title {
  font-size: 2rem;
  font-weight: 800;
  color: #191b41;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.fees-note {
  color: #7b8bb7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.fees-card {
  width: 85%;
  min-width: 0;
  height: 100%;
  background: #fefdfd;
  border: 2px solid #b7c6e6;
  border-radius: 28px;
  margin: 0 auto;
  box-shadow: 0 4px 24px 0 rgba(60, 80, 180, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fees-price {
  font-size: 2rem;
  font-weight: 800;
  color: #232B36;
  letter-spacing: 1px;
}

.fees-per {
  font-size: 1rem;
  font-weight: 400;
  color: #232B36;
}

.fees-course-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #232B36;
}

.fees-course-session {
  font-size: 1.1rem;
  color: #5a6a8a;
  font-weight: 600;
}

.fees-course-desc {
  font-size: 0.8rem;
  color: #232B36;
  font-weight: 100;
}

.btn-fees-book {
  background: #bafe2b;
  color: #191b41;
  font-weight: 700;
  border-radius: 20px;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  transition: background 0.2s;
}

.btn-fees-book:hover {
  background: #c0e63e;
  color: #191b41;
}

.fees-features {
  background: #7b98c6;
  border-radius: 24px;
  color: #fefdfd;
  width: 100%;
  margin-top: 1rem;
  max-height: 400px;
  font-size: 1rem !important;
  font-weight: 100 !important;
}

.fees-features ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  
}

.fees-features li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 0.7rem;
  font-size: 1rem !important;
  font-weight: 100 !important;
}

.fees-features li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  background: #fefdfd;
  color: #7b98c6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border: 2px solid #fefdfd;
}

.custom-arrow {
  background: #232B36;
  color: #fefdfd;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.custom-arrow:disabled {
  background: #b7c6e6;
  color: #fefdfd;
}

.fees-swiper-pagination {
  text-align: center;
  min-width: 60px;
}

.fees-swiper-prev-desktop,
.fees-swiper-next-desktop {
  background: #232B36;
  color: #fefdfd;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.2s;
}
.fees-swiper-prev-desktop:disabled,
.fees-swiper-next-desktop:disabled {
  background: #b7c6e6;
  color: #fefdfd;
}

.fees-swiper-controls {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fees-swiper-progressbar {
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  margin: 0;
}
.fees-swiper-progressbar-fill {
  height: 100%;
  background: #36d2ad;
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s;
}

@media (max-width: 767.98px) {
  .fees-swiper-prev-mobile,
  .fees-swiper-next-mobile {
    background: none !important;
    color: #232B36 !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    font-size: 2rem !important;
    box-shadow: none !important;
    padding: 0 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fees-swiper-prev-mobile:disabled,
  .fees-swiper-next-mobile:disabled {
    color: #b0b8c9 !important;
    opacity: 0.5 !important;
    background: none !important;
  }
}

@media (max-width: 767.98px) {
  .age-swiper-prev,
  .age-swiper-next {
    background: none !important;
    color: #232B36 !important;
    border: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    font-size: 2rem !important;
    box-shadow: none !important;
    padding: 0 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .age-swiper-prev:disabled,
  .age-swiper-next:disabled {
    color: #b0b8c9 !important;
    opacity: 0.5 !important;
    background: none !important;
  }
}

@media (min-width: 768px) {
  .fees-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    min-width: 100%;
    min-height: 520px !important;
  }
  .fees-card-main {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 240px;
  }
  .fees-features {
    flex: 1 1 320px;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .fees-card {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .fees-card-main, .fees-features {
    max-width: 100% !important;
    width: 100%;
  }
  .programsFeesSwiperMobile .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  .programsFeesSwiperMobile .swiper-slide {
    display: flex;
    height: auto; 
  }
  .fees-card {
    flex: 1 1 0;
    height: 420px; 
    min-height: 650px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .fees-card {
    padding-top: 2.5rem; 
  }
}

.klangvalley-section {
  margin-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.kv-bg {
  position: relative;
  width: 90%;
  min-height: 650px;
  border-radius: 20px;
  margin: 2rem auto;
  max-width: 98vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.kv-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.kv-glass-card {
  position: relative;
  z-index: 1;
}

.kv-glass-card {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 28px;
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 420px;
  margin: 2rem;
  margin-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.kv-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.kv-subtitle {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.kv-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem 0;
}
.kv-features li {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 2em;
}
.kv-features li:before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  background: #232b36;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.1em;
}
.kv-features li:after {
  content: "✔";
  color: #fefdfd;
  font-size: 0.9em;
  font-weight: bold;
  position: absolute;
  left: 0.32em;
  top: 0.18em;
}
.kv-desc {
  font-size: 1rem;
  font-weight: 400;
}
.kv-quote-btn {
  background: #bafe2b;
  color: #191b41;
  font-weight: 700;
  border-radius: 20px;
  font-size: 1rem;
  padding: 0.7rem 2.2rem;
  border: none;
  margin-top: 0.7rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: background 0.2s;
}
.kv-quote-btn:hover {
  background: #bafe2b;
}
.kv-quote-arrow {
  background: #232b36;
  color: #bafe2b;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
}

/* Modal Styles */
.kv-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.25);
  align-items: center;
  justify-content: center;
}
.kv-modal.active {
  display: flex;
}
.kv-modal-content {
  background: #fefdfd;
  border-radius: 24px !important;
  overflow: hidden;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 400px;
  width: 95vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  text-align: center;
}
.kv-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #232b36;
  cursor: pointer;
  display: none;
}
.kv-modal-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.kv-modal-title span {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
}
.kv-modal-desc {
  font-size: 0.8rem;
  color: #232b36;
  margin-bottom: 1.2rem;
}
.kv-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.kv-modal-form select,
.kv-modal-form input[type="text"] {
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #b7c6e6;
  font-size: 0.8rem;
  outline: none;
  width: 80%;
}
.kv-modal-form select:focus,
.kv-modal-form input[type="text"]:focus {
  border-color: #36d2ad;
}
.kv-modal-submit {
  background: #bafe2b;
  color: #191b41;
  font-weight: 700;
  border-radius: 13px;
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  border: none;
  margin-top: 0.7rem;
  cursor: pointer;
  transition: background 0.2s;
  width: 80%;
}
.kv-modal-submit:hover {
  background: #bafe2b;
}

/* Responsive */
@media (max-width: 767.98px) {
  .klangvalley-section {
    padding: 0 12px;   
    margin: 0;
    background: #fefdfd;
  }
  .kv-bg {
    min-height: 320px;
    border-radius: 20px;
    margin: 0;
    padding: 0;
    width: 100%;       
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-position: center top;
  }
  .kv-glass-card {
    margin: 1.2rem 0.5rem 1.2rem 0.5rem;
    max-width: 85%;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    gap: 0.5rem;
  }
  .kv-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .kv-subtitle {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }
  .kv-features li {
    font-size: 1rem;
    padding-left: 2em;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
  }
  .kv-features li:before {
    width: 1.1em;
    height: 1.1em;
    top: 0.15em;
  }
  .kv-features li:after {
    left: 0.22em;
    top: 0.12em;
    font-size: 0.8em;
  }
  .kv-desc {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  .kv-quote-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 16px;
    width: 100%;
    justify-content: center;
  }
  .kv-quote-arrow {
    width: 1.5em;
    height: 1.5em;
    font-size: 1em;
  }
  .kv-modal-content {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    max-width: 98vw;
    width: 98vw;
    border-radius: 18px;
  }
  .kv-modal-title {
    font-size: 1.1rem;
  }
  .kv-modal-title span {
    font-size: 1rem;
  }
  .kv-modal-form select,
  .kv-modal-form input[type="text"] {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
  }
  .kv-modal-submit {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 16px;
  }
}

@media (max-width: 767.98px) {
  .fees-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    
  }
}

.progression-section {
  background: #fefdfd;
}

.progression-title {
  margin-bottom: 2rem;
}
.progression-brand {
  color: #7b8bb7;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  display: block;
}
.progression-heading {
  font-size: 3.2rem;
  font-weight: 900;
  color: #111;
  line-height: 1.05;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 0.2em;
}
@media (max-width: 767.98px) {
  .progression-brand {
    font-size: 1.1rem;
  }
  .progression-heading {
    font-size: 2rem;
  }
  .progression-section .display-5 {
    font-size: 1.6rem !important;
    line-height: 1.2;
  }
  .progression-section h5 {
    font-size: 0.9rem !important;
  }
}

.progression-card {
  background: #f6f7f9;
  border-radius: 10px;
  box-shadow: 1 2px 16px rgba(24,29,58,0.04);
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: box-shadow 0.2s;
}
.progression-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.progression-card-desc {
  font-size: 0.9rem;
  color: #232b36;
  margin-bottom: 1.2rem;
  font-weight: 400;
  height: 75px;
}
.progression-key-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.8rem;
  letter-spacing: 1px;
}
.progression-key-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  height: 110px;
}

.progression-key-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 0.7rem;
  color: #232b36;
  margin-bottom: 0.5em;
}
.progression-icon {
  font-size: 0.85rem;
  width: 1.3em;
  height: 1.3em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.4em;
}
.progression-icon i {
  font-size: 0.85em;
  line-height: 1;
}
.progression-icon.beginner {
  background: #f9ad4f;
  color: #f6f7f9;
}
.progression-icon.intermediate {
  background: #6290c3;
  color: #f6f7f9;
}
.progression-icon.advanced {
  background: #40d4b1;
  color: #f6f7f9;
}
.progression-grad-req {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 1.2rem;
}
.progression-plus-btn {
  background: #000;
  border: 2px solid #b0b8c9;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  color: #f6f7f9;
  font-weight: 700;
  transition: border 0.2s, color 0.2s;
}
.progression-plus-btn:hover {
  border-color: #36d2ad;
  color: #36d2ad;
}
@media (max-width: 991.98px) {
  .progression-card {
    padding: 1.2rem 1rem 1rem 1rem;
    min-height: 350px;
  }
  .progression-card-title {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .progression-card {
    margin-bottom: 1.2rem;
    min-height: 0;
  }
}

.progression-card-content {
  min-height: 260px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.progression-grad-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  margin-top: 0;
  padding-left: 0.5rem;
}

.progression-card:hover .progression-grad-content {
  max-height: 300px;
  opacity: 1;
  margin-top: 1rem;
}
.progression-grad-content ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.progression-grad-content li {
  margin-bottom: 0.5em;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.progression-grad-content i {
  color: #232b36;
  margin-right: 0.5em;
}

.progression-plus-btn span {
  display: inline-block;
  transition: transform 0.2s;
}

.progression-card:hover .progression-plus-btn span {
  content: "-";
}

.progression-card:hover .progression-plus-btn span::before {
  content: "−";
  
}

.progression-card:hover .progression-plus-btn span {
  color: transparent;
  position: relative;
}
.progression-card:hover .progression-plus-btn span::before {
  color: #f6f7f9; 
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
}

.about-story-container {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 32px 16px;
}

.about-logo-section {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-logo {
  width: 220px;
  max-width: 100%;
}

.about-content-section {
  flex: 1;
  min-width: 0;
}

.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #222;
}

.about-subtitle {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #111;
}

.about-text {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.about-bars {
  margin-top: 2.5rem;
}

.about-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  gap: 0.1rem;
}

.about-bar-header {
  position: relative;
  width: 100%;
  height: 1.5em;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
}

.about-bar-label {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: absolute;
  left: 0;
  top: 0;
}

.about-bar-value {
  font-weight: 400;
  font-size: 1rem;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  margin-left: 0.5em;
  white-space: nowrap;
}

.about-bar-bg {
  width: 100%;
  height: 5.5px;
  background: #000;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.about-bar-fill {
  height: 100%;
  border-radius: 0px;
  position: absolute;
  left: 0;
  top: 0;
}

.about-bar-fill.trusted { background: #a6ff4f; }
.about-bar-fill.expert { background: #ffb84f; }
.about-bar-fill.professional { background: #4fdfff; }



@media (max-width: 900px) {
  .about-story-container {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .about-logo-section {
    justify-content: center !important;
    align-items: center !important;
    display: flex;
    margin-bottom: 0;
  }
  .about-logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .about-content-section {
    padding: 0;
  }
  .about-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .about-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }
  .about-bar-label, .about-bar-value {
    font-size: 0.8rem;
  }
  .about-bar {
    margin-bottom: 1.2rem;
  }
}

.core-values-section {
  max-width: 1300px;
  margin: 0 auto 0 auto;
  padding: 2rem 1rem;
}

.core-values-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.core-values-our {
  color: #6c7a96;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
}

.core-values-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #232B36;
  letter-spacing: 2px;
  display: block;
  line-height: 1.1;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
}

.core-value-item {
  background: #fefdfd;
  border-radius: 20px;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  text-align: left; 
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  min-height: 260px;
  transition: all 0.3s ease;
}

.core-value-item:hover {
  background: #232544;
  color: #fefdfd;
  box-shadow: 0 4px 24px rgba(60,80,180,0.10);
  transform: translateY(-5px);
}

.core-value-item:hover .core-value-title,
.core-value-item:hover .core-value-desc {
  color: #fefdfd;
}

.core-value-item:hover .core-value-icon {
  background: #fefdfd;
  color: #6793c4;
}

.core-value-item .core-value-icon {
  background: #6290c3;
  border-radius: 16px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 2rem;
  color: #bafe2b;
  transition: all 0.3s ease;
}

.core-value-item .core-value-title {
  font-size: 1rem;
  font-weight: 600;
  color: #232B36;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.core-value-item .core-value-desc {
  font-size: 0.7rem;
  color: #232B36;
  font-weight: 100;
  text-align: left;
  transition: color 0.3s ease;
}

.core-value-highlight {
  background: #232544;
  color: #fefdfd;
  box-shadow: 0 4px 24px rgba(60,80,180,0.10);
}

.core-value-highlight .core-value-title,
.core-value-highlight .core-value-desc {
  color: #fefdfd;
}

.core-value-highlight .core-value-icon {
  background: #fefdfd;
  color: #6793c4;
}

.core-value-highlight {
  align-items: flex-start;
}
.core-value-highlight .core-value-title,
.core-value-highlight .core-value-desc {
  text-align: left;
}

@media (max-width: 1100px) {
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.2rem;
  }
}

@media (max-width: 700px) {
  .core-values-title {
    font-size: 2.1rem;
  }
  .core-values-header {
    text-align: center;
  }
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .core-value-item {
    min-height: 0;
    padding: 1.2rem 0.7rem;
  }
}

.core-values-swiper { display: block; }
@media (min-width: 768px) {
  .core-values-swiper { display: none !important; }
  .core-values-grid { display: grid !important; }
}
@media (max-width: 767.98px) {
  .core-values-grid { display: none !important; }
  .core-values-swiper { display: block !important; }
}

@media (max-width: 767.98px) {
  .core-values-swiper .core-value-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    border: 2px solid #b7c6e6;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(60,80,180,0.07);
    background: #fefdfd;
    padding: 1.2rem 1rem;
    margin: 0.5rem 0.5rem;
    min-height: 120px;
  }
  .core-values-swiper .core-value-icon {
    margin-bottom: 0;
    margin-right: 0.7rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .core-values-swiper .core-value-title,
  .core-values-swiper .core-value-desc {
    text-align: left;
  }
  .core-values-swiper .core-value-title {
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
  }
  .core-values-swiper .core-value-desc {
    font-size: 0.8rem;
    font-weight: 400;
  }
  .core-values-swiper .core-value-item > .core-value-icon {
    margin-right: 1rem;
  }
  .core-values-swiper .core-value-item > div:not(.core-value-icon) {
    flex: 1 1 0;
  }
  .core-values-swiper .core-value-item {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper-container {
    padding: 0.5rem 2.5rem; 
    position: relative;
  }
  .core-values-swiper .swiper-button-prev,
  .core-values-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
    background: #191b41;
    color: #fefdfd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(60,80,180,0.10);
    border: 2px solid #191b41;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 1;
    transition: background 0.2s, color 0.2s;
  }
  .core-values-swiper .swiper-button-prev {
    left: -20px;
  }
  .core-values-swiper .swiper-button-next {
    right: -20px;
  }
  .core-values-swiper .swiper-button-prev:after,
  .core-values-swiper .swiper-button-next:after {
    font-size: 1.1rem;
    font-weight: bold;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .core-value-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 0;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .swiper-button-prev,
  .core-values-swiper .swiper-button-next {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
    border-width: 1px;
  }
  .core-values-swiper .swiper-button-prev:after,
  .core-values-swiper .swiper-button-next:after {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .core-value-item {
    padding: 0.7rem 0.7rem;
    min-height: 80px;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .core-value-item {
    min-height: 200px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .swiper-button-prev {
    top: 64%;
    left: 0;
  }
  .core-values-swiper .swiper-button-next {
    top: 60%;
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .swiper-button-prev:after,
  .core-values-swiper .swiper-button-next:after {
    display: none !important; /* Hide Swiper's default arrow */
  }
  .core-values-swiper .swiper-button-prev i,
  .core-values-swiper .swiper-button-next i {
    font-size: 1rem;
    color: #fefdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .swiper-button-prev {
    background: #fefdfd !important;
    color: #191b41 !important;
    border: 2px solid #191b41;
  }
  .core-values-swiper .swiper-button-prev i {
    color: #191b41 !important;
  }
  .core-values-swiper .swiper-button-next {
    background: #191b41 !important;
    color: #fefdfd !important;
    border: 2px solid #191b41;
  }
  .core-values-swiper .swiper-button-next i {
    color: #fefdfd !important;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .core-value-icon {
    margin-left: 10px;
  }
}

@media (max-width: 767.98px) {
  .core-values-swiper .core-value-item {
    height: auto;
   
    overflow: hidden;
  }
  .core-values-swiper .core-value-text {
    overflow-y: auto;
  }
}

.vision-mission-section {
  width: 100%;
  background: #fefdfd; 
  padding: 2rem 0;
}

.vision-mission-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
}

.vision-box, .mission-box {
  background: #fefdfd;
  padding: 2.2rem 2rem 2rem 2rem;
  border: 3px solid;
  max-width: 370px;
  min-width: 260px;
  box-sizing: border-box;
  flex: 1 1 320px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  height: 220px; 
}

.vision-box {
  border-color: #32d2ac;
}

.mission-box {
  border-color: #fe9f1d;
}

.vision-mission-image {
  flex: 1 1 340px;
  min-width: 220px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: -60px;
  margin-bottom: -60px;
}

.vision-mission-image img {
  width: 100%;
  max-width: 420px;
  height: 340px; 
  border-radius: 0;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .vision-mission-wrapper {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .vision-box, .mission-box {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    height: auto;
  }
  .vision-mission-image {
    margin: 0;
  }
  .vision-mission-image img {
    border-radius: 0;
    border-top: none;
    border-bottom: none;
  }
}

@media (max-width: 991.98px) {
  .vision-mission-section,
  .vision-mission-wrapper,
  .vision-box,
  .mission-box,
  .vision-mission-image,
  .vision-mission-image img {
    margin: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    border-radius: 0 !important;
  }
  .vision-box,
  .mission-box {
    padding-bottom: 2rem !important;
    padding-top: 2.2rem !important;
  }
  .vision-mission-image img {
    display: block;
    width: 100%;
    border: none !important;
  }
}

.why-choose-section {
  width: 100%;
  background: #fefdfd;
  padding: 3rem 0 2rem 0;
  text-align: center;
  margin-bottom: 9rem;
}

.why-choose-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #232b36;
  margin-bottom: 2.5rem;
}

.why-choose-cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  border-radius: 32px;
  min-width: 200px;
  min-height: 260px;
  width: 220px;
  height: 260px;
  background: #e6eaf2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(60,80,180,0.07);
  transition: transform 0.2s;
}

.why-card-content {
  width: 100%;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  z-index: 2;
  position: relative;
}
.why-card-highlight, .why-card-number {
  margin-bottom: 0.5rem;
}
.why-card-sub {
  margin-top: auto;
}

.why-card-green {
  background: #bafe2b;
  color: #191b41;
  align-items: flex-start;
}

.why-card-blue {
  background: #7be3c6;
  color: #191b41;
  align-items: flex-start;
}

.why-card-dark {
  background: #191b41;
  color: #7be3c6;
  align-items: flex-start;
}

.why-card-img {
  background-size: cover;
  background-position: center;
  color: #bafe2b;
  align-items: flex-start;
}

.why-card-main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.why-card-highlight {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #bafe2b;
}

.why-card-number {
  font-size: 5rem;
  font-weight: 900;
  color: #191b41;
  line-height: 1;
}

.why-card-percent {
  font-size: 2rem;
  font-weight: 700;
  vertical-align: super;
}

.why-card-sub {
  font-size: 1.1rem;
  font-weight: 100;
  color: inherit;
  margin-top: 0.5rem;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .why-choose-cards {
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .why-card {
    min-width: 160px;
    width: 45vw;
    max-width: 320px;
    height: 180px;
    min-height: 160px;
  }
  .why-card-content {
    padding: 1rem 0.7rem;
  }
  .why-card-number {
    font-size: 2.2rem;
  }
  .why-card-highlight {
    font-size: 1.2rem;
  }
}

@media (max-width: 700px) {
  .why-choose-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .why-choose-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 98vw;
    padding: 0 0.5rem;
  }
  .why-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 160px;
    min-height: 120px;
    border-radius: 20px;
  }
  .why-card-content {
    padding: 0.7rem 0.5rem;
  }
  .why-card-number {
    font-size: 5rem;
  }
  .why-card-highlight {
    font-size: 2rem;
  }
  .why-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    align-self: center;
    width: 50%;
  }
}

@media (max-width: 700px) {
  .why-card {
    height: 220px;
    min-height: 180px;
  }
  .why-card:last-child {
    width: 50%;
  }
}

@media (max-width: 700px) {
  .why-card-content,
  .why-card-content * {
    text-align: left !important;
    align-items: flex-start !important;
  }
}


.why-card-content,
.why-card-content * {
  text-align: left !important;
  align-items: flex-start !important;
}

@media (min-width: 992px) {
  .why-choose-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .why-card {
    flex: 0 0 220px;
    max-width: 220px;
    min-width: 180px;
    width: 220px;
  }
}

@media (min-width: 992px) {
  .why-card {
    position: relative;
    transition: transform 0.2s;
  }
  .why-card:nth-child(1),
  .why-card:nth-child(5) {
    transform: translateY(0);
    z-index: 2;
  }
  .why-card:nth-child(2),
  .why-card:nth-child(4) {
    transform: translateY(60px);
    z-index: 1;
  }
  .why-card:nth-child(3) {
    transform: translateY(120px);
    z-index: 0;
  }
}

@media (max-width: 767.98px) {
  .why-choose-section {
    margin-bottom: 1rem !important;
  }
}

.who-we-are-section {
  background: #191b41;
  color: #fefdfd;
  border-radius: 16px;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 2rem 1.5rem;
  position: relative;
  margin-bottom: 8rem;
}
.who-we-are-container {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.who-we-are-content {
  flex: 2;
  min-width: 200px;
}
.who-we-are-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.who-we-are-subtitle {
  color: #32d2ac;
  font-size: 1.4rem;
  font-weight: 100 !important;
  margin-bottom: 1.2rem;
  letter-spacing: 2.5px;
}
.who-we-are-desc {
  font-size: 0.8rem;
  color: #fefdfd;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-right: 5rem !important;
}

.who-we-are-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 3.5rem;
}
.who-swiper {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.who-swiper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  border: 1px solid #fefdfd;
}
@media (max-width: 900px) {
  .who-swiper img {
    height: 220px;
  }
}
@media (max-width: 600px) {
  .who-swiper img {
    height: 180px;
    border-radius: 12px;
  }
}
.who-swiper-controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .who-swiper-controls {
    bottom: 1rem;
  }
}
.who-we-are-carousel {
  margin-bottom: 3.5rem;
}
.who-swiper-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #191b41;
  background: #fefdfd;
  color: #191b41;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.who-swiper-btn.active,
.who-swiper-btn:focus {
  background: #191b41;
  color: #fefdfd;
  border: 2px solid #f9ad4f;
  outline: none;
}
@media (max-width: 900px) {
  .who-we-are-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .who-we-are-carousel {
    max-width: 100%;
    width: 100%;
  }
  .who-swiper img {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .who-we-are-section {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 3rem;

  }
  .who-we-are-title {
    font-size: 2rem;
  }
  .who-swiper img {
    height: 300px;
    border-radius: 12px;
  }
  .who-swiper-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}


@media (max-width: 767.98px) {
  .who-we-are-desc {
    margin-right: 0 !important;
  }
}

.who-swiper .swiper-wrapper {
  gap: 2rem;
}

.who-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.who-swiper {
  padding-left: 1rem;
  padding-right: 1rem;
}



.hero-section .hero-text-bottom .hero-title {
  font-size: 4rem !important;
  font-weight: 1000 !important;
  color: #232B36 !important;
  letter-spacing: 2px !important;
  display: block !important;
  line-height: 1.1 !important;
}

.footer-section {
  margin-top: 3rem !important;
}

@media (max-width: 767.98px) {
  .navbar {
    background: transparent !important;
    box-shadow: none !important;
  }
}

/* Sidebar styles */
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fefdfd;
    border-right: 3px solid #7ea6e6;
    box-shadow: none;
    color: #232B36;
    z-index: 1000;
    transition: right 0.3s ease;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    height: 40px;
}

.sidebar-close-btn {
    background: none;
    border: none;
    color: #232B36;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.sidebar-close-btn:hover {
    color: #F9A825;
}

.sidebar-nav {
    padding: 0 1.5rem;
    margin: 0;
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.sidebar-nav li a {
    color: #232B36;
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: none;
    padding: 0;
    transition: color 0.2s;
    display: block;
    line-height: 1.5;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    color: #7ea6e6;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-book-btn {
    display: block;
    background: #F9A825;
    color: #191b41;
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-book-btn:hover {
    background: #fefdfd;
    color: #191b41;
}

#sidebarOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

#sidebarOverlay.active {
    display: block;
}

@media (min-width: 992px) {
    .sidebar-menu, #sidebarOverlay { display: none !important; }
    .sidebar-menu.active ~ .navbar .navbar-toggler {
        display: block !important;
    }
}

.sidebar-booktrial-wrapper {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}



.sidebar-booktrial-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 370px;
    background: #fefdfd;
    border: 2px solid #7ea6e6;
    border-radius: 40px;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: #232B36;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-sizing: border-box;
    gap: 1.2rem;
}

.sidebar-booktrial-arrow {
    background: #000;
    color: #fefdfd;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-left: 1.2rem;
}

.sidebar-booktrial-btn:hover {
    background: #f9a825;
    color: #fefdfd;
    border-color: #f9a825;
}
.sidebar-booktrial-btn:hover .sidebar-booktrial-arrow {
    background: #fefdfd;
    color: #232B36;
}


@media (max-width: 767.98px) {
  .gallery-image {
    height: 30px !important;
  }
}

.social-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  overflow: hidden;
}

.modal-content {
  border-radius: 24px !important;
  overflow: hidden;
}
.modal-body ul li {
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .mobile-gallery-img {
      max-height: 150px;
  }
}

@media (min-width: 768px) {
  .age-card {
      transition: background-color 0.3s ease;
  }
  
  .age-card:hover {
      background-color: #33d2ac !important;
  }
  
  .age-card:hover .age-card-title {
      color: #fefdfd !important;
  }
}

.age-card-key-skills {
  color: #191b41 !important;
}

.quotation-btn:hover {
  background: #191b41 !important;
  color: #fefdfd !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}