html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fredoka', sans-serif;
}

body {
    background: #f5f5f5;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffaa01 0%, #ff8c00 100%);
    /* Vibrant Gradient background */
    color: white;
    overflow: hidden;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    gap: 50px;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 120px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    padding: 2px 5px;
}

.logo-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    letter-spacing: 0.3px;
}

.logo-name-accent {
    color: #ffd94a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.nav-links li {
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-links li:hover {
    opacity: 1;
}

/* Anchor links inside nav — inherit all styling */
.nav-links li a {
    color: inherit;
    text-decoration: none;
    font: inherit;
    display: block;
}

.nav-links .active {
    font-weight: 600;
    opacity: 1;
    border-bottom: 3px solid #ffdd59;
    /* Yellow underline */
    padding-bottom: 5px;
}

.contact-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* HERO CONTENT */

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

.brand-text {
    color: #ffd94a;
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bubble-btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bubble-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bubble-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-primary {
    background: #1a1a1a;
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: scale(1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-watch {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px 8px 12px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.btn-watch:hover {
    transform: scale(1) !important;
}

.btn-watch .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    color: #5D005D;
    font-size: 12px;
}

/* HERO IMAGE */

.hero-image-wrapper {
    position: relative;
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    z-index: 10;

    /* Stamped/Scalloped Aesthetic Border */
    --r: 25px;
    /* radius of the scallops */
    --g: #000 98%, #0000;
    -webkit-mask:
        radial-gradient(var(--r) at 100% 50%, var(--g)) 0 50% / var(--r) calc(2*var(--r)) repeat-y,
        radial-gradient(var(--r) at 0 50%, var(--g)) 100% 50% / var(--r) calc(2*var(--r)) repeat-y,
        radial-gradient(var(--r) at 50% 100%, var(--g)) 50% 0 / calc(2*var(--r)) var(--r) repeat-x,
        radial-gradient(var(--r) at 50% 0, var(--g)) 50% 100% / calc(2*var(--r)) var(--r) repeat-x,
        linear-gradient(#000 0 0) center / calc(100% - 2*var(--r)) calc(100% - 2*var(--r)) no-repeat;
    mask:
        radial-gradient(var(--r) at 100% 50%, var(--g)) 0 50% / var(--r) calc(2*var(--r)) repeat-y,
        radial-gradient(var(--r) at 0 50%, var(--g)) 100% 50% / var(--r) calc(2*var(--r)) repeat-y,
        radial-gradient(var(--r) at 50% 100%, var(--g)) 50% 0 / calc(2*var(--r)) var(--r) repeat-x,
        radial-gradient(var(--r) at 50% 0, var(--g)) 50% 100% / calc(2*var(--r)) var(--r) repeat-x,
        linear-gradient(#000 0 0) center / calc(100% - 2*var(--r)) calc(100% - 2*var(--r)) no-repeat;

    animation: floatAesthetic 10s ease-in-out infinite;
}

/* Glossy Shine Effect */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 60%);
    transform: rotate(25deg);
    animation: glossyShine 12s infinite linear;
    pointer-events: none;
}

/* Subtle Glow Behind */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: #ffdd59;
    filter: blur(50px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
}

@keyframes glossyShine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes floatAesthetic {

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

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

    66% {
        transform: translate(-10px, -15px) rotate(-1deg);
    }
}

.hero-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

/* FLOATING ELEMENTS */

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.25);
    font-size: 32px;
}

.rocket {
    top: 15%;
    left: 5%;
    font-size: 48px;
    color: #ffdd59;
    animation: floatRocket 12s linear infinite;
    transform: rotate(45deg);
}

@keyframes floatRocket {
    0% {
        transform: translate(-100px, 100px) rotate(45deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(120vw, -120vh) rotate(45deg);
        opacity: 0;
    }
}

.star-1 {
    top: 20%;
    left: 40%;
    animation: pulseStar 4s infinite;
    color: #ffd94a;
    font-size: 24px;
}

.star-2 {
    top: 60%;
    left: 10%;
    animation: pulseStar 6s infinite 1s;
    color: #ffd94a;
    font-size: 18px;
}

@keyframes pulseStar {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
        text-shadow: 0 0 15px #ffd94a;
    }
}

.cloud-1 {
    top: 10%;
    left: 80%;
    font-size: 50px;
    animation: floatHorizontal 25s linear infinite;
    opacity: 0.4;
}

.cloud-2 {
    top: 70%;
    left: 50%;
    font-size: 40px;
    animation: floatHorizontal 18s linear infinite reverse;
    opacity: 0.3;
}

@keyframes floatHorizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100px);
    }
}

.planet-1 {
    top: 30%;
    left: 85%;
    font-size: 45px;
    color: #3de89a;
    opacity: 0.4;
    animation: orbit 15s linear infinite;
}

.moon {
    top: 80%;
    left: 15%;
    font-size: 35px;
    color: #f0f0f0;
    opacity: 0.3;
    animation: orbit 20s linear infinite reverse;
}

@keyframes orbit {
    0% {
        transform: rotate(0) translate(20px) rotate(0);
    }

    100% {
        transform: rotate(360deg) translate(20px) rotate(-360deg);
    }
}

/* STAR DECORATION */

.star {
    position: absolute;
    left: 10%;
    top: 35%;
    width: 60px;
    height: 60px;
    background: #ffdd59;
    border-radius: 15px;
    transform: rotate(45deg);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
    /* Outer ring effect */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: rotate(45deg) translateY(-20px);
    }
}

/* BOTTOM WAVE */

.bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: white;
    /* Sawtooth pattern */
    clip-path: polygon(0% 100%, 0% 0%,
            2% 50%, 4% 0%,
            6% 50%, 8% 0%,
            10% 50%, 12% 0%,
            14% 50%, 16% 0%,
            18% 50%, 20% 0%,
            22% 50%, 24% 0%,
            26% 50%, 28% 0%,
            30% 50%, 32% 0%,
            34% 50%, 36% 0%,
            38% 50%, 40% 0%,
            42% 50%, 44% 0%,
            46% 50%, 48% 0%,
            50% 50%, 52% 0%,
            54% 50%, 56% 0%,
            58% 50%, 60% 0%,
            62% 50%, 64% 0%,
            66% 50%, 68% 0%,
            70% 50%, 72% 0%,
            74% 50%, 76% 0%,
            78% 50%, 80% 0%,
            82% 50%, 84% 0%,
            86% 50%, 88% 0%,
            90% 50%, 92% 0%,
            94% 50%, 96% 0%,
            98% 50%, 100% 0%,
            100% 100%);
}

/* ============================================
   OFFER SECTION - "WHAT WE OFFER FOR STUDENTS"
   ============================================ */

.offer-section {
    padding: 70px 80px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    width: 100%;
    --s: 20px;
    --mask: radial-gradient(circle at 50% 0%, #0000 var(--s), #000 calc(var(--s) + 1px)) top/calc(2*var(--s)) 100%,
        radial-gradient(circle at 50% 100%, #0000 var(--s), #000 calc(var(--s) + 1px)) bottom/calc(2*var(--s)) 100%,
        radial-gradient(circle at 0% 50%, #0000 var(--s), #000 calc(var(--s) + 1px)) left/100% calc(2*var(--s)),
        radial-gradient(circle at 100% 50%, #0000 var(--s), #000 calc(var(--s) + 1px)) right/100% calc(2*var(--s));
    -webkit-mask: var(--mask);
    mask: var(--mask);
    -webkit-mask-repeat: repeat;
    mask-repeat: repeat;
    max-width: 1100px;
    margin: 20px auto 0;
    box-shadow: 0 0 0 2px #e0e0e0;
}

/* ---- LEFT: IMAGE SIDE ---- */
.offer-image-side {
    flex: 0 0 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.offer-image-blob {
    width: 100%;
    /* Clean rounded rectangle exactly like the screenshot */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    background: #f5f5f5;
}

.offer-image-blob img {
    width: 100%;
    display: block;
    object-fit: cover;
    /* Portrait aspect ratio matching the screenshot */
    aspect-ratio: 3 / 2.8;
    transition: opacity 0.3s ease;
}

/* Carousel Dots */
.offer-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dot.active {
    background: #5D005D;
    width: 24px;
    border-radius: 10px;
}

/* ---- RIGHT: CONTENT SIDE ---- */
.offer-content {
    flex: 1;
    padding-top: 10px;
}

.offer-title {
    font-size: 44px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-subtitle {
    font-size: 13.5px;
    color: #777;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 360px;
}

/* ---- PILLS AREA: Staggered organic layout ---- */
.offer-pills-area {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offer-pill-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

/* Row staggering: Row1 starts normal, Row2 slightly indented, Row3 slightly left */
.row-r1 {
    margin-left: 10px;
}

.row-r2 {
    margin-left: 0px;
    gap: 8px;
}

.row-r3 {
    margin-left: 5px;
}

/* ---- BASE PILL ---- */
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: default;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Green pill - Interactive Lessons */
.pill-green {
    background: #3de89a;
    color: #0b3d20;
}

/* White/grey pill - Progress Tracking For Parents */
.pill-white {
    background: #f0f0f0;
    color: #444;
    border: 1.5px solid #ddd;
    font-size: 12px;
}

/* Orange/amber pill - Safe, Ad-Free Environment */
.pill-orange {
    background: #ffc928;
    color: #7a4a00;
}

/* Teal/mint pill - Learning Games & Quizzes */
.pill-teal {
    background: #c8f5e0;
    color: #1a5940;
}

/* ---- AVATAR (circular image beside pills) ---- */
.pill-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    margin-left: 4px;
}

.pill-avatar-top {
    width: 70px;
    height: 70px;
}

.pill-avatar img,
.pill-avatar-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   DISCOVER SECTION
   ============================================ */

.discover-section {
    position: relative;
    padding: 70px 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 20px;
}

/* ---- DECORATIVE SHAPES ---- */
.disc-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Small green dot bottom-right */
.disc-deco-green-dot {
    width: 28px;
    height: 28px;
    bottom: 40px;
    right: 60px;
    background: #3de89a;
}

/* ---- LEFT: CONTENT ---- */
.discover-content {
    flex: 1;
    max-width: 520px;
}

.discover-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.discover-subtitle {
    font-size: 13.5px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

/* About Us green button */
.disc-btn {
    background: #e9bf04;
    border: none;
    padding: 11px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #090a0a;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 30px;
    font-family: 'Fredoka', sans-serif;
}

.disc-btn:hover {
    transform: scale(1) !important;
    box-shadow: none;
}

/* Stats */
.disc-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.disc-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.disc-stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.disc-stat-label {
    font-size: 12px;
    color: #888;
}

/* Student avatars */
.disc-students {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.disc-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    margin-left: -10px;
    flex-shrink: 0;
}

.disc-avatars .disc-avatar:first-child {
    margin-left: 0;
}

.disc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disc-student-text {
    font-size: 12.5px;
    color: #666;
    font-style: italic;
}

/* ---- RIGHT: IMAGE ---- */
.discover-image-side {
    flex: 0 0 380px;
}

.discover-img-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
    background: #f0f0f0;
}

.discover-img-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3.5;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

/* ---- TESTIMONIALS REDESIGN (Screenshot Match) ---- */
.testimonials-redesign {
    position: relative;
    padding: 120px 20px 100px;
    background: #000000;
    color: white;
    text-align: center;
    overflow: hidden;
}

.testi-overlay-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.testi-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.testimonials-redesign .testi-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.testimonials-redesign .testi-subtitle {
    font-size: 16px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Stack Container */
.testi-stack-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto;
    perspective: 1500px;
    z-index: 5;
}

/* Individual Stacked Card */
.testi-card-stack {
    position: absolute;
    top: 0;
    left: 50%;
    width: 380px;
    margin-left: -190px;
    height: 420px;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    user-select: none;
    transform-origin: bottom center;
}

.testi-card-inner {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.testi-card-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.testi-card-stack .testi-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
    font-style: normal;
}

.testi-card-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-card-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testi-card-user .testi-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.testi-card-user .testi-role {
    font-size: 13px;
    color: #777;
}

/* Fan State Positions */
/* These will be assigned via JS based on current active index */
.testi-card-stack.p-0 {
    transform: translate3d(-350px, 40px, -200px) rotate(-25deg);
    opacity: 0.3;
    z-index: 1;
}

.testi-card-stack.p-1 {
    transform: translate3d(-180px, 20px, -100px) rotate(-12deg);
    opacity: 0.6;
    z-index: 2;
}

.testi-card-stack.p-2 {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.testi-card-stack.p-3 {
    transform: translate3d(180px, 20px, -100px) rotate(12deg);
    opacity: 0.6;
    z-index: 2;
}

.testi-card-stack.p-4 {
    transform: translate3d(350px, 40px, -200px) rotate(25deg);
    opacity: 0.3;
    z-index: 1;
}

/* Hidden cards for infinite loop */
.testi-card-stack.hidden-left {
    transform: translate3d(-500px, 100px, -400px) rotate(-45deg);
    opacity: 0;
    pointer-events: none;
}

.testi-card-stack.hidden-right {
    transform: translate3d(500px, 100px, -400px) rotate(45deg);
    opacity: 0;
    pointer-events: none;
}

/* Pager Styling */
.testi-pager {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.pager-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pager-dot.active {
    background: #fff;
    box-shadow: 0 0 10px #fff;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .testi-card-stack {
        width: 300px;
        margin-left: -150px;
        height: 380px;
    }

    .testi-card-stack.p-0 {
        transform: translate3d(-150px, 30px, -150px) rotate(-15deg);
    }

    .testi-card-stack.p-4 {
        transform: translate3d(150px, 30px, -150px) rotate(15deg);
    }

    .testi-card-stack.p-1 {
        transform: translate3d(-80px, 15px, -80px) rotate(-8deg);
    }

    .testi-card-stack.p-3 {
        transform: translate3d(80px, 15px, -80px) rotate(8deg);
    }
}

/* Side cards — partially clipped, smaller, greyed */
.testi-card-side {
    width: 240px;
    min-height: 240px;
    opacity: 0.55;
    transform: scale(0.9);
    filter: grayscale(0.2);
}

/* Center card — full size, vivid */
.testi-card-center {
    width: 320px;
    min-height: 260px;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.testi-quote {
    font-size: 14px;
    color: #333;
    line-height: 1.65;
    font-style: italic;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    display: block;
}

.testi-role {
    font-size: 12px;
    color: #888;
    display: block;
}

/* Avatar in side cards */
.testi-card-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f0f0f0;
}

.testi-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Author row in center card */
.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.testi-avatar-sm {
    width: 44px;
    height: 44px;
}

/* ---- NAV BUTTONS ---- */
.testi-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.testi-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Fredoka', sans-serif;
}

.testi-prev {
    background: #2b2b2b;
    color: white;
}

.testi-next {
    background: #3de89a;
    color: #0b3d20;
    box-shadow: 0 4px 14px rgba(61, 232, 154, 0.4);
}

.testi-nav-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   CTA SECTION — "YOUR CHILD'S LEARNING JOURNEY STARTS TODAY!"
   ============================================ */

.cta-section {
    position: relative;
    background: #ffaa01;
    text-align: center;
    padding: 70px 60px;
    overflow: hidden;

    /* Scalloped mask on top and bottom */
    --cs: 18px;
    --cmask: radial-gradient(circle at 50% 0%, #0000 var(--cs), #000 calc(var(--cs) + 1px)) top / calc(2*var(--cs)) 100%,
        radial-gradient(circle at 50% 100%, #0000 var(--cs), #000 calc(var(--cs) + 1px)) bottom / calc(2*var(--cs)) 100%;
    -webkit-mask: var(--cmask);
    mask: var(--cmask);
    -webkit-mask-repeat: repeat-x;
    mask-repeat: repeat-x;
}

/* ---- DECORATIVE ELEMENTS ---- */
.cta-deco {
    position: absolute;
    pointer-events: none;
}

/* Pink blob on the left */
.cta-blob-left {
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
}

/* Wavy lines on the right */
.cta-wave-right {
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

/* ---- CONTENT ---- */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    font-family: 'Fredoka', sans-serif;
}

.cta-subtitle {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 34px;
    font-family: 'Fredoka', sans-serif;
}

/* ---- ACTIONS ROW: button + social proof ---- */
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* Green "Free Admission" button */
.cta-btn-primary {
    background: #141414;
    border: none;
    padding: 13px 34px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;

    white-space: nowrap;
}

.cta-btn-primary:hover {
    transform: scale(1) !important;
    box-shadow: none;
}

/* ---- SOCIAL PROOF: avatars + text ---- */
.cta-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.cta-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid rgba(255, 255, 255, 0.7);
    margin-left: -10px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.cta-avatars .cta-avatar:first-child {
    margin-left: 0;
}

.cta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-social-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    text-align: left;
    font-family: 'Fredoka', sans-serif;
}

.cta-social-text strong {
    color: #ffffff;
    font-weight: 700;
}

/* ============================================
   ENQUIRE NOW POPUP MODAL
   ============================================ */

/* Overlay backdrop */
.enquire-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 0, 40, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.enquire-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ---- VIDEO MODAL (Enjoy Class) ---- */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-card {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.85) translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal-overlay.active .video-modal-card {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Card */
.enquire-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    width: 100%;
    max-width: 520px;
    padding: 0;
    box-shadow: 0 24px 60px rgba(80, 0, 100, 0.35);
    transform: scale(0.88) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.enquire-overlay.active .enquire-card {
    transform: scale(1) translateY(0);
}

/* Close button */
.enquire-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 15px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease;
}

.enquire-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1) !important;
}

/* Header */
.enquire-header {
    background: #ffaa01;
    padding: 26px 30px 22px;
    color: white;
}

.enquire-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Fredoka', sans-serif;
}

.enquire-header p {
    font-size: 13px;
    opacity: 0.85;
    font-family: 'Fredoka', sans-serif;
}

/* Form */
.enquire-form {
    padding: 24px 30px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.enquire-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.enquire-field-full {
    grid-column: 1 / -1;
}

.enquire-field label {
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    font-family: 'Fredoka', sans-serif;
}

.enquire-field input,
.enquire-field textarea,
.enquire-field select {
    border: 1.8px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: #333;
    font-family: 'Fredoka', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fafafa;
    resize: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.enquire-field input:focus,
.enquire-field textarea:focus,
.enquire-field select:focus {
    border-color: #9a009a;
    box-shadow: 0 0 0 3px rgba(154, 0, 154, 0.1);
    background-color: #fff;
}

/* Submit button */
.enquire-submit {
    grid-column: 1 / -1;
    background: #ffaa01;
    border: none;
    padding: 13px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;
    margin-top: 4px;
}

.enquire-submit:hover {
    transform: scale(1) !important;
    box-shadow: none;
}

/* ============================================
   SHARED SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.highlight-text {
    color: #ff8c00;
    position: relative;
}

.section-subtitle {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background: #fff;
    padding: 0;
    position: relative;
    z-index: 10;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
    padding: 8px 16px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff3d6, #ffe4a0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff8c00;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-number {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.trust-label {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: #e8e8e8;
    flex-shrink: 0;
}

/* ============================================
   WHY PARENTS CHOOSE US
   ============================================ */

.why-choose-section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffaa01, #ff8c00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff3d6, #ffe4a0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ff8c00;
    margin-bottom: 18px;
}

.why-card:nth-child(2) .why-card-icon {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.why-card:nth-child(3) .why-card-icon {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.why-card:nth-child(4) .why-card-icon {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    color: #c62828;
}

.why-card:nth-child(5) .why-card-icon {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.why-card:nth-child(6) .why-card-icon {
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    color: #00838f;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   SCIENCE BEHIND OUR APPROACH
   ============================================ */

.science-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    overflow: hidden;
}

.science-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.science-hero-stat {
    flex: 0 0 260px;
    text-align: center;
}

.science-stat-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00, #ffaa01);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 60px rgba(255, 140, 0, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(255, 140, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 80px rgba(255, 140, 0, 0.5);
    }
}

.stat-big {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-top: 4px;
}

.science-stat-caption {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

.science-content {
    flex: 1;
}

.science-content .section-title {
    color: #fff;
}

.science-content .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.science-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.science-pillar {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 16px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.science-pillar:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.pillar-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff8c00, #ffaa01);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.pillar-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.pillar-text p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.science-authority {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 14px 20px;
    background: rgba(255, 140, 0, 0.12);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 14px;
}

.science-authority i {
    font-size: 22px;
    color: #ffaa01;
    flex-shrink: 0;
}

.science-authority span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.science-authority strong {
    color: #ffaa01;
}

/* ============================================
   CIRCLE VALUES
   ============================================ */

.values-section {
    padding: 80px 60px;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 24px 12px;
    border-radius: 20px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.value-letter {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00, #ffaa01);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 14px;
}

.value-item:nth-child(2) .value-letter {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
}

.value-item:nth-child(3) .value-letter {
    background: linear-gradient(135deg, #1565c0, #42a5f5);
}

.value-item:nth-child(4) .value-letter {
    background: linear-gradient(135deg, #7b1fa2, #ab47bc);
}

.value-item:nth-child(5) .value-letter {
    background: linear-gradient(135deg, #c62828, #ef5350);
}

.value-item:nth-child(6) .value-letter {
    background: linear-gradient(135deg, #00838f, #26c6da);
}

.value-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.3;
}

.value-item p {
    font-size: 11.5px;
    color: #888;
    line-height: 1.5;
}

/* ============================================
   OUR APPROACH — 3-STAGE JOURNEY
   ============================================ */

.approach-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, #fff9f0 0%, #fff 100%);
}

.approach-timeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-card {
    flex: 1;
    max-width: 340px;
    background: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
}

.approach-card-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.approach-card-1 .approach-card-badge {
    background: #e8f5e9;
    color: #2e7d32;
}

.approach-card-2 .approach-card-badge {
    background: #e3f2fd;
    color: #1565c0;
}

.approach-card-3 .approach-card-badge {
    background: #fce4ec;
    color: #c62828;
}

.approach-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.approach-card-1 .approach-card-icon {
    background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
    color: #2e7d32;
}

.approach-card-2 .approach-card-icon {
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
    color: #1565c0;
}

.approach-card-3 .approach-card-icon {
    background: linear-gradient(135deg, #fff3e0, #ffcc80);
    color: #e65100;
}

.approach-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.approach-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.approach-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.approach-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
}

.approach-highlights li i {
    color: #ff8c00;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.approach-connector {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 8px;
    align-self: center;
}

.connector-line {
    width: 20px;
    height: 2px;
    background: #ddd;
}

.connector-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffaa01;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================
   LEARNING OUTCOMES
   ============================================ */

.outcomes-section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.outcome-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.outcome-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.outcome-card:nth-child(1) .outcome-icon {
    background: linear-gradient(135deg, #fff3d6, #ffe082);
    color: #f57f17;
}

.outcome-card:nth-child(2) .outcome-icon {
    background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
    color: #2e7d32;
}

.outcome-card:nth-child(3) .outcome-icon {
    background: linear-gradient(135deg, #fce4ec, #f48fb1);
    color: #c62828;
}

.outcome-card:nth-child(4) .outcome-icon {
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
    color: #1565c0;
}

.outcome-card:nth-child(5) .outcome-icon {
    background: linear-gradient(135deg, #f3e5f5, #ce93d8);
    color: #7b1fa2;
}

.outcome-card:nth-child(6) .outcome-icon {
    background: linear-gradient(135deg, #e0f7fa, #80deea);
    color: #00838f;
}

.outcome-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.outcome-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

.outcomes-cta {
    text-align: center;
}

/* ============================================
   SAFETY & WELLBEING
   ============================================ */

.safety-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0f5 100%);
}

.safety-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.safety-text {
    flex: 1;
}

.safety-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #7b1fa2;
    margin-bottom: 20px;
}

.safety-badge i {
    font-size: 14px;
}

.safety-text .section-title {
    text-align: left;
}

.safety-text .section-subtitle {
    text-align: left;
    margin: 0 0 30px 0;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.safety-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14.5px;
    color: #444;
}

.safety-feature i {
    color: #4caf50;
    font-size: 18px;
    flex-shrink: 0;
}

.safety-image {
    flex: 0 0 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
}

.safety-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3.5;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-section {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item-large {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 80px 60px;
    background: #fafafa;
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    font-family: 'Fredoka', sans-serif;
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    transform: none !important;
    box-shadow: none !important;
}

.faq-icon {
    font-size: 13px;
    color: #999;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: #ff8c00;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   CTA PHONE LINK
   ============================================ */

.cta-phone {
    margin-top: 24px;
}

.cta-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-phone-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FOOTER TAGLINE
   ============================================ */

.footer-tagline {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    margin-top: -8px;
}

/* ============================================
   PURPLE PILL VARIANT
   ============================================ */

.pill-purple {
    background: #e1bee7;
    color: #6a1b9a;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #ffffff;
    color: #555;
    font-family: 'Fredoka', sans-serif;
    border-top: 1px solid #e8e8e8;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 60px 36px;
}

/* ---- Brand (left) ---- */
.footer-brand {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    border-radius: 7px;
    object-fit: contain;
}

.footer-logo-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.footer-logo-accent {
    color: #ffd94a;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-icon:hover {
    border-color: #ffd94a;
    color: #ffd94a;
    background: rgba(255, 217, 74, 0.08);
}

/* ---- Nav columns (middle) ---- */
.footer-nav {
    flex: 1;
    display: flex;
    gap: 48px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer-col-title-gap {
    margin-top: 22px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #343334;
}

/* ---- Contact (right) ---- */
.footer-contact {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #444;
    font-size: 13px;
}

.footer-contact-icon--green {
    background: #e3e7e3;
    color: #2a2a2a;
}

.footer-contact-item div p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* ---- Bottom bar ---- */
.footer-bottom {
    border-top: 1px solid #e8e8e8;
    text-align: center;
    padding: 14px 60px;
    font-size: 12px;
    color: #999;
}

/* ============================================
   HAMBURGER BUTTON
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    box-shadow: none;
}

.hamburger:hover {
    transform: none !important;
    box-shadow: none !important;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Animate to X when open */
.hamburger.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile enquire button inside the nav list — hidden on desktop */
.mobile-enquire-li {
    display: none;
}

.mobile-enquire-btn {
    width: 100%;
    text-align: center;
    margin-top: 4px;
}

/* ============================================
   TABLET — ≤ 1024px
   ============================================ */

@media (max-width: 1024px) {

    /* --- NAVBAR --- */
    .navbar {
        padding: 20px 40px;
    }

    /* --- HERO --- */
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-image-wrapper {
        max-width: 600px;
    }

    /* --- TRUST BAR --- */
    .trust-bar-inner {
        flex-wrap: wrap;
        gap: 16px;
        padding: 24px 30px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        flex: 1 1 45%;
        justify-content: flex-start;
    }

    /* --- SECTION HEADERS --- */
    .section-title {
        font-size: 34px;
    }

    /* --- WHY CHOOSE --- */
    .why-choose-section {
        padding: 60px 40px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- APPROACH --- */
    .approach-section {
        padding: 60px 40px;
    }

    .approach-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .approach-card {
        max-width: 500px;
        width: 100%;
    }

    .approach-connector {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    /* --- SCIENCE --- */
    .science-section {
        padding: 60px 40px;
    }

    .science-inner {
        flex-direction: column;
        text-align: center;
    }

    .science-content .section-header {
        text-align: center !important;
    }

    .science-pillars {
        grid-template-columns: 1fr 1fr;
    }

    /* --- VALUES --- */
    .values-section {
        padding: 60px 40px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* --- OFFER SECTION --- */
    .offer-section {
        padding: 50px 40px;
        gap: 30px;
    }

    .offer-image-side {
        flex: 0 0 280px;
    }

    .offer-title {
        font-size: 34px;
    }

    /* --- OUTCOMES --- */
    .outcomes-section {
        padding: 60px 40px;
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- SAFETY --- */
    .safety-section {
        padding: 60px 40px;
    }

    .safety-image {
        flex: 0 0 300px;
    }

    /* --- GALLERY --- */
    .gallery-section {
        padding: 60px 40px;
    }

    /* --- FAQ --- */
    .faq-section {
        padding: 60px 40px;
    }

    /* --- FOOTER --- */
    .footer-inner {
        padding: 40px 40px 30px;
        gap: 32px;
    }
}

/* ============================================
   MOBILE — ≤ 768px
   ============================================ */

@media (max-width: 768px) {

    /* ---- NAVBAR ---- */
    .navbar {
        padding: 16px 20px;
        flex-wrap: wrap;
        position: relative;
        z-index: 100;
    }

    /* Show hamburger, hide desktop enquire button */
    .hamburger {
        display: flex;
    }

    .desktop-enquire-btn {
        display: none;
    }

    /* Mobile nav — hidden by default, slides in from top */
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        background: #e89a01;
        border-radius: 16px;
        padding: 12px 0 16px;
        margin-top: 12px;
        order: 3;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

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

    .nav-links li a {
        display: block;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 600;
        color: white;
        opacity: 1;
    }

    .nav-links .active {
        border-bottom: none;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 8px;
    }

    /* Show enquire inside mobile nav */
    .mobile-enquire-li {
        display: block;
        padding: 10px 20px;
        border-bottom: none !important;
    }

    /* ---- HERO ---- */
    .hero {
        padding-bottom: 80px;
    }

    .hero-content {
        margin-top: 30px;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 30px;
        letter-spacing: 0.5px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-watch {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 90%;
        border-width: 5px;
        border-radius: 40% 40% 40% 40% / 55% 55% 45% 45%;
    }

    .star {
        width: 36px;
        height: 36px;
        left: 4%;
        top: 22%;
    }

    /* ---- TRUST BAR ---- */
    .trust-bar-inner {
        flex-direction: column;
        gap: 20px;
        margin-top: -30px;
        padding: 24px 20px;
    }

    .trust-item {
        justify-content: flex-start;
        width: 100%;
    }

    .trust-divider {
        display: none;
    }

    /* ---- SECTION HEADERS ---- */
    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* ---- WHY CHOOSE ---- */
    .why-choose-section {
        padding: 50px 20px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* ---- APPROACH ---- */
    .approach-section {
        padding: 50px 20px;
    }

    .approach-timeline {
        flex-direction: column;
        align-items: center;
    }

    .approach-card {
        max-width: 100%;
    }

    .approach-connector {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    /* ---- SCIENCE ---- */
    .science-section {
        padding: 50px 20px;
    }

    .science-inner {
        flex-direction: column;
        gap: 30px;
    }

    .science-hero-stat {
        flex: none;
    }

    .science-stat-circle {
        width: 180px;
        height: 180px;
    }

    .stat-big {
        font-size: 44px;
    }

    .science-content .section-header {
        text-align: center !important;
    }

    .science-pillars {
        grid-template-columns: 1fr;
    }

    /* ---- VALUES ---- */
    .values-section {
        padding: 50px 20px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    /* ---- OFFER SECTION ---- */
    .offer-section {
        flex-direction: column;
        padding: 50px 20px 60px;
        gap: 30px;
        margin: 10px 12px 0;
    }

    .offer-image-side {
        flex: none;
        width: 100%;
    }

    .offer-content {
        width: 100%;
        padding-top: 0;
    }

    .offer-title {
        font-size: 28px;
        text-align: center;
    }

    .offer-subtitle {
        font-size: 13px;
        max-width: 100%;
        text-align: center;
    }

    .offer-pills-area {
        align-items: center;
    }

    .offer-pill-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .row-r1,
    .row-r2,
    .row-r3 {
        margin-left: 0;
    }

    /* ---- OUTCOMES ---- */
    .outcomes-section {
        padding: 50px 20px;
    }

    .outcomes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* ---- SAFETY ---- */
    .safety-section {
        padding: 50px 20px;
    }

    .safety-content {
        flex-direction: column;
        gap: 30px;
    }

    .safety-text .section-title {
        text-align: center;
    }

    .safety-text .section-subtitle {
        text-align: center;
    }

    .safety-image {
        flex: none;
        width: 100%;
    }

    /* ---- GALLERY ---- */
    .gallery-section {
        padding: 50px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-large {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    /* ---- FAQ ---- */
    .faq-section {
        padding: 50px 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px 20px;
    }

    /* ---- TESTIMONIALS ---- */
    .testimonials-section {
        padding: 50px 16px 40px;
    }

    .testi-title {
        font-size: 26px;
    }

    .testi-subtitle {
        font-size: 12.5px;
    }

    .testi-card-side {
        display: none;
    }

    .testi-card-center {
        width: 100%;
        max-width: 340px;
    }

    .testi-swirl {
        left: 10px;
        top: 30px;
    }

    .testi-star {
        right: 16px;
        top: 28px;
    }

    /* ---- CTA SECTION ---- */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 13px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .cta-blob-left,
    .cta-wave-right {
        display: none;
    }

    /* ---- FOOTER ---- */
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 20px 24px;
        gap: 28px;
    }

    .footer-brand {
        flex: none;
        width: 100%;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 24px;
        width: 100%;
    }

    .footer-col {
        flex: 1 1 140px;
    }

    .footer-contact {
        flex: none;
        width: 100%;
    }

    .footer-bottom {
        padding: 14px 20px;
        font-size: 11.5px;
    }

    /* ---- ENQUIRE POPUP ---- */
    .enquire-card {
        max-width: calc(100vw - 32px);
        border-radius: 18px;
    }

    .enquire-form {
        grid-template-columns: 1fr;
        padding: 20px 18px 24px;
        gap: 14px;
    }

    .enquire-field-full {
        grid-column: 1 / -1;
    }

    .enquire-header {
        padding: 22px 20px 18px;
    }
}

/* ============================================
   SMALL MOBILE — ≤ 480px
   ============================================ */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .offer-title {
        font-size: 24px;
    }

    .testi-title {
        font-size: 22px;
    }

    .cta-title {
        font-size: 26px;
    }

    .testi-card-center {
        max-width: 100%;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* ---- SCIENCE SMALL MOBILE ---- */
    .science-stat-circle {
        width: 150px;
        height: 150px;
    }

    .stat-big {
        font-size: 36px;
    }

    .science-authority {
        flex-direction: column;
        text-align: center;
    }

    /* ---- VALUES SMALL MOBILE ---- */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   OPTIMIZED SCROLL ANIMATIONS
   ============================================ */

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.scroll-animate.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure hero section doesn't wait for scroll if needed, 
   but it's usually not animated by this observer */