:root {
    --primary-color: #afc568;
    /* Dark Blue similar to EuroKids */
    --secondary-color: #ed1c24;
    /* Red for banner/accents */
    --text-color: #333;
    --white: #ffffff;
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Quicksand', sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Navbar Styling */
.bg-custom-blue {
    background-color: #6559a3 !important;
    padding: 1px 0;
}

.navbar-brand .navbar-logo {
    max-height: 80px;
    /* Adjust as needed */
    width: auto;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    text-align: left;
    margin: 0 10px;
    line-height: 1.2;
    font-size: 16px;
    /* Slightly reduced increase from previous change, using px as requested */
}

@media (min-width: 992px) {
    .nav-link {
        text-align: center;
        /* Center align on desktop */
    }
}


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

.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* Social Icons */
.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 8px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff8a00;
}

/* Marquee Announcement Banner */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    font-size: 14px;
    font-weight: 400;
    background-color: #ff8a00;
    padding: 2px 0;
    line-height: 24px;
    white-space: nowrap;
    color: #fff;
}

@media (max-width: 768px) {
    .marquee-content {
        font-size: 12px;
        line-height: 20px;
        padding: 2px 0;
    }
}

@media (max-width: 480px) {
    .marquee-content {
        font-size: 11px;
        line-height: 18px;
        padding: 1px 0;
    }
}

/* Mobile Adjustments */
/* Mobile Adjustments */
@media (max-width: 991px) {
    .offcanvas {
        background-color: var(--primary-color);
        /* Ensure background is dark blue */
        color: white;
    }

    .offcanvas-header .btn-close {
        /* Bootstrap btn-close-white should handle this, but ensuring visibility */
        opacity: 1;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: left;
        /* Align text left in mobile menu */
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
    }

    .dropdown-item {
        color: white;
    }

    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .logo-box {
        margin-left: 0;
        /* Reset margin on mobile if needed */
    }
}

/* Footer Styles */
.footer-section {
    background-color: var(--primary-color);
    /* Deep Blue typical of EuroKids */
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: var(--font-body);
}


.footer-section h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 4px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 20px;
    /* Removed white background to blend with footer */
    /* If the logo is not transparent, we might need a container, 
       but for now assuming a clean look is desired */
}

.footer-powered {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-powered strong {
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-rating {
    margin-top: 30px;
}

.footer-rating p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 30px;
    padding-top: 20px;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

/* About Us Section Styles */
.about-section {
    padding: 80px 0;
    font-family: var(--font-body);
}

.badge-pill {
    background-color: #fff;
    color: #333;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}


.badge-pill::before {
    content: '✦';
    color: #ff8a00;
    font-size: 1rem;
    margin-right: 8px;
}

.about-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #002e5b;
    /* Dark Blue */
    max-width: 900px;
    margin: 0 auto;
}

.inline-img {
    height: 50px;
    border-radius: 50px;
    vertical-align: middle;
    margin: 0 5px;
    object-fit: cover;
}

.inline-img-circle {
    width: 50px;
    border-radius: 50%;
}

.inline-img-pill {
    width: 120px;
}

.highlight-text {
    color: #ff8a00;
    /* Orange */
}

.about-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    height: 100%;
    transition: border-color 0.3s ease;
}

.about-card:hover {
    border-color: #ff8a00;
}

.card-img-container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Shaped Image Mask Styles */
.shaped-mask {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shaped-img-wrapper {
    width: 180px;
    height: 180px;
    clip-path: url(#about-shape-clip);
    -webkit-clip-path: url(#about-shape-clip);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf4c5 0%, #afc568 100%);
    animation: rotate-shape 30s linear infinite;
}

.shaped-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: counter-rotate-shape 30s linear infinite;
}

.shaped-img-wrapper-2 {
    width: 200px;
    height: 140px;
    clip-path: url(#about-shape-clip-2);
    -webkit-clip-path: url(#about-shape-clip-2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf4c5 0%, #afc568 100%);
    animation: float-shape 4s ease-in-out infinite;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.shaped-img-wrapper-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: counter-float-shape 4s ease-in-out infinite;
}

@keyframes counter-float-shape {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

.shaped-img-wrapper-3 {
    width: 180px;
    height: 180px;
    clip-path: url(#about-shape-clip-3);
    -webkit-clip-path: url(#about-shape-clip-3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf4c5 0%, #afc568 100%);
    animation: rotate-shape 30s linear infinite;
}

@keyframes rotate-shape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.shaped-img-wrapper-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: counter-rotate-shape 30s linear infinite;
}

@keyframes counter-rotate-shape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.about-card h4 {
    color: #002e5b;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-card p {
    color: #1B2226;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-learn-more {
    color: #002e5b;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-learn-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    color: #ff8a00;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}


/* About Reviews Styles */
.about-reviews {
    margin-top: 50px;
}

.review-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: #002e5b;
    margin-bottom: 15px;
}

.review-highlight {
    color: #ff8a00;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.review-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #002e5b;
}

.rating-score {
    font-size: 1.2rem;
}

.stars {
    color: #ff8a00;
    font-size: 1rem;
}


/* Our Programs Section */
.programs-section {
    background-color: #fdf8f5;
    /* Cream/Light background */
    padding: 80px 0;
    margin: 20px;
    border-radius: 50px;
}

.programs-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.4;
    color: #002e5b;
    max-width: 800px;
    margin: 20px auto 50px;
}

.program-card {
    background: white;
    padding: 25px 20px 25px;
    border-radius: 40px;
    border: 1px solid #e0e0e0;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.program-card:hover {
    border-color: #ff8a00;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.program-card .card-img-container {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}

.program-card .card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.program-card h4 {
    color: #002e5b;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.program-meta {
    background: #ff8a00;
    color: white;
    padding: 4px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(255, 138, 0, 0.2);
}

.program-desc {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Program CTA */
.program-cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    flex-wrap: wrap;
}

.programSwiper {
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.programSwiper .swiper-slide {
    height: auto;
    padding: 20px 10px 10px;
}

/* Custom Navigation Arrows */
.programSwiper .swiper-button-next,
.programSwiper .swiper-button-prev {
    color: #ff8a00;
    /* Orange */
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.programSwiper .swiper-button-next:after,
.programSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Custom Pagination */
.programSwiper .swiper-pagination-bullet {
    background: #afc568;
    /* Green */
    opacity: 0.5;
}

.programSwiper .swiper-pagination-bullet-active {
    background: #ff8a00;
    /* Orange */
    opacity: 1;
}

.badge-free {
    background-color: #6559a3;
    /* Orange */
    color: white;
    padding: 5px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
}

.cta-text {
    color: #1B2226;
    font-weight: 500;
}

.cta-link {
    color: #f68b1f;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #f68b1f;
    transition: color 0.3s ease, border-color 0.3s ease;
}


/* What We Do Section */
.what-we-do-section {
    background-color: white;
    padding: 80px 0;
}

.wwd-image-container {
    text-align: center;
}

.wwd-image {
    max-width: 100%;
    height: auto;
}

.wwd-content {
    padding-left: 30px;
}

.wwd-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: #002e5b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.wwd-highlight {
    color: #ff8a00;
}

.wwd-description {
    color: #1B2226;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-block {
    background-color: #fdf8f5;
    /* Light cream/white */
    padding: 10px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.feature-icon {
    background-color: #ff8a00;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    gap: 10px;
    margin: auto 0;
}

.feature-text h4 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #002e5b;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #1B2226;
    line-height: 1.5;
}

.stats-row {
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-icon {
    background-color: #6559a3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: #002e5b;
    display: block;
}


/* Why Choose Us Section */
.why-choose-section {
    background-color: #fdf8f5;
    /* Cream/Light background */
    padding: 80px 0;
    margin: 20px;
    border-radius: 50px;
}

.wcu-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: #002e5b;
    line-height: 1.2;
}

.wcu-highlight {
    color: #ff8a00;
}

.wcu-description {
    color: #1B2226;
    font-size: 1.1rem;
    line-height: 1.6;
}

.wcu-card {
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-light-green {
    background-color: #eaf4c5;
}

.card-grey {
    background-color: #6c757d;
    color: white;
}

.card-dark-blue {
    background-color: #002e5b;
    color: white;
}

.card-orange {
    background-color: #ff8a00;
    color: white;
}

.card-brand {
    background-color: var(--primary-color);
    color: white;
}

.card-purple {
    background-color: #6559a3;
    color: white;
}

.wcu-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.wcu-card-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.wcu-card-label {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: block;
}

/* Specific adjustments for 15+ and 25K+ cards to look like the design */
.card-grey,
.card-dark-blue {
    padding: 30px;
    min-height: 200px;
    justify-content: center;
}

.card-layout-center {
    padding: 30px;
    min-height: 200px;
    justify-content: center;
}

.wcu-image-card {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.wcu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-icon-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.2;
    font-size: 4rem;
}


/* Our Features Section */
.features-section {
    padding: 80px 0;
    overflow: hidden;
    /* To handle decorative elements overflowing */
}

.features-image-wrapper {
    position: relative;
    padding: 20px;
    /* Space for decoration */
}

.features-img-main {
    width: 80%;
    border-radius: 50%;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.features-img-secondary {
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 45%;
    border-radius: 50%;
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.features-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px dashed #ff8a00;
    z-index: 1;
    transform: rotate(-15deg);
}

.features-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: #002e5b;
    line-height: 1.2;
    margin-bottom: 50px;
}

.features-highlight {
    color: #ff8a00;
}

.feature-grid-item {
    margin-bottom: 40px;
}

.feature-icon-square {
    width: 60px;
    height: 60px;
    background-color: #ff8a00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-grid-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #002e5b;
    margin-bottom: 10px;
}


/* How It Works Section */
.how-it-works-section {
    background-color: #fdf8f5;
    /* Cream/Light background */
    padding: 80px 0 0 0;
    /* Remove bottom padding so image sits flush */
    margin: 20px;
    border-radius: 50px;
    overflow: hidden;
    /* Clip the bottom image to the rounded corners */
}

.hiw-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: #002e5b;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hiw-highlight {
    color: #ff8a00;
}

.hiw-description {
    color: #1B2226;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-contact {
    background-color: #ff8a00;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #e67e00;
    color: white;
    transform: translateY(-2px);
}

.process-step {
    position: relative;
    padding: 20px;
    margin-top: 40px;
}

.step-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.bg-orange {
    background-color: #ff8a00;
}

.bg-light-green {
    background-color: #eaf4c5;
    color: #002e5b;
    /* Dark text for light background */
}

.bg-dark-blue {
    background-color: #002e5b;
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #002e5b;
    margin-bottom: 5px;
    display: block;
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #002e5b;
    margin-bottom: 15px;
}

.step-description {
    color: #1B2226;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Dashed connecting lines replacement with SVG */
/* Dashed connecting lines replacement with SVG */
/* Dashed connecting lines replacement with SVG */
.process-connector {
    position: absolute;
    top: -40px;
    left: 100%;
    transform: translateX(-50%);
    width: 140px;
    height: 90px;
    background-image: url('../assets/images/work-step-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
}

.process-connector.connector-2 {
    /* Same arrow for consistent staggering */
    top: -40px;
    left: 100%;
    transform: translateX(-50%);
}

/* Staggered Step Layout */
@media (min-width: 992px) {
    .process-step {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hiw-process-row .col-lg-4:nth-child(1) .process-step {
        margin-top: 120px;
    }

    .hiw-process-row .col-lg-4:nth-child(2) .process-step {
        margin-top: 60px;
    }

    .hiw-process-row .col-lg-4:nth-child(3) .process-step {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .process-connector {
        display: none;
    }

    .process-step {
        margin-top: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hiw-heading {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .col-lg-6.text-lg-end {
        text-align: left !important;
        margin-bottom: 30px;
    }
}

.hiw-bottom-image-container {
    margin-top: -50px;
    width: 100%;
    line-height: 0;
}

.hiw-bottom-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.testimonials-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: #002e5b;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fcf8f3;
    /* Light cream to match reference */
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    /* transform: translateY(-5px); Removed hover animation */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); Removed hover shadow */
    border-color: #ff8a00;
    /* Optional: keep border change or remove purely */
}

.testimonial-card .stars {
    color: #f68b1f;
    /* Orange */
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #1B2226;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes author to bottom */
}

.testimonial-divider {
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #002e5b;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.9rem;
    color: #888;
}

.testimonials-cta {
    font-size: 1.1rem;
    color: #002e5b;
    font-weight: 600;
}

.cta-icon-circle {
    width: 30px;
    height: 30px;
    background-color: #f68b1f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cta-link-text {
    color: #f68b1f;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
    transition: color 0.3s ease;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #f68b1f;
    /* Orange background for arrows */
    border-radius: 50%;
    background-size: 60%;
    /* Adjust arrow size inside circle */
    width: 40px;
    height: 40px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 1;
    /* Make always visible */
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    /* Reset bottom */
}

.carousel-control-prev {
    left: -5%;
    /* Move outside */
}

.carousel-control-next {
    right: -5%;
    /* Move outside */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.8;
}

.carousel-indicators {
    bottom: -50px;
    /* Position below cards */
}

.carousel-indicators [data-bs-target] {
    background-color: #f68b1f;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    border: none;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
    width: 14px;
    height: 14px;
    /* Slightly larger for active */
}

/* Ensure equal height for cards in carousel */
.carousel-item .row {
    display: flex;
}

.carousel-item .col-md-4 {
    display: flex;
}

.testimonial-card {
    width: 100%;
    /* Ensure card takes full width of column */
    /* Previous styles... */
}

/* Swiper Testimonials Section */
.testimonialSwiper {
    width: 100%;
    padding-bottom: 50px;
    /* Space for hidden pagination or just neatness */
}

.testimonialSwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.testimonialSwiper .testimonial-card {
    height: 100%;
    width: 100%;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background-color: #fdf8f5;
    /* Alternating color */
    margin: 20px;
    border-radius: 50px;
}

.awards-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: #002e5b;
    line-height: 1.3;
}

.award-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: #ff8a00;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.award-img-box {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.award-card:hover .award-img {
    transform: scale(1.1);
}

.award-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #002e5b;
    margin-bottom: 10px;
}

.award-desc {
    color: #1B2226;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Swiper Specific Styles */
.awardsSwiper {
    width: 100%;
    padding: 20px 0 50px 0;
}

.awardsSwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.awardsSwiper .award-card {
    width: 100%;
    height: 100%;
    margin: 0;
}

.award-img {
    pointer-events: none;
    user-select: none;
}

/* Learning Environment Showcase Section */
.environment-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.environment-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: #002e5b;
    line-height: 1.3;
}

.environmentSwiper {
    width: 100%;
    padding: 30px 0 60px 0;
}

.environmentSwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.environment-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: white;
    transition: transform 0.3s ease;
}

.environment-card:hover {
    transform: translateY(-5px);
}

.env-img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.env-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.environment-card:hover .env-img {
    transform: scale(1.05);
}

.environmentSwiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

.environmentSwiper .swiper-button-next,
.environmentSwiper .swiper-button-prev {
    color: var(--secondary-color);
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.environmentSwiper .swiper-button-next:after,
.environmentSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
    /* Contrast with previous section */
}

.faq-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: #002e5b;
    line-height: 1.3;
}

.accordion-item {
    border: none;
    background-color: #fdf8f5;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background-color: #fdf8f5;
    color: #002e5b;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: none !important;
    padding: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #fdf8f5;
    color: #ff8a00;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0);
}

.accordion-body {
    background-color: #fdf8f5;
    color: #1B2226;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 20px 20px 20px;
}

/* Custom Accordion Icon Color */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23002e5b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff8a00'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Scroll Animation Classes */

/* Premium Scroll Animation Classes */

/* 1. Fade In Up (for headings/text) */
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Scale Up (for images/badges) */
.scale-reveal {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scale-reveal.active {
    opacity: 1;
    transform: scale(1);
}

/* 3. Staggered Children (for cards) */
/* The parent (.stagger-row) doesn't animate, but triggers children */
.stagger-child {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.stagger-child.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Heading Adjustments */
@media (max-width: 768px) {

    .about-heading,
    .programs-heading,
    .wwd-heading,
    .wcu-heading,
    .features-heading,
    .hiw-heading,
    .testimonials-heading,
    .awards-heading,
    .faq-heading {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .wcu-card-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {

    .about-heading,
    .programs-heading,
    .wwd-heading,
    .wcu-heading,
    .features-heading,
    .hiw-heading,
    .testimonials-heading,
    .awards-heading,
    .faq-heading {
        font-size: 1.6rem !important;
    }

    .wcu-card-title {
        font-size: 1.8rem !important;
    }
}

/* Breadcrumb Section */
.breadcrumb-wrapper {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
    vertical-align: middle;
}

.breadcrumb-left-img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    transform: none;
    max-width: none;
    z-index: 1;
}

.breadcrumb-right-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    transform: none;
    max-width: none;
    z-index: 1;
}

.breadcrumb-left-img img,
.breadcrumb-right-img img {
    height: 100%;
    width: auto;
    max-width: none;
    display: block;
}

@media (max-width: 992px) {

    .breadcrumb-left-img,
    .breadcrumb-right-img {
        max-width: none;
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding: 60px 0;
    }

    .breadcrumb-content h1 {
        font-size: 2rem;
    }

    .breadcrumb-left-img,
    .breadcrumb-right-img {
        max-width: none;
        opacity: 0.4;
    }
}

/* Our Approach Section Styles */
.our-approach-section {
    background-color: #fff;
}

.text-orange {
    color: #ff8a00 !important;
}

.approach-list {
    border-left: 3px solid #f0f0f0;
    padding-left: 30px;
}

.approach-item {
    position: relative;
    padding-left: 20px;
}



/* Connect dots with line (optional refinement, using border-left on parent instead) */

.approach-image-collage {
    position: relative;
    padding: 50px 20px;
    /* Space for absolute elements */
}

.approach-img-secondary {
    z-index: 2;
    max-width: 60%;
}

.approach-stat-card {
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Circular Badge Animation */
.approach-circle-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: #ff8a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.4);
    animation: rotate-badge 20s linear infinite;
}

@keyframes rotate-badge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circle-text-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-text-wrapper svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .approach-image-collage {
        margin-top: 50px;
        padding: 0;
    }

    .approach-img-secondary {
        display: none !important;
        /* Hide on smaller screens if layout gets cramped, or adjust */
    }

    .approach-stat-card {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: -30px;
        margin-left: 20px !important;
    }

    .approach-circle-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        right: -10px;
    }
}


/* =========================================
   Our Approach Section Styles (New)
   ========================================= */

.approach-section {
    background-color: #fffbf7;
    /* Light warm background to match design */
    overflow: hidden;
    padding: 80px 0;
    margin: 20px;
    border-radius: 50px;
}

.approach-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.2;
    color: #002e5b;
}

/* Approach List Styles */
/* Approach Card Styles */
.approach-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
}

.approach-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.approach-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}



.approach-item h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #002e5b;
    margin-bottom: 15px;
}

.approach-item p {
    color: #1B2226;
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: var(--font-body);
    margin-bottom: 0;
}

/* Right Content - Images Wrapper */
.approach-images-wrapper {
    position: relative;
    padding-left: 0;
    height: 100%;
    min-height: 500px;
}

.approach-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    z-index: 1;
    transition: transform 0.3s ease;
}

.approach-img-top img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.approach-img-bottom {
    position: absolute;
    bottom: -50px;
    right: 0;
    left: auto;
    width: 65%;
    z-index: 2;
    transition: transform 0.3s ease;
}


.approach-img-bottom img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    border: 10px solid #fffbf7;
    /* Match background color for gap effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Badge */
.contact-badge-floating {
    position: absolute;
    top: 38%;
    /* Adjusted position */
    right: 0;
    /* Adjusted position */
    transform: translate(30%, -30%);
    /* Center on the edge */
    z-index: 3;
    width: 140px;
    height: 140px;
    background: #ff8a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #ffffff;
    /* Thicker border */
    box-shadow: 0 10px 20px rgba(255, 138, 0, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-badge-floating:hover {
    transform: scale(1.05);
}

.badge-circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin-text 12s linear infinite;
}

.badge-circle-text svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.badge-circle-text text {
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    fill: #ffffff;
}

.badge-arrow.badge-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8a00;
    font-size: 20px;
}

.badge-arrow.badge-center-circle i {
    transform: rotate(-45deg);
}

@keyframes spin-text {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Stats Card */
.project-stats-card {
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: 4;
    background: #002e5b;
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 46, 91, 0.3);
    max-width: 250px;
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.project-stats-card .stats-icon {
    width: 50px;
    height: 50px;
    background-color: #ff8a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stats-info h5 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.stats-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .approach-heading {
        font-size: 2.2rem;
    }

    .approach-images-wrapper {
        min-height: 400px;
        margin-top: 50px;
        padding-left: 0;
    }

    .approach-img-top {
        width: 60%;
    }

    .approach-img-bottom {
        width: 65%;
        left: 0;
    }

    .contact-badge-floating {
        width: 100px;
        height: 100px;
        top: 35%;
        right: 10%;
    }

    .badge-circle-text text {
        font-size: 11px;
    }

    .badge-arrow {
        font-size: 18px;
    }

    .project-stats-card {
        padding: 15px 20px;
        bottom: 20px;
    }

    .stats-info h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .approach-images-wrapper {
        min-height: 350px;
    }

    .approach-img-top {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }

    .approach-img-bottom {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .contact-badge-floating {
        top: 45%;
        right: 5%;
        width: 90px;
        height: 90px;
    }

    .project-stats-card {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 100%;
        animation: none;
        /* Disable float on small screens to prevent layout shifting issues */
    }
}

/* =========================================
   Planting the Seeds Section Styles
   ========================================= */

.planting-section {
    background-color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.planting-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.2;
    color: #002e5b;
}

.planting-description {
    color: #1B2226;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.planting-images-wrapper {
    position: relative;
    height: 600px;
    /* Adjust height as needed */
    width: 100%;
}

.planting-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    /* Adjusted width to be smaller */
    z-index: 1;
}

.planting-img-top img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.planting-img-bottom {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 55%;
    /* significantly smaller as requested */
    z-index: 2;
}

.planting-img-bottom img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    border: 10px solid #fff;
    /* White border to separate from top image */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.planting-dots {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 150px;
    height: 100px;
    z-index: 0;
    background-image: radial-gradient(#ff8a00 20%, transparent 20%);
    background-position: 0 0;
    background-size: 20px 20px;
    opacity: 0.6;
}

/* Happy Students Badge */
.student-badge-floating {
    position: absolute;
    top: 0;
    right: 0;
    background: #fffbf7;
    /* Light cream background */
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    z-index: 3;
    max-width: 220px;
}

.student-avatars {
    display: flex;
    align-items: center;
}

.student-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -15px;
    /* Overlap */
}

.student-avatars img:first-child {
    margin-left: 0;
}

.avatar-plus {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ff8a00;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    margin-left: -15px;
    font-size: 1.2rem;
}

.student-stats h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: #002e5b;
    margin: 0;
    line-height: 1.1;
}

.student-stats p {
    color: #1B2226;
    font-size: 0.95rem;
    margin: 5px 0 0 0;
    font-weight: 500;
}

.planting-feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.planting-feature-box:hover {
    transform: translateY(-5px);
    border-color: #ff8a00;
}

.planting-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background-color: rgba(255, 138, 0, 0.1);
    color: #ff8a00;
}

.planting-feature-box h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: #002e5b;
    margin-bottom: 10px;
}

.planting-feature-box p {
    font-size: 0.95rem;
    color: #1B2226;
    margin: 0;
    line-height: 1.5;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #1B2226;
    font-size: 1rem;
    line-height: 1.6;
}

.check-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #afc568;
    /* Green checkmark */
    font-size: 1.1rem;
}

/* Responsive Adjustments for Planting Section */
@media (max-width: 991px) {
    .planting-images-wrapper {
        height: 500px;
        margin-bottom: 40px;
    }

    .planting-img-top {
        width: 70%;
    }

    .planting-img-bottom {
        width: 75%;
    }

    .student-badge-floating {
        top: 20px;
        right: 0px;
        padding: 15px;
        width: 180px;
    }

    .student-stats h5 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .planting-images-wrapper {
        height: auto;
        min-height: 400px;
    }

    .planting-img-top {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }

    .planting-img-bottom {
        position: relative;
        width: 100%;
        bottom: 0;
        border: none;
    }

    .student-badge-floating {
        position: relative;
        top: 0;
        right: auto;
        margin-top: -30px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        transform: none;
        width: auto;
        display: inline-flex;
    }

    .planting-dots {
        display: none;
    }
}

/* =========================================
   Our Promise Section Styles
   ========================================= */

.promise-section {
    background-color: #fff;
    padding: 80px 0;
}

.promise-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: #002e5b;
    line-height: 1.3;
}

.promise-card {
    border-radius: 30px;
    padding: 40px 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.promise-card-light {
    background-color: #fffbf7;
    /* Light cream */
    border: 1px solid #f0f0f0;
}

.promise-card-blue {
    background-color: #002e5b;
    /* Dark Blue */
    color: white;
}

.promise-card-orange {
    background-color: #ff8a00;
    /* Orange */
    color: white;
}

.promise-content {
    position: relative;
    z-index: 2;
}

/* Our Promise Section Styles */
.promise-section {
    background-color: white;
}

.promise-card {
    border-radius: 20px;
    padding: 25px;
    /* Reduced from 30px */
    height: 100%;
    transition: transform 0.3s ease;
}

.promise-card:hover {
    transform: translateY(-5px);
}

.card-white {
    background-color: #fdf8f5;
    /* Light cream */
    display: flex;
    flex-direction: column;
}

.card-dark {
    background-color: #6559a3;
    /* Updated to match brand purple-blue */
    color: white;
    height: auto !important;
    min-height: 200px;
}

.card-light {
    background-color: #fdf8f5;
    height: auto !important;
    min-height: 200px;
    /* Reduced from 250px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-orange {
    background-color: #ff8a00;
    /* Orange */
    color: white;
}

.card-green {
    background-color: #afc568;
    color: white;
}

.promise-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #002e5b;
    display: flex;
    align-items: center;
}

.promise-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    color: #ff8a00;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-right: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-dark .promise-title,
.card-orange .promise-title,
.card-green .promise-title {
    color: white;
}

.card-dark .promise-title i,
.card-orange .promise-title i,
.card-green .promise-title i {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: none;
}

.promise-card:hover .promise-title i {
    transform: translateY(-2px) rotate(5deg);
    background-color: #ff8a00;
    color: white;
}

.card-dark:hover .promise-title i,
.card-orange:hover .promise-title i,
.card-green:hover .promise-title i {
    background-color: #ffffff;
    color: #ff8a00;
}


.promise-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #1B2226;
    margin-bottom: 20px;
}

.card-dark .promise-desc,
.card-orange .promise-desc,
.card-green .promise-desc {
    color: rgba(255, 255, 255, 0.9);
}

.big-percent {
    font-size: 3rem;
    color: #002e5b;
    margin-bottom: 5px;
}

.read-more-link {
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
}

/* Image Positioning */
.promise-img-bottom {
    text-align: center;
    margin-top: auto;
}

.promise-img-bottom img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Background icons removed per user request */


.promise-img-lion {
    text-align: right;
    margin-top: 20px;
}

.promise-img-lion img {
    max-width: 120px;
}

.icon-shapes {
    display: flex;
    gap: 5px;
}

.icon-shapes i {
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .card-bg-img {
        width: 40%;
    }
}

/* Our Story Section Styles */
.story-section {
    background-color: #fdf8f5;
    /* Light cream background */
    margin: 20px;
    border-radius: 50px;
    overflow: hidden;
    padding: 80px 0;
}

.story-image-wrapper {
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.story-content-wrapper {
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.story-desc {
    color: #1B2226;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Progress Bars */
.progress-container {
    position: relative;
}

.progress-label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #002e5b;
    font-size: 1.1rem;
}

.progress-percentage {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #002e5b;
}

.custom-progress {
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.custom-progress .progress-bar {
    background-color: #ff8a00;
    border-radius: 5px;
}

/* Decoration Circles */
.story-decoration {
    position: absolute;
    bottom: -80px;
    /* Moved further down to match design */
    right: -80px;
    /* Moved further right */
    width: 250px;
    /* Larger size */
    height: 250px;
    background: repeating-radial-gradient(circle,
            transparent,
            transparent 10px,
            rgba(255, 138, 0, 0.05) 10px,
            /* Use orange tint */
            rgba(255, 138, 0, 0.05) 11px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.btn-orange {
    background-color: #ff8a00;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-orange:hover {
    background-color: #e67e00;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .story-content-wrapper {
        padding: 60px 30px;
    }

    .story-image-wrapper {
        min-height: 300px;
    }
}

/* Our Story Section */


/* Contact Inquiry Section Styles */
.contact-inquiry-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-inquiry-content .badge-pill {
    background-color: #fff;
    border: 1px solid #eee;
    color: #333;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-inquiry-content .wwd-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002e5b;
    line-height: 1.2;
}

.contact-inquiry-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.help-card {
    border: 1px solid #f0f0f0;
}

.help-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form label {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-form .form-control {
    background-color: #f8f9fa;
    border: 1px solid transparent;
    font-size: 0.95rem;
    color: #495057;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: #fff;
    border-color: #ff8a00;
    box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.1);
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
    font-weight: 500;
}

.btn-orange {
    background-color: #ff8a00;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-orange:hover {
    background-color: #e67e00;
    color: white;
    transform: translateY(-2px);
}

.approach-section,
.planting-section,
.promise-section {
    padding: 80px 0;
}

/* Program Details Page Styles */
.program-details-section {
    padding: 80px 0;
    background-color: #fff;
}

/* Sidebar Styles */
.program-sidebar {
    position: sticky;
    top: 100px;
}

.program-info-widget {
    background-color: #fdf8f5;
    border-radius: 20px;
    padding: 0;
    /* Removed padding to allow title to sit flush */
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    /* Ensures child elements don't overflow corners */
}

.widget-title {
    background-color: #f68b1f;
    /* Orange from design */
    color: white;
    padding: 20px 30px;
    margin: 0;
    border-radius: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.program-info-list {
    list-style: none;
    padding: 20px 30px 30px 30px;
    /* Add padding here instead */
    margin: 0;
}

.program-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.program-info-list li:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 700;
    color: #002e5b;
}

.info-value {
    color: #1B2226;
    text-align: right;
}

/* Help Widget */
.program-help-widget {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: #002e5b;
    /* Dark Blue from screenshot */
    margin-bottom: 30px;
}

.help-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002e5b;
    /* Fallback color */
    opacity: 0.6;
}

.help-overlay {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.help-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #f68b1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.program-help-widget h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.program-help-widget p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Main Content Styles */
.program-main-img-wrapper {
    border-radius: 30px;
    overflow: hidden;
}

.program-main-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.program-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1B2226;
    margin-bottom: 20px;
}

.core-goals-section .program-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #002e5b;
}

.goal-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002e5b;
    margin-bottom: 10px;
}

.goal-card p {
    font-size: 0.95rem;
    color: #1B2226;
    line-height: 1.6;
}

.goal-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.goal-icon.orange-icon {
    background-color: #f68b1f;
}

.goal-icon.blue-icon {
    background-color: #002e5b;
}

/* Learning Goals Section */
.learning-goals-section .program-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #002e5b;
}

.text-dark-blue {
    color: #002e5b;
}

.program-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-check-list li {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    color: #1B2226;
    font-size: 1rem;
    line-height: 1.6;
}

.program-check-list li i {
    color: #f68b1f;
    margin-right: 12px;
    margin-top: 5px;
    /* Align with first line of text */
}

/* FAQ Accordion Styles */
.custom-accordion .accordion-item {
    border: none;
    background-color: transparent;
}

.custom-accordion .accordion-button {
    background-color: #fdf8f5;
    /* Light background for default/collapsed */
    color: #002e5b;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 15px !important;
    /* Force radius */
    padding: 20px 25px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #fdf8f5;
    /* Keep same bg or slightly darker if needed */
    color: #002e5b;
    box-shadow: none;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.custom-accordion .accordion-body {
    background-color: #fdf8f5;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 0 25px 25px 25px;
    color: #1B2226;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-number {
    margin-right: 10px;
    font-weight: 800;
}

/* Custom Accordion Icon */
.custom-accordion .accordion-button::after {
    background-image: none;
    /* Remove default Bootstrap icon */
    content: "\2b";
    /* Plus symbol */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f68b1f;
    /* Orange bg for plus */
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    /* Minus symbol */
    background-color: #002e5b;
    /* Dark blue bg for minus */
    transform: none;
    /* Remove default rotation */
}

/* Contact Page Styles */
.contact-card {
    background-color: #fdf8f5;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #ff8a00;
}

.contact-card p.text-muted {
    word-break: break-word;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-card .icon-circle {
    width: 60px;
    height: 60px;
    background-color: #ff8a00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.map-container iframe {
    border-radius: 20px;
}

/* Ensure consistent section padding */
.contact-info-section,
.contact-map-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-map-form-section {
    padding-top: 0;
    /* detailed tweak if they are adjacent */
}

/* Contact Form Input Styles */
.contact-form .form-control {
    background-color: #fff;
    border: 1px solid #dee2e6;
    color: #495057;
    font-size: 1rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-form .form-control:focus {
    background-color: #fff;
    border-color: #ff8a00;
    box-shadow: 0 0 0 0.25rem rgba(255, 138, 0, 0.25);
    outline: 0;
}

.contact-form .form-label {
    color: #002e5b;
    font-weight: 700;
    font-size: 1.1rem;
    /* Slightly larger heading-like font */
}

/* Preloader Styles */
.preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Contact Decoration */
.contact-inquiry-section {
    position: relative;
    overflow: hidden;
}

.contact-decoration {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transform: rotate(45deg);
}

.contact-decoration img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .contact-decoration {
        width: 200px;
        height: 200px;
        bottom: -30px;
        left: -30px;
    }
}

/* Breadcrumb Star Animations */
.breadcrumb-animations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.breadcrumb-animations i {
    position: absolute;
    font-size: 20px;
    opacity: 0.8;
}

/* Star Positions & Colors */
.star-1 {
    top: 20%;
    left: 15%;
    color: #ff8a00;
    /* Orange */
    font-size: 24px;
    animation: starFloat1 18s infinite linear;
    animation-delay: 0s;
}

.star-2 {
    top: 40%;
    left: 25%;
    color: #afc568;
    /* Green */
    font-size: 18px;
    animation: starFloat2 20s infinite linear;
    animation-delay: -5s;
}

.star-3 {
    top: 15%;
    right: 30%;
    color: #002e5b;
    /* Blue */
    font-size: 22px;
    animation: starFloat3 15s infinite linear;
    animation-delay: -2s;
}

.star-4 {
    top: 60%;
    right: 20%;
    color: #ed1c24;
    /* Red */
    font-size: 16px;
    animation: starFloat4 22s infinite linear;
    animation-delay: -8s;
}

.star-5 {
    bottom: 30%;
    left: 40%;
    color: #6559a3;
    /* Purple */
    font-size: 20px;
    animation: starFloat5 17s infinite linear;
    animation-delay: -3s;
}

.star-6 {
    top: 25%;
    left: 80%;
    color: #ff8a00;
    /* Orange */
    font-size: 14px;
    animation: starFloat6 19s infinite linear;
    animation-delay: -12s;
}

/* Star Float Animations */
@keyframes starFloat1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -20px) rotate(45deg);
    }

    50% {
        transform: translate(50px, 0px) rotate(90deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(45deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes starFloat2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-20px, 30px) rotate(-45deg);
    }

    50% {
        transform: translate(-40px, 10px) rotate(-90deg);
    }

    75% {
        transform: translate(-10px, -20px) rotate(-45deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes starFloat3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(0, -30px) rotate(120deg);
    }

    66% {
        transform: translate(0, 10px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes starFloat4 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(25px, 25px) rotate(90deg);
    }

    50% {
        transform: translate(0, 50px) rotate(180deg);
    }

    75% {
        transform: translate(-25px, 25px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes starFloat5 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(60px, 0) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes starFloat6 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-30px, 30px) rotate(-60deg);
    }

    50% {
        transform: translate(-60px, 0px) rotate(-120deg);
    }

    75% {
        transform: translate(-30px, -30px) rotate(-60deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Thank You Modal Styles */
#thankYouModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#thankYouModal.show {
    opacity: 1;
    visibility: visible;
}

.thank-you-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#thankYouModal.show .thank-you-content {
    transform: scale(1);
}

.thank-you-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.thank-you-content p {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Tick Animation */
.tick-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    /* Ensure it takes space */
    align-items: center;
    justify-content: center;
}

.tick-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: var(--primary-color);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.tick-check {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 5;
    stroke: var(--primary-color);
    fill: none;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.close-modal-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.close-modal-btn:hover {
    background-color: #c91017;
}

/* =========================================
   Sticky Book a Visit Button
   ========================================= */
.sticky-book-visit {
    position: fixed;
    right: 0;
    top: 50%;
    transform-origin: 100% 100%;
    transform: translateY(-100%) rotate(-90deg) translateX(50%);
    background: #ffffff;
    color: #ff8a00 !important;
    padding: 8px 18px;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
    text-decoration: none !important;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    border: 1px solid #e0e0e0;
    border-bottom: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.sticky-book-visit:hover {
    background: #ff8a00;
    color: #ffffff !important;
    box-shadow: 0 -8px 20px rgba(255, 138, 0, 0.3);
}

.sticky-book-visit i {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .sticky-book-visit {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

}

/* =========================================
   Learning Spaces Section Styles
   ========================================= */

.learning-spaces-section {
    background-color: #fffbf7;
}

.section-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: #002e5b;
    margin-bottom: 20px;
}

.space-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 100%;
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.space-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.space-card:hover .space-image img {
    transform: scale(1.1);
}

.space-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 46, 91, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.space-card:hover .space-overlay {
    opacity: 1;
}

.space-overlay i {
    color: #ffffff;
    font-size: 3rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.space-info {
    padding: 25px;
    text-align: center;
}

.space-info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: #002e5b;
    margin-bottom: 12px;
}

.space-info p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Specific colors for icons or cards if needed */
.space-card:nth-child(1) .space-overlay {
    background: rgba(255, 138, 0, 0.3);
}

/* Orange */
.space-card:nth-child(2) .space-overlay {
    background: rgba(175, 197, 104, 0.3);
}

/* Green */
.space-card:nth-child(3) .space-overlay {
    background: rgba(0, 46, 91, 0.3);
}

/* Blue */
.space-card:nth-child(4) .space-overlay {
    background: rgba(231, 76, 60, 0.3);
}

/* Red/Coral */
.space-card:nth-child(5) .space-overlay {
    background: rgba(155, 89, 182, 0.3);
}

/* Purple */
/* About Us - Purpose Section (Matching Programs Section Style) */
.purpose-section {
    background-color: #fdf8f5;
    padding: 80px 0;
    margin: 20px;
    border-radius: 50px;
    position: relative;
}

/* About Us - Approach Section (Matching Programs Section Style) */
.approach-section-simple {
    background-color: #f8fcfd;
    /* Slightly different color for variety, or keep same? User said same. */
    /* Let's keep it very similar to Programs section but maybe a blue tint if appropriate? No, user said same as programs. */
    background-color: #fdf8f5;
    padding: 80px 0;
    margin: 20px;
    border-radius: 50px;
    position: relative;
}

/* Teacher Training / Curriculum Section */
.curriculum-section {
    padding: 80px 0;
    background-color: #fff;
}

.curriculum-section .section-heading {
    color: #002e5b;
    font-weight: 700;
}

.curriculum-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s ease;
    text-align: left;
}

.curriculum-card:hover {
    transform: translateY(-5px);
    border-color: #afc568;
    /* Theme Green */
}

.icon-blue-bg {
    width: 60px;
    height: 60px;
    background-color: #e7e4f1;
    /* Light Blue-Purple bg */
    color: #6559a3;
    /* Theme Blue icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-green-bg {
    width: 60px;
    height: 60px;
    background-color: #f1f4e7;
    /* Light Green bg */
    color: #afc568;
    /* Theme Green icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-orange-bg {
    width: 60px;
    height: 60px;
    background-color: #fff4e6;
    /* Light Orange bg */
    color: #ff8a00;
    /* Theme Orange icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-theme-green {
    background-color: #afc568;
    color: white !important;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(175, 197, 104, 0.2);
}

.btn-theme-green:hover {
    background-color: #9db25a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(175, 197, 104, 0.3);
}

/* Refined Thank You Modal - Brand Aligned */
#thankYouModal .modal-content {
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

#thankYouModal .modal-title {
    color: #002e5b;
    /* Brand Dark Blue */
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 2rem;
}

#thankYouModal .lead {
    font-family: 'Quicksand', sans-serif;
    color: #555;
    font-weight: 500;
}

#thankYouModal .success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #eaf4c5 0%, #afc568 100%);
    /* Brand Green Gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(175, 197, 104, 0.3);
}

#thankYouModal .success-icon-wrapper i {
    font-size: 3.5rem;
    color: white;
}

#thankYouModal .btn-brand-orange {
    background-color: #ff8a00;
    /* Brand Orange */
    color: white !important;
    border: none;
    padding: 0.8rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
}

#thankYouModal .btn-brand-orange:hover {
    transform: scale(1.05);
    background-color: #e67e00;
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.4);
}