body{
    overflow-x: hidden;
}

.hero-section {
        position: relative;
        top: -100px;
        margin-top: 0;
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .hero-section .metaslider .flex-viewport{
        border-bottom-left-radius: 100px;
        border-bottom-right-radius: 100px;
        height: max-content;
    }
    body .metaslider.metaslider-flex  .flexslider .flex-direction-nav li a.flex-next {
        background-image: url('../images/icons/next.png') !important;
    }
    body .metaslider.metaslider-flex  .flexslider .flex-direction-nav li a.flex-prev {
        background-image: url('../images/icons/previous.png') !important;
    }

    .metaslider .flex-control-nav{
        display: none;
    }
    .metrics-box {
        border-radius: 20px;
        padding: 2rem;
        background-color: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        position: relative;
        z-index: 1;
    }

    .metrics-box::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1.5px;
        background: linear-gradient(90deg, #0A1E2F, #FFFBEC, #0A1E2F);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
        z-index: -1;
    }

    .text-highlight {
        color: #f5b200;
        /* matches yellow from the image */
    }

    .badge-box {
        background: linear-gradient(180deg, #003C71, #001223);
        font-style: var(--font-body);
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        padding: 0 20px;
    }

    .years {
        font-size: 3rem;
        font-weight: bold;
        color: white;
    }

    .image-wrapper {
  padding: 30px;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.image-wrapper img {
  width: 120%;
}


.feature-group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.left-features {
  left: -80px;
}

.right-features {
    top: 350px;
  right: -80px;
}

.feature-box {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.feature-box img {
  width: 28px;
  height: 28px;
}


/* RESPONSIVE */
@media (max-width: 991px) {
  .feature-group {
    position: static;
    transform: none;
    margin-top: 20px;
    align-items: center;
  }

  .left-features,
  .right-features {
    left: auto;
    right: auto;
    top: auto;
  }
}

    .academy-helps-section h2 {
        font-size: 1.75rem;
    }

    .view-time {
        font-size: 0.85rem;
        color: #d2d2d2;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .video-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 1rem;
    }

    .video-wrapper img {
        /* width: 100%; */
        display: block;
        border-radius: 1rem;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* background: rgb(255, 255, 255); */
        background: rgb(45 38 38) !important;; 
        color: rgb(0, 0, 0);
        font-size: 16px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .play-button:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .client-logo {
        max-height: 150px;
        object-fit: contain;
        transition: filter 0.3s ease;
    }

    .client-logo:hover {
        filter: grayscale(0%);
    }

    /* Video Overlay – optimized, video-first modal */

    .video-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .video-overlay.show {
        display: flex;
        opacity: 1;
    }

    .video-overlay__inner {
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .video-container {
        position: relative;
        width: 100%;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        aspect-ratio: 16 / 9;
        max-height: calc(100vh - 120px);
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    .video-overlay__close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        z-index: 2;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.65);
        border: none;
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .video-overlay__close:hover {
        background: rgba(0, 0, 0, 0.85);
        transform: scale(1.05);
    }

    .video-overlay__close:focus {
        outline: 2px solid #fff;
        outline-offset: 2px;
    }

    .video-overlay__hint {
        margin: 0;
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.65);
    }

    .video-overlay__hint kbd {
        padding: 0.15em 0.4em;
        font-size: 0.9em;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 4px;
    }

    @media (max-width: 576px) {
        .video-overlay {
            padding: 0.75rem;
        }
        .video-container {
            max-height: calc(100vh - 100px);
        }
        .video-overlay__close {
            top: 0.5rem;
            right: 0.5rem;
            width: 40px;
            height: 40px;
            min-width: 40px;
            min-height: 40px;
        }
        .video-overlay__hint {
            font-size: 0.75rem;
        }
    }

    body.video-overlay-open {
        overflow: hidden;
        height: 100vh;
    }




    /*===========MCOR===========*/
    .mcro-card {
        width: 100%;
        height: 100%;
        max-height: 280px;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }

    .mcro-card img {
        transition: transform 0.4s ease;
        width: 100%;
        height: auto;
    }

    .mcro-card:hover img {
        transform: scale(1.05);
    }

    .mcro-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
        color: #fff;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .mcro-card:hover .mcro-overlay {
        opacity: 1;
    }

    .mcro-overlay h4 {
        font-size: 1.2rem;
        margin-bottom: .5rem;
    }

    .mcro-overlay p {
        font-size: 1rem;
    }

    /* MCOR Labels (M C O R letters) */
    .mcro-label {
        position: absolute;
        top: 50%;
        right: -25px;
        transform: translateY(-50%);
        font-weight: bold;
        font-size: 1.2rem;
        color: #111;
    }

    @media(max-width: 767px) {
        .mcro-label {
            display: none;
        }
    }


  .learning-cta {
  background: linear-gradient(to bottom, #003b6f, #001f3f);
  border-radius: 20px;
  padding: 50px 60px;
  min-height: 260px;
}


.cta-content {
  max-width: 520px;
}

.cta-content h2 {
  font-size: 28px;
  line-height: 1.3;
}


.cta-content .btn {
  border-radius: 10px;
  font-size: 14px;
}


.cta-visual img {
  max-width: 260px;
}


@media (max-width: 991px) {
  .learning-cta {
    padding: 40px 30px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-visual img {
    max-width: 220px;
  }
}


    /*=========Learning Modes============*/
    /* Nav tabs container */
    .nav-tabs {
        border: none;
        position: relative;
        display: flex;
        justify-content: flex-start;
    }

    /* Tab buttons */
    .nav-tabs .nav-link {
        border: none !important;
        background: none;
        color: #003c71 !important;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .nav-tabs .nav-link.active {
        color: #0056b3 !important;
    }

    /* Grey baseline */
    .nav-tabs::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 100%;
        background: #ddd;
        /* light grey line */
        z-index: 1;
    }

    /* Blue underline (indicator) */
    .tab-underline {
        position: absolute;
        bottom: 0;
        height: 3px;
        /* thicker blue line */
        background-color: #007bff !important;
        border-radius: 2px;
        transition: all 0.3s ease;
        z-index: 2;
        /* sits above grey baseline */
    }

    /*-------Testimonials---------*/
    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
    }

    .card-stack-container {
        position: relative;
        width: 100%;
        max-width: 850px;
        margin: auto;
        height: 320px;
        perspective: 1200px;
    }

    .testimonial-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50px;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem;
        transition: transform 0.5s ease, opacity 0.5s ease;
        background: #0d223d;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    .testimonial-content {
        flex: 1;
        padding-right: 1.5rem;
    }

    .testimonial-content i {
        font-size: 2.5rem;
        color: #ffcc00;
        margin-bottom: 1rem;
        display: block;
    }

    .testimonial-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #d0d6e0;
    }

    .testimonial-content .frame {
        font-size: 0.85rem;
        color: #8090a0;
    }

    .testimonial-content .author {
        font-weight: 700;
        font-size: 1rem;
        margin-top: 2rem;
    }

    .testimonial-content .role {
        font-size: 0.85rem;
        color: #9aa5b3;
    }

    .testimonial-img {
        flex-shrink: 0;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
    }

    .testimonial-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Stacking styles */
    .testimonial-card.active {
        z-index: 3;
        transform: translateY(0) scale(1);
        opacity: 1;
        background-color: var(--blue-darkest);
    }

    .testimonial-card.next {
        z-index: 2;
        transform: translateY(30px) scale(0.94);
        opacity: 0.85;
    }

    .testimonial-card.prev {
        z-index: 1;
        transform: translateY(55px) scale(0.90);
        opacity: 0.7;
    }

    /* Controls */
    .slider-controls {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 5rem;
    }

    .slider-controls button {
        width: 50px;
        height: 50px;
        border: 2px solid var(--gray-light);
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: background 0.3s;
    }

    .slider-controls button:hover {
        background: var(--yellow)
    }

    /* Hover effect */
    .custom-nav:hover {
        background: var(--yellow-dark);
        color: #000;
        border: none;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px !important;
    }

    /*======Enrollments Plans=========*/
 .pricing-section {
  background: #f9fafc;
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* TOGGLE */
.pricing-toggle {
  display: inline-flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  border: 1px solid gray;
  /* box-shadow: 0 4px 14px rgba(0,0,0,.08); */
  margin-bottom: 40px;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  color: var(--gray-dark);
  transition: all .3s ease;
}

.toggle-btn.active {
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* CARDS */
.pricing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.pricing-group {
  display: none;
  gap: 24px;
  justify-content: center;
  animation: fadeSlide .4s ease;
}

.pricing-group.active {
  display: flex;
  animation: fadeSlide .4s ease;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  flex: 0 0 360px;
  min-width: 320px;
  max-width: 380px;
  border: 1px solid #d2d2d2;
  position: relative;
  transition: transform .3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.pricing-card.featured {
  border: 2px solid var(--blue-dark);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin: 12px 0;
}

.pricing-card ul {
  flex-grow: 1;
    text-align: left;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: .9rem;
}

.pricing-card ul li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* BADGES */
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  font-size: .7rem;
  border-radius: 999px;
  color: #fff;
}

.badge.popular {
  background: var(--blue-darker);
}

.badge.special {
  background: var(--yellow-dark);
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Tablet (≤1199px) ===== */
@media (max-width: 1199px) {
  .pricing-wrapper {
    padding: 0 10px;
  }

  .pricing-group {
    gap: 20px;
    flex-wrap: wrap;
  }

  .pricing-card {
    width: 300px;
  }
}

/* ===== Tablet Portrait (≤991px) ===== */
@media (max-width: 991px) {
  .pricing-toggle {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .pricing-group {
    justify-content: center;
  }

  .pricing-card {
    width: 320px;
  }
}

/* ===== Mobile (≤767px) ===== */
@media (max-width: 767px) {

  /* Toggle becomes stacked */
  .pricing-toggle {
    /* width: 100%; */
    flex-direction: row;
    align-items: stretch;
    padding: 8px;
  }

  .pricing-toggle .toggle-btn {
   
    text-align: center;
    padding: 12px 16px;
  }

  /* Cards stack vertically */
  .pricing-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pricing-card {
    width: 100%;
    max-width: 360px;
  }

  /* Reduce card padding slightly */
  .pricing-card {
    padding: 22px;
  }

  /* Center badges */
  .pricing-card .badge {
    top: -10px;
  }
}

/* ===== Small Mobile (≤480px) ===== */
@media (max-width: 480px) {

  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card h3 {
    font-size: 1.6rem;
  }

  .pricing-card ul li {
    font-size: 0.85rem;
  }

  .pricing-card a.btn {
    width: 100%;
    text-align: center;
  }
}

    /* Marquee container */
    .marquee {
        position: relative;
        overflow: hidden;
        height: 64px;
        /* same height as your screenshot */
    }

    /* Track animation */
    .marquee-track {
        display: flex;
        flex: 0 0 auto;
        min-width: 100%;
        animation: marquee-scroll 30s linear infinite;
    }

    /* Pause on hover */
    .marquee:hover .marquee-track {
        animation-play-state: paused;
    }

    /* Keyframes for scrolling */
    @keyframes marquee-scroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    .expert-img {
        border-bottom-right-radius: 100px;
        border-top-left-radius: 100px;
    }

    .faq-section {
        background: url('<?php echo get_template_directory_uri(); ?>/images/Faq.png') center/cover no-repeat;
        color: white;
        padding: 5rem 0;
        position: relative;
    }

    .faq-left h2 {
        font-weight: 700;
    }

    .faq-left p {
        margin-bottom: 1.5rem;
        color: #ddd;
    }

    .profile-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
        margin: 0 1rem;
    }

    .btn-custom {
        background: var(--yellow) !important;
        color: #000;
        font-weight: 500;
        border-radius: 100px;
        padding: 0.6rem 1.5rem;
        transition: 0.3s;
    }

    .btn-custom:hover {
        background: var(--yellow-dark);
        color: #fff;
    }

    .accordion-item {
        background: none !important;
        border-radius: 12px;
        margin-bottom: 1.5rem;
        backdrop-filter: blur(8px);
        position: relative;
        border: none !important;
    }

    .accordion-item::before {
        padding: 1px;

    }

    .accordion-button {
        background: none !important;
        color: #fff !important;
        font-weight: 500;
        box-shadow: none !important;
        border: 2px solid white !important;
        border-radius: 20px !important;
    }

    .accordion-button::after {
        color: white !important;
        background-image: none;
        content: "\25BE";
        font-size: 1.2rem;
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .accordion-button.collapsed::after {
        transform: rotate(0);
    }

    .accordion-body {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        margin: 0.5rem 0 0 2rem;
        color: #eee;
    }

    /* Homepage Section Transitions */
    #homepageWrapper {
        position: relative;
        min-height: 100vh;
    }

    .homepage-section {
        transition: opacity 0.5s ease, transform 0.5s ease;
        opacity: 1;
        /* transform: translateY(0); */
        transform: inherit !important;
    }

    .homepage-section[style*="display: none"] {
        opacity: 0;
        transform: translateY(20px);
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
    }


      

    /* Learner Homepage Styles
    #homepageLearner .hero-section {
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
        overflow: hidden;
    }

    #homepageLearner .hero-heading {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--gray-darkest);
        line-height: 1.2;
        font-size: 2.8rem;
    }

    #homepageLearner .highlight-text {
        color: var(--yellow-dark);
    }

    #homepageLearner .hero-subtext {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.7;
    }

    #homepageLearner .hero-image {
        max-width: 480px;
        position: relative;
    }


    /* ===== HERO METRICS ===== */





    /* #homepageLearner .floating-card {
        position: absolute;
        background: #fff;
        padding: 8px 14px;
        border-radius: 12px;
        font-size: 0.9rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 4px;
        animation: float 4s ease-in-out infinite;
    }

    #homepageLearner .floating-card.top-left {
        top: 30px;
        left: -30px;
    }

    #homepageLearner .floating-card.bottom-right {
        bottom: 30px;
        right: -30px;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-6px); }
    } */
/* 
    #homepageLearner .why-choose-section {
        background-color: #fff8db;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    #homepageLearner .choose-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    } */

    /* #homepageLearner .choose-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }

    #homepageLearner .icon-circle {
        width: 60px;
        height: 60px;
        background: var(--yellow, #fed42b);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.5rem;
    }

    #homepageLearner .course-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        height: 100%;
        transition: all 0.3s ease;
        border: 1px solid #e6e6e6;
    }

    #homepageLearner .course-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    #homepageLearner .course-image img {
        height: 240px;
        object-fit: cover;
    }

    #homepageLearner .course-category-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 3px 8px;
        font-family: var(--font-heading, "Inter", sans-serif);
    }

    #homepageLearner .mcor span {
        color: #001223;
    }

    #homepageLearner .mcor span.active {
        color: var(--yellow, #fed42b);
    }

    #homepageLearner .course-level-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #fff8db;
        color: #111;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
    }

    #homepageLearner .earning-section {
        background: linear-gradient(180deg, #fffbe9 0%, #f7fbff 100%);
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
    }

    #homepageLearner .exclusive-badge {
        display: inline-block;
        background-color: var(--blue-dark, #003c71);
        color: #fff;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 20px;
        padding: 6px 14px;
    }

    #homepageLearner .earning-card {
        border: 1.5px solid #003c71;
        border-radius: 14px;
        background: #fff;
        padding: 2rem 1.5rem;
        transition: all 0.3s ease;
    }

    #homepageLearner .earning-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    }

    #homepageLearner .earning-card h3 {
        color: var(--blue-dark, #003c71);
    }

    #homepageLearner .success-stories {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        max-width: 900px;
    }

    #homepageLearner .category-badge {
        display: inline-block;
        background: #fff;
        color: var(--gray-dark, #3d3d3d);
        padding: 10px 18px;
        border-radius: 10px;
        font-weight: 500;
        font-size: 0.95rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    #homepageLearner .category-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    #homepageLearner .bg-soft-blue {
        background: #e7f4ff;
        color: var(--blue-dark, #003c71);
    }

    #homepageLearner .bg-soft-yellow {
        background: #fff8db;
        color: var(--yellow-dark, #d4aa00);
    }

    #homepageLearner .bg-soft-cyan {
        background: #dcf9f8;
        color: #007b83;
    }

    #homepageLearner .bg-blue {
        background: #0070d3;
    }

    #homepageLearner .bg-yellow {
        background: #fed42b;
    }

    #homepageLearner .bg-dark-blue {
        background: #003c71;
    }

    #homepageLearner .career-transform-section {
        background: linear-gradient(90deg, #f0f8ff 0%, #fffbe9 100%);
        padding: 5rem 0;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
    }

    #homepageLearner .career-transform-section .btn--cta {
        background: linear-gradient(90deg, var(--yellow-dark, #d4aa00), var(--yellow, #fed42b));
        color: #111;
        font-weight: 600;
        border-radius: 999px;
        padding: 0.75rem 1.75rem;
        transition: all 0.3s ease;
    }

    #homepageLearner .career-transform-section .btn--cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    @media (max-width: 992px) {
        #homepageLearner .hero-heading {
            font-size: 2.2rem;
        }
        #homepageLearner .hero-image {
            max-width: 400px;
        }
        /* #homepageLearner .floating-card.top-left {
            top: 10px;
            left: 10px;
        }
        #homepageLearner .floating-card.bottom-right {
            bottom: 10px;
            right: 10px;
        } 
    }

    /* @media (max-width: 768px) {
        #homepageLearner .section-heading {
            font-size: 1.6rem;
        }
        #homepageLearner .icon-circle {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
        #homepageLearner .course-image img {
            height: 200px;
        }
        #homepageLearner .earning-card {
            padding: 1.5rem 1rem;
        }
        #homepageLearner .category-badge {
            font-size: 0.9rem;
            padding: 8px 14px;
        }
        #homepageLearner .career-transform-section {
            padding: 4rem 1rem;
        }
        #homepageLearner .career-transform-section h2 {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 576px) {
        #homepageLearner .hero-heading {
            font-size: 1.8rem;
        }
         #homepageLearner .floating-card {
            font-size: 0.8rem;
            padding: 6px 10px;
        } 
    } */


    /* Review Slider */
/* #homepageLearner .review-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#homepageLearner .slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

#homepageLearner .review-card {
  flex: 0 0 50%;
  max-width: 100%;
  margin: 0 24px auto;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 25px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
#homepageLearner .review-card:hover {
  box-shadow: 0 0 20px rgba(0, 112, 211, 0.15);
}

#homepageLearner .avatar {
  width: 45px;
  height: 45px;
  background: var(--gray-light);
  border-radius: 50%;
}  */

/* Navigation Arrows */
/* #homepageLearner .nav-btn {
  background: none;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  transition: all 0.3s ease;
}
#homepageLearner .nav-btn:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
  border-color: var(--blue);
}  */



#homepageLearner .hero-section {
    box-shadow: none !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius:0 !important;
        overflow: hidden;
        padding-bottom: 0 !important;
      }

      #homepageLearner .hero-heading {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--gray-darkest);
        line-height: 1.2;
        font-size: 2.8rem;
      }

    #homepageLearner  .highlight-text {
        color: var(--yellow-dark);
      }

    #homepageLearner  .hero-subtext {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.7;
      }

      /* ===== Floating Badges ===== */
    #homepageLearner  .hero-image {
        max-width: 480px;
        position: relative;
      }

      /* ===== Responsive ===== */
      @media (max-width: 992px) {
      #homepageLearner  .hero-heading {
          font-size: 2.2rem;
        }
       #homepageLearner .hero-image {
          max-width: 400px;
        }
       #homepageLearner .floating-card.top-left {
          top: 10px;
          left: 10px;
        }
        #homepageLearner .floating-card.bottom-right {
          bottom: 10px;
          right: 10px;
        }
      }

      @media (max-width: 576px) {
        #homepageLearner .hero-heading {
          font-size: 1.8rem;
        }
        #homepageLearner .floating-card {
          font-size: 0.8rem;
          padding: 6px 10px;
        }
      }

      /* ===== HERO METRICS ===== */

      #homepageLearner .metrics-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #fff8db;
        border-radius: 22px;
        padding: 28px 36px;
        gap: 20px;
      }

      #homepageLearner .metric-item {
        text-align: center;
        flex: 1;
      }

      #homepageLearner .metric-item h3 {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--gray-darkest);
      }

      #homepageLearner .metric-item .highlight {
        color: var(--yellow-dark);
      }

      #homepageLearner .metric-item p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        margin: 0;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 768px) {
        #homepageLearner .metrics-wrapper {
          /* flex-direction: column; */
          text-align: center;
        }
        #homepageLearner .metric-item h3 {
          font-size: 1.6rem;
        }

        #homepageLearner .metric-item p {
          font-size: 0.7rem;
        }
      }

      /* ===== WHY CHOOSE SECTION ===== */
      /* .why-choose-section {
  background-color: #fff8db;
  padding-top: 5rem;
  padding-bottom: 5rem;
} */

      /* Section heading */
      #homepageLearner .section-heading {
        font-family: var(--font-heading, "Inter", sans-serif);
        color: var(--gray-darkest, #111);
        font-size: 1.9rem;
      }

      /* Card styles */
      #homepageLearner .choose-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }

      #homepageLearner.choose-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      }

      /* Icon circle */
      #homepageLearner .icon-circle {
        width: 60px;
        height: 60px;
        background: var(--yellow, #fed42b);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.5rem;
      }

      /* Responsive text */
      @media (max-width: 768px) {
          #homepageLearner .section-heading {
          font-size: 1.6rem;
        }
        #homepageLearner .icon-circle {
          width: 50px;
          height: 50px;
          font-size: 1.2rem;
        }
      }
      /* ===== RECOMMENDED COURSES SECTION ===== */
     #homepageLearner .recommended-section {
        background-color: #fff;
      }

      #homepageLearner .section-heading {
        font-family: var(--font-heading, "Inter", sans-serif);
        color: var(--gray-darkest, #111);
        font-size: 1.9rem;
      }

      /* ===== COURSE CARD ===== */
     #homepageLearner .course-card {
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid #e6e6e6;
      }

     #homepageLearner .course-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      }

      /* Course image */
     #homepageLearner .course-image img {
        width: 100%;
        height: 150px;
        object-fit: cover;
      }

      /* ===== BADGES ===== */
      #homepageLearner .course-category-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 3px 8px;
        font-family: var(--font-heading, "Inter", sans-serif);
      }

     #homepageLearner .mcor span {
        color: #001223;
      }

      .mcor span.active {
        color: var(--yellow, #fed42b);
      }

      /* Course Level Badge */
      #homepageLearner.course-level-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #fff8db;
        color: #111;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 4px 10px;
        border-radius: 20px;
      }

      /* ===== COURSE CONTENT ===== */
      #homepageLearner .course-content h6 {
        font-size: 1rem;
        line-height: 1.4;
      }

      #homepageLearner .course-content p {
        font-size: 0.9rem;
        line-height: 1.6;
      }

      #homepageLearner .view-all-link:hover {
        color: var(--blue-dark, #003c71);
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 992px) {
      #homepageLearner  .course-image img {
          height: 200px;
        }
      }

      @media (max-width: 576px) {
        #homepageLearner .section-heading {
          font-size: 1.6rem;
        }
      }

      /* Review Slider */
      #homepageLearner .review-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
      }

      #homepageLearner .slider-track {
        display: flex;
        transition: transform 0.6s ease;
        gap: 3%;
      }

     #homepageLearner .review-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        background: #fff;
        border: 1px solid var(--gray-light);
        border-radius: 10px;
        padding: 25px;
        box-sizing: border-box;
        transition: box-shadow 0.3s ease;
      }
      #homepageLearner .review-card:hover {
        box-shadow: 0 0 20px rgba(0, 112, 211, 0.15);
      }

     #homepageLearner .avatar {
        width: 45px;
        height: 45px;
        background: var(--gray-light);
        border-radius: 50%;
      }

      /* Navigation Arrows */
      #homepageLearner .nav-btn {
        background: none;
        border: 1px solid var(--gray-light);
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-dark);
        transition: all 0.3s ease;
      }
      #homepageLearner .nav-btn:hover {
        background: var(--blue-light);
        color: var(--blue-dark);
        border-color: var(--blue);
      }
      #homepageLearner .nav-btn:disabled,
      .reviews-section .nav-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
      }

      /* ===== COURSE CATEGORIES SECTION ===== */
      #homepageLearner .course-categories {
        background: #fff;
      }

      #homepageLearner .section-heading {
        font-family: var(--font-heading, "Inter", sans-serif);
        color: var(--gray-darkest, #001223);
        font-size: 1.9rem;
      }

      /* ===== CTA SECTION ===== */
      #homepageLearner .career-transform-section {
        background: linear-gradient(90deg, #f0f8ff 0%, #fffbe9 100%);
        padding: 5rem 0;
        border-top-left-radius: 60px;
        border-top-right-radius: 60px;
      }

      #homepageLearner .career-transform-section h2 {
        font-family: var(--font-heading, "Inter", sans-serif);
        color: var(--gray-darkest, #001223);
        font-size: 1.9rem;
      }

      #homepageLearner .career-transform-section p {
        font-family: var(--font-body, "Montserrat", sans-serif);
        color: var(--text-secondary, #3d3d3d);
        font-size: 1rem;
        line-height: 1.7;
      }

      #homepageLearner .career-transform-section small {
        font-size: 0.85rem;
      }

      /* Responsive */
      @media (max-width: 768px) {
        #homepageLearner .career-transform-section {
          padding: 4rem 1rem;
        }
        #homepageLearner .career-transform-section h2 {
          font-size: 1.6rem;
        }
        #homepageLearner .career-transform-section p {
          font-size: 0.95rem;
        }
      }

      #homepageLearner .level-section {
        text-align: center;
        padding: 80px 20px;
      }

      #homepageLearner .subtext {
        max-width: 700px;
        margin: 12px auto 80px;
        color: #6b7280;
      }

      #homepageLearner .level-cards {
        display: flex;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
      }

      #homepageLearner .level-card {
        width: 260px;
        height: 360px;
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        text-decoration: none;
        transform: translateY(0) rotate(0deg);
        transition: transform 0.35s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      #homepageLearner .level-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      #homepageLearner .level-card .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, #001223 0%, #f6f6f65b 79%);
        color: #fff;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }

      #homepageLearner .overlay h3 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
      }

      #homepageLearner .overlay p {
        font-size: 0.85rem;
        line-height: 1.4;
        opacity: 0.9;
      }

      #homepageLearner  .overlay span {
        margin-top: 12px;
        font-size: 0.75rem;
        color: #60a5fa;
      }

      /* initial tilt */
      #homepageLearner .tilt-left {
        transform: rotate(-4deg);
        top: -30px;
      }
      #homepageLearner .tilt-right {
        transform: rotate(4deg);
        top: -30px;
      }

      /* hover effect */
      #homepageLearner .level-card:hover {
        transform: translateY(-14px) rotate(0deg);
      }

      /* CTA pill */
      #homepageLearner .badge-pill {
        display: inline-block;
        margin-top: 50px;
        padding: 10px 22px;
        border-radius: 999px;
        background-color: var(--off-white);
        border: 1px solid #edbe01;
        font-size: 0.85rem;
        color: #1e1e1e;
      }

      @media (max-width: 1023px) {
      #homepageLearner  .level-cards {
          gap: 24px;
        }

      #homepageLearner .level-card {
          width: 220px;
          height: 320px;
        }
      }

      @media (max-width: 767px) {
       #homepageLearner .level-cards {
          flex-direction: column;
          align-items: center;
          gap: 28px;
        }

       #homepageLearner .level-card {
          width: 90%;
          max-width: 320px;
          height: 300px;
          transform: none; /* reset tilt */
        }

        /* disable tilt & hover behavior on mobile */
        #homepageLearner .tilt-left,
        #homepageLearner .tilt-right {
          transform: none;
        }

        #homepageLearner .tilt-right {
          top: 30px;
        }

        #homepageLearner .level-card:hover {
          transform: none;
        }
      }

     #homepageLearner .course-info {
        padding: 80px 20px;
        display: flex;
      }

     #homepageLearner .course-wrap {
        margin: auto;
        display: flex;
        align-items: center;
        gap: 30px;
      }

      #homepageLearner .course-text {
        flex: 1;
      }

      #homepageLearner .course-text p {
        color: #6b7280;
        max-width: 520px;
        margin-bottom: 20px;
      }

     #homepageLearner .course-text ul {
        list-style: none;
        padding: 0;
      }

      #homepageLearner .course-text li {
        margin-bottom: 10px;
        position: relative;
        font-size: 1rem;
      }

      #homepageLearner .course-text li img {
        margin-right: 10px;
      }

      /* right image */
      #homepageLearner .course-image {
        flex: 1;
        text-align: center;
      }

      #homepageLearner .course-image img {
        max-width: 100%;
        height: auto;
      }

      /* mobile */
      @media (max-width: 768px) {
       #homepageLearner .course-wrap {
          flex-direction: column;
          gap: 40px;
        }

        #homepageLearner .course-image {
          text-align: center;
        }
      }

      #homepageLearner .mcor-section {
        text-align: center;
        padding: 50px 20px;
      }

      #homepageLearner  .mcor-section h2 {
        font-size: 1.9rem;
        margin-bottom: 10px;
      }

      #homepageLearner .mcor-section p {
        max-width: 700px;
        margin: 0 auto;
        color: #6b7280;
        font-size: 0.95rem;
      }

      #homepageLearner .mcor-info {
        padding: 60px 20px;
      }

      #homepageLearner .mcor-box {
        max-width: 1100px;
        margin: auto;
        display: flex;
        gap: 40px;
        align-items: center;
        padding: 40px;
        border-radius: 12px;
        background: linear-gradient(90deg, #fff6d5, #eaf6ff);
      }

      #homepageLearner .mcor-image img {
        width: 320px;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        background: #e5e7eb;
      }

      #homepageLearner .mcor-content h3 {
        margin-bottom: 10px;
        font-size: 1.5rem;
      }

      #homepageLearner .mcor-content p {
        color: #4b5563;
        max-width: 520px;
        margin-bottom: 18px;
        font-size: 0.95rem;
      }

      #homepageLearner .read-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #1f2937;
        text-decoration: none;
      }

      #homepageLearner .read-link span {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 1px solid #facc15;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
      }

      /* Tablet & below */
      @media (max-width: 1024px) {
        #homepageLearner .mcor-box {
          gap: 28px;
          padding: 32px;
        }

        #homepageLearner .mcor-image img {
          width: 280px;
          height: 180px;
        }
      }

      /* Mobile */
      @media (max-width: 768px) {
        #homepageLearner .mcor-box {
          flex-direction: column;
          text-align: center;
          padding: 28px 20px;
        }

        #homepageLearner .mcor-image img {
          width: 100%;
          max-width: 360px;
          height: auto;
        }

        #homepageLearner .mcor-content p {
          max-width: 100%;
        }

        #homepageLearner .read-link {
          justify-content: center;
        }
      }

      /* Offer bar */
      #homepageLearner .offer-bar {
        max-width: 1100px;
        margin: 25px auto;
        padding: 20px 100px;
        background: linear-gradient(90deg, #fff6d5, #eaf6ff);
        border-radius: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
      }

      #homepageLearner .offer-btn {
        background: #0b3c6f;
        color: #fff;
        padding: 8px 16px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.8rem;
      }

      @media (max-width: 768px) {
        #homepageLearner .offer-bar {
          flex-direction: column;
          text-align: center;
          align-content: center;
          gap: 12px;
          padding: 15px 20px;
        }
      }

      /* Video box */
      #homepageLearner .custom-video {
  width: 100%;
  max-width: 560px;
}

#homepageLearner .video-box {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

/* video */
#homepageLearner .video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* hide native controls initially */
#homepageLearner .video-player::-webkit-media-controls {
  opacity: 0;
  pointer-events: none;
}

/* show controls on hover */
#homepageLearner .video-box:hover #homepageLearner .video-player::-webkit-media-controls {
  opacity: 1;
  pointer-events: auto;
}

/* play button */
#homepageLearner .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}

#homepageLearner .alliance-section {
        position: relative;
        min-height: 480px;
        background: url("/wp-content/themes/oms-academy/images/strategic-alliance.png") center/cover no-repeat;
      }

      #homepageLearner .teach-section {
        position: relative;
        min-height: 480px;
        background: url("/images/teach-banner.png") center/cover no-repeat;
      }

      /* dark overlay */
      #homepageLearner .teach-bg {
        min-height: 480px;
        background: linear-gradient(
          270deg,
          rgba(0, 18, 35, 1),
          rgba(0, 18, 35, 0.79) 65%,
          rgba(0, 18, 35, 0) 100%
        );
        display: flex;
        align-items: center;
        padding: 100px 20px;
      }

      #homepageLearner .teach-container {
        max-width: 1100px;
        margin: auto;
        width: 100%;
        display: flex;
        justify-content: flex-end;
      }

      #homepageLearner .teach-content {
        max-width: 520px;
        color: #fff;
      }

      #homepageLearner .teach-content h2 {
        font-size: 2.2rem;
        margin-bottom: 14px;
      }

      #homepageLearner .teach-content p {
        font-size: 0.95rem;
        color: #d1d5db;
        margin-bottom: 20px;
      }

      #homepageLearner .teach-content ul {
        list-style: none;
        padding: 0;
        margin-bottom: 28px;
      }

      #homepageLearner .teach-content li {
        position: relative;
        /* padding-left: 26px; */
        margin-bottom: 10px;
        font-size: 0.9rem;
      }

      #homepageLearner .teach-content li img {
        margin-right: 20px;
      }

      /* actions */
      #homepageLearner .teach-actions {
        display: flex;
        gap: 18px;
        align-items: center;
      }

      #homepageLearner .btn-primary {
        background: #facc15;
        color: #1f2937;
        padding: 10px 18px;
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }

    #homepageLearner .btn-video {
        background: none;
        border: none;
        color: #fff;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
      }

      #homepageLearner .btn-video .play {
        width: 34px;
        height: 34px;
        background: #fff;
        color: #1f2937;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
      }
      @media (max-width: 768px) {
        #homepageLearner .teach-bg {
          background: linear-gradient(
            180deg,
            rgba(8, 30, 52, 0.9) 60%,
            rgba(8, 30, 52, 0.6) 100%
          );
          text-align: center;
        }

        #homepageLearner .teach-content {
          margin: auto;
        }

        #homepageLearner .teach-actions {
          justify-content: center;
          flex-wrap: wrap;
        }
      }

      #homepageLearner .video-modal {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
      }

      #homepageLearner .video-modal-content {
        position: relative;
        width: 90%;
        max-width: 900px;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
      }

      #homepageLearner .video-modal video {
        width: 100%;
        height: auto;
        display: block;
      }

      #homepageLearner .close-modal {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        color: #fff;
        font-size: 1.1rem;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
      }

