/* =========================================================
   HOME PAGE – extracted from index.blade.php
   Scoped under .home-page so it won't affect other pages
========================================================= */
@import url(https://fonts.googleapis.com/css2?family=figtree:wght@400;500;600;700;800&display=swap);

/* =========================
   HERO – base layout
========================= */
html,
body {
    overscroll-behavior: none;
}

.home-page .hero-content {
    max-width: 1100px;
    position: relative;
    z-index: 3;
}

.home-page .hero-split {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    text-align: left;
}

@media (max-width: 991px) {
    .home-page .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.home-page .hero-kicker {
    color: #dbeafe;
    /* Core: Fluid Typography (Kicker) */
    font-size: clamp(0.875rem, 1.5vw, 1.1rem);
    margin-bottom: .75rem;
    letter-spacing: .3px;
}

.home-page .hero-rotator {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 1.05rem;
}

.home-page .rotating-word {
    display: inline-block;
    padding: .25rem .75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fbbf24;
    font-weight: 700;
    min-width: 200px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.home-page .rotating-word:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
    background: rgba(255, 255, 255, .16);
}

.home-page .hero-mini-card {
    position: relative;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .35);
    transform: translateZ(0);
    overflow: hidden;
}

.home-page .hero-mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .9rem;
}

.home-page .mini-stat {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    padding: .85rem .9rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, .12);
    border: 1px solid rgba(255, 255, 255, .14);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.home-page .mini-stat:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, .16);
    border-color: rgba(255, 255, 255, .22);
}

.home-page .mini-stat strong {
    color: #fbbf24;
    font-size: 1.35rem;
    line-height: 1;
}

.home-page .mini-stat span {
    color: #dbeafe;
    font-weight: 600;
}

/* ===============================
   HERO – PREMIUM + INTERACTIVE
=============================== */
.home-page .hero-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.home-page .hero-section::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, .45), transparent 55%),
        radial-gradient(circle at 85% 20%, rgba(251, 191, 36, .40), transparent 55%),
        radial-gradient(circle at 50% 90%, rgba(99, 102, 241, .35), transparent 55%),
        linear-gradient(135deg, rgba(30, 58, 138, .65), rgba(37, 99, 235, .35), rgba(250, 204, 21, .25));
    filter: blur(22px);
    animation: heroDrift 10s ease-in-out infinite alternate;
    z-index: 0;
    opacity: .95;
}

@keyframes heroDrift {
    0% {
        transform: translate3d(-1%, -1%, 0) scale(1.02);
    }

    100% {
        transform: translate3d(1%, 1%, 0) scale(1.06);
    }
}

.home-page .hero-overlay {
    background: linear-gradient(90deg, rgba(2, 6, 23, .75), rgba(2, 6, 23, .55), rgba(2, 6, 23, .35));
}

.home-page .hero-blobs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.home-page .blob {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .22;
    mix-blend-mode: screen;
    animation: blobFloat 8s ease-in-out infinite alternate;
}

.home-page .blob.blob-1 {
    left: -60px;
    top: 10%;
    background: radial-gradient(circle, rgba(59, 130, 246, .75), transparent 60%);
}

.home-page .blob.blob-2 {
    right: -80px;
    top: 18%;
    background: radial-gradient(circle, rgba(250, 204, 21, .70), transparent 60%);
    animation-duration: 9.5s;
}

.home-page .blob.blob-3 {
    left: 40%;
    bottom: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(99, 102, 241, .55), transparent 60%);
    animation-duration: 11s;
}

@keyframes blobFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    100% {
        transform: translate3d(20px, -12px, 0) scale(1.06);
    }
}

.home-page .hero-badge {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px !important;
}

.home-page .hero-section h1 {
    letter-spacing: -0.02em;
    text-shadow: 0 16px 50px rgba(0, 0, 0, .35);
    line-height: 1.08;
    /* Core: Fluid Typography (H1) - Adjusted Max Size */
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
}

.home-page .hero-buttons .btn {
    border-radius: 14px;
    padding: .95rem 1.35rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.home-page .hero-buttons .btn-secondary {
    border: 2px solid white !important;
}

.home-page .hero-buttons .btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.home-page .hero-mini-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .22) 45%, transparent 60%);
    transform: translateX(-40%);
    animation: shine 9s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translateX(-45%) rotate(8deg);
        opacity: 0;
    }

    25% {
        opacity: .35;
    }

    55% {
        transform: translateX(45%) rotate(8deg);
        opacity: .18;
    }

    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-page .hero-section::before,
    .home-page .blob,
    .home-page .hero-mini-card::before {
        animation: none !important;
    }
}

/* =========================
   SCROLL ANIMATIONS
========================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children if needed */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

/* =========================
   PROGRAM HUB
========================= */
.home-page .program-hub {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #dbeafe, #fffbeb, #eff6ff);
    position: relative;
    overflow: hidden;
}

.home-page .hub-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.home-page .hub-card {
    grid-column: span 6;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    overflow: hidden;
    /* Aesthetic: Glow Shadow */
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.15);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.home-page .hub-card:hover {
    /* Aesthetic: Lift Effect */
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.25);
}

@media (max-width: 991px) {
    .home-page .hub-card {
        grid-column: span 12;
    }
}

.home-page .hub-cover {
    height: 250px;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.home-page .hub-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .hub-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-page .hub-body {
    padding: 1.5rem;
    /* Aesthetic: Increased Padding */
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.home-page .hub-title {
    /* Core: Fluid Typography (H3 / Card Title) */
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
    font-weight: 700;
    /* Optimized: 800 -> 700 */
    color: #1e3a8a;
    margin: 0 0 .35rem;
    letter-spacing: -0.02em;
}

.home-page .hub-desc {
    color: #1d4ed8;
    font-weight: 400;
    /* Explicitly set to Regular */
    /* Core: Fluid Typography (Body) */
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
    margin: 0 0 auto 0;
    /* Pushes actions down smoothly */
    line-height: 1.6;
}

.home-page .hub-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.home-page .btn-soft {
    background: #2AB7FF;
    color: #ffffff;
    border: 1px solid rgba(37, 99, 235, .25);
    border-radius: 14px;
    box-shadow: 0 4px 0 #0084c9;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.home-page .btn-soft:hover {
    background: #4eccff;
    color: #ffffff;
    border: 1px solid #2AB7FF;
    transform: translateY(2px);
    box-shadow: 0 2px 0 #0084c9, 0 8px 20px rgba(42, 183, 255, 0.3);
}

/* =========================
   ADD-ON SECTION
========================= */
.home-page .addon-section {
    padding: 5rem 1rem;
    background:
        radial-gradient(at 0% 0%, #bae6fd 0px, transparent 50%),
        radial-gradient(at 100% 0%, #7dd3fc 0px, transparent 50%),
        radial-gradient(at 100% 100%, #a5b4fc 0px, transparent 50%),
        radial-gradient(at 0% 100%, #5eead4 0px, transparent 50%),
        radial-gradient(at 50% 50%, #dbeafe 0px, transparent 50%),
        #f1f5f9;
    position: relative;
    overflow: hidden;
}

.home-page .addon-section .section-title,
.home-page .addon-section .section-subtitle {
    color: #0f172a;
}

.home-page .addon-section .section-subtitle {
    color: #334155;
}

.home-page .addon-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.home-page .addon-card {
    grid-column: span 6;
    position: relative;
    border-radius: 14px;
    border: none;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.05),
        0 10px 15px -3px rgba(15, 23, 42, 0.1),
        0 20px 25px -5px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Aesthetic: Add-on Lift (Enhanced) */
.home-page .addon-card:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 10;
    box-shadow:
        0 40px 90px rgba(15, 23, 42, 0.2),
        0 20px 40px rgba(15, 23, 42, 0.1),
        0 0 0 2px rgba(6, 182, 212, 0.15);
}

.home-page .addon-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .25) 45%, transparent 60%);
    opacity: .25;
    pointer-events: none;
}

/* Removed previous hover block to avoid conflict */

@media (max-width: 991px) {
    .home-page .addon-card {
        grid-column: span 12;
    }
}

.home-page .addon-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .home-page .addon-img {
        height: 210px;
    }
}

.home-page .addon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0.5px solid #0000007b;
    object-position: top;
    transition: transform .6s ease;
}

.home-page .addon-img::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-page .addon-body {
    padding: 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.home-page .addon-body h3 {
    color: #1e293b;
    font-weight: 600;
    /* Optimized: Lighter than bold */
    margin-bottom: .5rem;
    letter-spacing: -0.02em;
    /* Core: Fluid Typography (H3) */
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
}

.home-page .addon-body p {
    color: #475569;
    font-weight: 400;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
}

.home-page .addon-body li {
    color: #475569;
    font-weight: 400;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
}

.home-page .addon-body ul {
    margin: .85rem 0 auto 0;
    /* Pushes the actions down */
    padding-left: 1.2rem;
}

.home-page .addon-actions {
    padding: 0 1.25rem 1.25rem;
}

/* =========================
   COURSES
========================= */
.home-page .courses-wrap {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #fffbeb, #eff6ff, #fffbeb);
}

.home-page .course-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-page .course-card {
    grid-column: span 4;
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Aesthetic: Glow Shadow */
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.15);
    transition: transform .3s ease, box-shadow .3s ease;
}

.home-page .course-card:hover {
    /* Aesthetic: Lift Effect */
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.25);
}

@media (max-width: 991px) {
    .home-page .course-card {
        grid-column: span 6;
    }
}

@media (max-width: 575px) {
    .home-page .course-card {
        grid-column: span 12;
    }
}

@media (min-width: 992px) {
    .home-page .course-grid>.course-card:nth-last-child(2) {
        grid-column: 3 / span 4;
    }

    .home-page .course-grid>.course-card:last-child {
        grid-column: 7 / span 4;
    }
}

.home-page .course-thumb {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.home-page .course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.home-page .course-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
}

.home-page .course-body {
    padding: 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.home-page .course-body h3 {
    margin-bottom: .35rem;
    letter-spacing: -0.02em;
    font-weight: 600;
    /* Optimized: Lighter than bold */
    /* Core: Fluid Typography (H3) */
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
}

.home-page .course-meta {
    color: #1d4ed8;
    font-weight: 600;
    /* Standardized to 600 */
    margin-bottom: .4rem;
}

.home-page .course-body p {
    color: #1e40af;
    margin: 0 0 auto 0;
    /* Changed bottom margin to auto to push footer down */
    font-weight: 400;
    /* Explicitly set to Regular */
    /* Core: Fluid Typography (Body) */
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
}

.home-page .course-footer {
    margin-top: auto;
    padding: 1rem 1.1rem;
    border-top: 1px solid #bfdbfe;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.home-page .badge-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .75rem;
    border-radius: 14px;
    background: rgba(251, 191, 36, 0.9);
    border: 1px solid rgb(251 191 36);
    color: #1e3a8a;
    font-weight: 600;
    font-size: .9rem;
}

/* =========================
   TESTIMONIALS (DEDUPED)
========================= */
.home-page .testimonials {
    padding: 5rem 1rem;
    background:
        radial-gradient(at 0% 0%, #7dd3fc 0px, transparent 55%),
        radial-gradient(at 100% 0%, #38bdf8 0px, transparent 55%),
        radial-gradient(at 100% 100%, #818cf8 0px, transparent 55%),
        radial-gradient(at 0% 100%, #14b8a6 0px, transparent 55%),
        radial-gradient(at 50% 50%, #93c5fd 0px, transparent 55%),
        #e2e8f0;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.home-page .testimonials .section-title,
.home-page .testimonials .section-subtitle {
    color: #0f172a;
}

.home-page .testimonials .section-subtitle {
    color: #334155;
}

/* Remove yellow decorative lines from ALL section titles on homepage
   (global style.css applies them via .section-title::before/::after with var(--primary)) */
.home-page .section-title::before,
.home-page .section-title::after {
    display: none !important;
    content: none !important;
}

.home-page .testimonials .section-title {
    position: relative;
    display: inline-block;
}

/* wrapper gives space for glass arrows */
.home-page .testimonials .t-carousel-wrap {
    position: relative;
    padding: 0 110px;
    max-width: 100%;
}

@media (max-width: 991px) {
    .home-page .testimonials .t-carousel-wrap {
        padding: 0 70px;
    }
}

/* IMPORTANT: no stage padding = no blank space */
.home-page .testimonials .home-testimonial-carousel .owl-stage-outer {
    overflow: hidden !important;
    padding: 18px 0 26px !important;
    background: transparent !important;
}

.home-page .testimonials .home-testimonial-carousel,
.home-page .testimonials .home-testimonial-carousel .owl-stage,
.home-page .testimonials .home-testimonial-carousel .owl-item {
    background: transparent !important;
}

/* Remove any white fade overlays */
.home-page .testimonials .home-testimonial-carousel::before,
.home-page .testimonials .home-testimonial-carousel::after,
.home-page .testimonials .home-testimonial-carousel .owl-stage-outer::before,
.home-page .testimonials .home-testimonial-carousel .owl-stage-outer::after {
    content: none !important;
    display: none !important;
}

/* each slide */
.home-page .testimonials .testimonial-item {
    height: 100%;
    display: flex;
}

/* card */
.home-page .testimonials .t-card {
    width: 100%;
    height: fit-content;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.05),
        0 10px 15px -3px rgba(15, 23, 42, 0.1),
        0 20px 25px -5px rgba(15, 23, 42, 0.05);
}

/* Make ALL cards fully visible */
.home-page .testimonials .owl-item {
    opacity: 1 !important;
    filter: none !important;
}

/* Center card comes forward prominently */
.home-page .testimonials .owl-item.center .t-card {
    transform: scale(1.08);
    z-index: 10;
    position: relative;
    box-shadow:
        0 40px 90px rgba(15, 23, 42, 0.35),
        0 20px 40px rgba(15, 23, 42, 0.2),
        0 0 0 2px rgba(6, 182, 212, 0.15);
    background: #fff;
}

.home-page .testimonials .t-top {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: .9rem;
    text-align: left;
}

.home-page .testimonials .t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
    flex: 0 0 auto;
}

.home-page .testimonials .t-meta h5 {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
}

.home-page .testimonials .t-role {
    color: #32435f;
    font-weight: 500;
    font-size: .92rem;
    margin: .15rem 0 0;
}

.home-page .testimonials .t-quote {
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
}

.home-page .testimonials .t-text {
    margin-top: auto;
    color: #334155;
    line-height: 1.8;
    text-align: justify;
    background: transparent !important;
    padding: 0 !important;
}

/* Hide dots */
.home-page .testimonials .owl-dots {
    display: none !important;
}

/* We use external arrows; hide owl nav */
.home-page .testimonials .home-testimonial-carousel .owl-nav {
    display: none !important;
}

/* External arrows */
.home-page .testimonials .t-ext-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 64px;
    height: 64px;
    border-radius: 50px !important;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.home-page .testimonials .t-ext-nav:hover {
    background: #f8fafc;
    border-color: #2563eb;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.15);
}

.home-page .testimonials .t-prev {
    left: -20px;
}

.home-page .testimonials .t-next {
    right: -20px;
}

.home-page .testimonials .t-ext-nav i {
    font-size: 28px;
    color: #1e293b;
    pointer-events: none;
}

.home-page .testimonials .btn-secondary {
    background: rgba(255, 255, 255, 0.7) !important;
    color: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: .75rem 1.75rem !important;
    /* Reduced from .85rem 2.4rem */
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 0 rgba(15, 23, 42, 0.1) !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.home-page .testimonials .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(2px) !important;
    box-shadow: 0 2px 0 rgba(15, 23, 42, 0.15) !important;
    border-color: #2563eb !important;
    color: #2563eb !important;
}

/* kill selection highlight */
.home-page .testimonials,
.home-page .testimonials * {
    -webkit-user-select: none;
    user-select: none;
}

.home-page .testimonials *::selection {
    background: transparent;
}

/* =========================
   HERO: Build + Sliding Word
========================= */
.home-page .hero-slide-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.05;
    margin: 0 0 1rem;
    white-space: nowrap;
}

.home-page .hero-slide-heading .static-part {
    line-height: 1.05;
    display: block;
}

.home-page .hero-slide-heading .slide-wrapper {
    position: relative;
    height: 1.05em;
    min-width: 9ch;
    overflow: hidden;
    display: block;
}

.home-page .hero-slide-heading .slide-item {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.05;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(120%);
    transition: transform .55s ease, opacity .55s ease;
    will-change: transform, opacity;
}

.home-page .hero-slide-heading .slide-item.is-current {
    opacity: 1;
    transform: translateX(0);
}

.home-page .hero-slide-heading .slide-item.is-exit {
    opacity: 0;
    transform: translateX(-120%);
}

.home-page .hero-slide-heading .slide-item.highlight {
    color: #fbbf24;
}

@media (max-width: 575px) {
    .home-page .hero-slide-heading {
        flex-wrap: wrap;
        white-space: normal;
    }
}

/* Button text alignment (FINAL) */
.home-page .hero-buttons .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding-top: .95rem;
    padding-bottom: .95rem;
}

/* =========================
   FIX: mobile testimonials + overflow band
========================= */
.home-page,
.home-page .testimonials {
    overflow-x: hidden;
}

@media (max-width: 575px) {
    .home-page .testimonials .t-carousel-wrap {
        padding: 0 12px !important;
    }

    .home-page .testimonials .home-testimonial-carousel .owl-stage-outer {
        padding: 12px 0 18px !important;
    }

    .home-page .testimonials .t-ext-nav {
        width: 52px !important;
        height: 52px !important;
        border-radius: 14px;
        top: 58% !important;
        transform: translateY(-50%) !important;
    }

    .home-page .testimonials .t-ext-nav i {
        font-size: 24px !important;
    }

    .home-page .testimonials .t-prev {
        left: -36px !important;
    }

    .home-page .testimonials .t-next {
        right: -36px !important;
    }
}

/* Center testimonial card text */
.home-page .testimonials .t-text,
.home-page .testimonials .t-text p {
    text-align: center !important;

}

/* =========================
   HERO CAROUSEL
========================= */
.home-page .hero-carousel {
    position: relative;
}

.home-page .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-page .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.01);
    transition: opacity .6s ease, transform .8s ease;
}

.home-page .hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* optional different overlay for quiz slide */
.home-page .hero-overlay-quiz {
    background: linear-gradient(90deg, rgba(2, 6, 23, .80), rgba(2, 6, 23, .55), rgba(2, 6, 23, .35));
}

/* arrows */
.home-page .hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.home-page .hero-nav:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(251, 191, 36, .55);
    transform: translateY(-50%) scale(1.06);
}

.home-page .hero-prev {
    left: 14px;
}

.home-page .hero-next {
    right: 14px;
}

.home-page .hero-nav i {
    font-size: 26px;
    color: #fff;
}

/* dots */
.home-page .hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
}

.home-page .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, .45);
}

.home-page .hero-dot.is-active {
    background: rgba(251, 191, 36, .95);
}

@media (max-width: 575px) {
    .home-page .hero-prev {
        left: 8px;
    }

    .home-page .hero-next {
        right: 8px;
    }

    .home-page .hero-nav {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .home-page .hero-nav i {
        font-size: 22px;
    }
}

/* =========================================================
   FIX: HERO CAROUSEL ALIGNMENT (restore original hero layout)
   Put this AFTER your hero carousel CSS
========================================================= */

.home-page .hero-section.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh !important;
    max-height: 70vh !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    display: block;
}

/* IMPORTANT: slides must respect hero padding + vertical centering */
.home-page .hero-carousel .hero-slide {
    /* still absolute for fade switching */
    position: absolute;
    inset: 0;

    /* ✅ restore layout */
    display: flex;
    align-items: center;
    /* vertical center */
    padding: inherit;
    /* inherit hero padding */
}

/* make sure the slide wrapper doesn't collapse */
.home-page .hero-carousel .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

/* center the inner content exactly like before */
.home-page .hero-carousel .hero-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /* ✅ centers left+right */
    position: relative;
    z-index: 3;
}

/* keep text left on desktop, center on mobile (already in your code, just reinforcing) */
@media (max-width: 991px) {
    .home-page .hero-section.hero-carousel {
        padding: 0 !important;
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        overflow: hidden;
    }

    /* ✅ FIX: active slide must be position:relative on mobile
       so it contributes to the parent's height (prevents 0-height collapse).
       inset must also be reset to  the element flows normally. */
    .home-page .hero-carousel .hero-slide.is-active {
        position: relative !important;
        inset: auto !important;
    }

    .home-page .hero-carousel .hero-slides {
        height: auto;
        min-height: 0;
    }

    .home-page .hero-carousel .hero-slide {
        padding: inherit;
        align-items: center;
        /* better on mobile */
    }
}


/* arrows/dots should be above everything */
.home-page .hero-carousel .hero-nav,
.home-page .hero-carousel .hero-dots {
    z-index: 10;
}

/* =========================
   HERO CAROUSEL – FULL BLEED FIX
========================= */



/* slides stack full size */
.home-page .hero-carousel .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

/* each slide fills the hero */
.home-page .hero-carousel .hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.01);
    transition: opacity .6s ease, transform .8s ease;
}

.home-page .hero-carousel .hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* ✅ MOBILE FIX (placed AFTER the duplicate absolute block so it wins by cascade) */
@media (max-width: 991px) {
    .home-page .hero-carousel .hero-slide.is-active {
        position: relative !important;
        inset: auto !important;
    }

    .home-page .hero-carousel .hero-slides {
        height: auto;
        min-height: 0;
    }
}

/* ✅ background image must cover the hero completely */
.home-page .hero-carousel .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* ✅ overlay must also cover full hero */
.home-page .hero-carousel .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* blobs/circles should stay above bg but below content */
.home-page .hero-carousel .hero-blobs,
.home-page .hero-carousel .hero-circles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* content must be centered but with inner padding only */
.home-page .hero-carousel .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 2rem;
    /* ✅ padding INSIDE content, not hero */
}

/* arrows + dots on top */
.home-page .hero-carousel .hero-nav,
.home-page .hero-carousel .hero-dots {
    z-index: 10;
}

/* ==============================
   QUIZ HERO – STANDOUT OFFER
============================== */

.quiz-offer-standout {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: offer-glow-in 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* OFFER label */
.quiz-offer-standout .offer-tag {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #1e3a8a;
    background: #fbbf24;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    text-transform: uppercase;
}

/* price row */
.quiz-offer-standout .price-row {
    display: flex;
    align-items: center;
    gap: .75rem;
}

/* old price */
.quiz-offer-standout .old-price {
    color: #cbd5f5;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: .85;
}

/* vertical divider */
.quiz-offer-standout .price-divider {
    width: 1px;
    height: 22px;
    background: rgba(251, 191, 36, .6);
}

/* new price */
.quiz-offer-standout .new-price {
    color: #fbbf24;
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

/* entrance animation */
@keyframes offer-glow-in {
    0% {
        transform: translateY(8px) scale(.96);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* mobile tuning */
@media (max-width: 575px) {
    .quiz-offer-standout {
        padding: .7rem .95rem;
    }

    .quiz-offer-standout .new-price {
        font-size: 1.35rem;
    }
}

/* ==============================
   QUIZ HERO CLICKABLE
============================== */

.hero-slide-quiz {
    cursor: pointer;
}

/* subtle hover feedback (desktop only) */
@media (hover: hover) {
    .hero-slide-quiz:hover .hero-overlay {
        background: linear-gradient(90deg,
                rgba(2, 6, 23, .82),
                rgba(2, 6, 23, .55),
                rgba(2, 6, 23, .35));
    }
}


/* Right side stack for quiz slide: offer + mini-card */
.home-page .quiz-right-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: end;
    width: fit-content;
    margin-left: auto;
}

/* Bigger offer */
.home-page .quiz-offer-big {
    padding: 2rem 2.5rem;
    /* Increased padding */
    min-width: min(380px, 100%);
    /* Ensure it's wide enough, but never wider than viewport */
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.15), rgba(217, 119, 6, 0.12), rgba(180, 83, 9, 0.10));
    /* Gold-tone gradient */
    backdrop-filter: blur(24px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    /* Brighter border */
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(251, 191, 36, .50),
        0 0 60px rgba(251, 191, 36, .35),
        0 0 100px rgba(59, 130, 246, .20);
    display: flex;
    /* Ensure flex for centering */
    flex-direction: column;
    align-items: center;
    /* Center everything horizontally */
    text-align: center;
    /* Center text */
}

/* ATTENTION GRABBING BADGE */
/* ATTENTION GRABBING BADGE - GOLDEN THEME */
.home-page .quiz-offer-big .offer-tag {
    font-size: 1rem;
    padding: .5rem .9rem;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    /* Gold/Amber */
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    border-radius: 99px;
    position: relative;
    overflow: hidden;
    animation: badge-pulse 3s infinite ease-in-out, fade-in-up 0.6s ease-out forwards 0.2s;
    opacity: 0;
}

/* Badge Shimmer */
.home-page .quiz-offer-big .offer-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: badge-shimmer 4s infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.6);
    }
}

@keyframes badge-shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* IMPACTFUL OLD PRICE (999) - PURE BLACK */
.home-page .quiz-offer-big .old-price {
    font-size: 2.2rem;
    color: #000000;
    /* Pure Black */
    position: relative;
    display: inline-block;
    text-decoration: none !important;
    font-weight: 900;
    /* Maximum Weight */
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards 0.4s;
}

/* Thicher/Punchier Red Strike */
.home-page .quiz-offer-big .old-price::after {
    content: '';
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    /* Stretches slightly beyond */
    height: 4px;
    /* Thicker line */
    background: #dc2626;
    /* Deep Red */
    transform: rotate(-10deg);
    animation: strike-anim 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.8s;
    transform-origin: center;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

@keyframes strike-anim {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.home-page .quiz-offer-big .price-divider {
    height: 36px;
    width: 2px;
    background: #cbd5e1;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards 0.5s;
}

/* ATTENTION: HEARTBEAT NEW PRICE */
/* DEEP INDIGO NEW PRICE (Harmonizing with Glass) */
.home-page .quiz-offer-big .new-price {
    font-size: 4.2rem;
    /* Bright Yellow Gradient */
    background: linear-gradient(135deg, #fef08a 0%, #eab308 100%) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 2px 4px rgba(234, 179, 8, 0.25));

    font-weight: 900;
    display: inline-block;
    opacity: 0;
    /* Heartbeat runs every 3s */
    animation: fade-in-up 0.6s ease-out forwards 0.6s, price-heartbeat 3s infinite ease-in-out 1s;
}

@keyframes price-heartbeat {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(234, 179, 8, 0.25));
    }

    15% {
        transform: scale(1.1);
        filter: drop-shadow(0 4px 15px rgba(250, 204, 21, 0.5));
    }

    /* Yellow Glow Pulse */
    30% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(234, 179, 8, 0.25));
    }

    45% {
        transform: scale(1.12);
        filter: drop-shadow(0 4px 15px rgba(250, 204, 21, 0.5));
    }

    60% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(234, 179, 8, 0.25));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(234, 179, 8, 0.25));
    }
}

/* HIGH CONTRAST SUBTEXT */
.home-page .quiz-offer-big .offer-subtext {
    margin-top: 0.5rem;
    color: #020617;
    /* Slate 950 - Sharp Black */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards 0.7s;
}

/* Center the button */
.home-page .quiz-offer-big .hero-buttons {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center !important;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards 0.8s;
}

/* PROFESSIONAL ACTION BUTTON */
.home-page .quiz-offer-big .btn-primary {
    width: 100%;
    max-width: 220px;
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;

    background: linear-gradient(135deg, #4f46e5, #4338ca);
    /* Violet/Indigo */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #ffffff;

    /* Vibrant Glow */
    box-shadow:
        0 4px 0 #312e81,
        0 0 0 4px rgba(79, 70, 229, 0.1);

    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: btn-beg 3s infinite 1s;
    /* Delayed start */
}

.home-page .quiz-offer-big .btn-primary:hover {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    transform: translateY(2px);
    box-shadow:
        0 2px 0 #312e81,
        0 0 0 8px rgba(79, 70, 229, 0.2);
}

/* Shake/Wiggle Animation */
@keyframes btn-beg {

    0%,
    100% {
        transform: scale(1) rotate(0);
    }

    5% {
        transform: scale(1.05) rotate(-2deg);
    }

    10% {
        transform: scale(1.05) rotate(2deg);
    }

    15% {
        transform: scale(1.05) rotate(-2deg);
    }

    20% {
        transform: scale(1.05) rotate(2deg);
    }

    25% {
        transform: scale(1) rotate(0);
    }
}

/* Generic Fade In Up */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile: keep it centered */
@media (max-width: 991px) {
    .home-page .quiz-right-stack {
        align-items: center;
        width: 100%;
    }

    .home-page .quiz-offer-big {
        width: min(520px, 100%);
        text-align: center;
        align-items: center;
    }
}

/* =====================================
   QUIZ OFFER – GLASS MORPHISM (MATCH MINI CARD)
===================================== */

.home-page .quiz-offer-standout {
    /* Exact Match: Hero Nav Glass */
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* Keep subtle shadow for depth but match style */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

    filter: none;
    animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* subtle golden accent without killing glass */
.home-page .quiz-offer-standout::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 0 26px rgba(251, 191, 36, 0.25);
}

/* ensure content stays sharp */
.home-page .quiz-offer-standout * {
    position: relative;
    z-index: 1;
}

/* ----- Copied from about.css before_edit ----- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #1e3a8a;
    scroll-behavior: smooth;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

p {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #475569;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
}

.hero-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.circle-1 {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 256px;
    height: 256px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 14px;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.circle-2 {
    position: absolute;
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 1000px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #dbeafe;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.75rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 0 #1e40af;
}

.btn-primary:hover {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1e3a8a, 0 8px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    box-shadow: 0 4px 0 #b45309;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    color: #0f172a;
    box-shadow: 0 2px 0 #b45309, 0 10px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

/* Mission & Vision Section */
.mission-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #dbeafe, #fffbeb, #dbeafe);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: #0f172a;
    font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1.1rem, 1.25vw + 0.5rem, 1.25rem);
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card,
.vision-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2.5rem;
    border-radius: 14px;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 10px 15px -3px rgba(15, 23, 42, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.mission-card {
    background: rgba(255, 251, 235, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-bottom: 4px solid #f59e0b;
}

.vision-card {
    background: rgba(239, 246, 255, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-bottom: 4px solid #3b82f6;
}

@media (min-width: 768px) {
    .vision-card {
        margin-top: 2rem;
    }
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(245, 158, 11, 0.15);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.15);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card .card-icon {
    background: #fffbeb;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.25);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.mission-card h3 {
    text-align: center;
    color: #1e3a8a;
}

.mission-card p {
    text-align: center;
    color: #1e40af;
    margin: 0;
}

.vision-card h3 {
    text-align: center;
    color: white;
}

.vision-card p {
    text-align: center;
    color: #dbeafe;
    margin: 0;
}

.mission-statement {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #bfdbfe;
}

.mission-statement p {
    font-size: 1.125rem;
    color: #1e3a8a;
    text-align: center;
    line-height: 1.8;
    margin: 0;
}

/* What We Do Section */
.what-we-do-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #1e3a8a);
    position: relative;
    overflow: hidden;
}

.what-we-do-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 384px;
    height: 384px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 14px;
    filter: blur(80px);
}

.what-we-do-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    filter: blur(80px);
}

.what-we-do-section h2,
.what-we-do-section .section-subtitle {
    color: white;
}

.what-we-do-section .section-subtitle {
    color: #bfdbfe;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .what-we-do-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.what-we-do-image {
    position: relative;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.what-we-do-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.8), transparent);
}

.what-we-do-cards {
    display: grid;
    gap: 1rem;
}

.feature-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 14px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
    align-items: start;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.05),
        0 10px 15px -3px rgba(15, 23, 42, 0.1),
        0 20px 25px -5px rgba(15, 23, 42, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 40px 90px rgba(15, 23, 42, 0.2),
        0 20px 40px rgba(15, 23, 42, 0.1),
        0 0 0 2px rgba(6, 182, 212, 0.15);
    border: none;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #1e40af, #1e377e);
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #475569;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #fffbeb, #eff6ff, #fffbeb);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
    }

    .why-choose-image {
        order: 1;
    }

    .why-choose-content {
        order: 2;
    }
}

.why-choose-image {
    position: relative;
    border-radius: 14px;
    /* Removed overflow:hidden and increased height to prevent Lottie clipping */
    overflow: visible;
    height: 500px;
}

.why-choose-image dotlottie-player {
    transform: scale(1.35);
    margin-right: 50px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reason-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 14px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.05),
        0 10px 15px -3px rgba(15, 23, 42, 0.1);
    border-left: 4px solid #f59e0b;
}

.reason-card:nth-child(even) {
    border-left-color: #3b82f6;
}

.reason-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon.yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.reason-icon.blue {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.reason-card h4 {
    color: #1e3a8a;
}

.reason-card p {
    color: #1d4ed8;
    margin: 0;
}

/* Future Vision Section */
.future-vision-section {
    padding: 5rem 1rem;
    position: relative;
    background: linear-gradient(135deg, #1e3a8a, #581c87, #1e3a8a);
    overflow: hidden;
}

.future-vision-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.future-vision-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.future-vision-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.future-icon {
    display: inline-flex;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.future-vision-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.future-vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

.future-vision-card p:first-of-type {
    font-size: 1.5rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.future-vision-card p:last-of-type {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin: 0;
}

.highlight-text {
    color: #fbbf24;
    font-weight: 600;
}

.future-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .future-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-number {
    font-size: 2.5rem;
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #bfdbfe;
    margin: 0;
}

/* Learn by Doing Section */
.learn-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #fffbeb, #eff6ff);
}

.learn-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .learn-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.learn-content h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.learn-content>p {
    font-size: 1.125rem;
    color: #1d4ed8;
    margin-bottom: 1.5rem;
}

.learn-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.learn-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: #fbbf24;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.learn-item span {
    color: #1e40af;
    font-size: 1rem;
}

.learn-image {
    position: relative;
    height: 450px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.learn-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.cta-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    position: relative;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 10% 20%, #f1f5f9 0px, transparent 50%),
        radial-gradient(at 90% 80%, #f59e0b33 0px, transparent 50%),
        radial-gradient(at 90% 10%, #1e40af 0px, transparent 50%),
        radial-gradient(at 10% 90%, #4338ca 0px, transparent 50%),
        #1e3a8a;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.cta-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1), inset 0 2px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
}

.cta-card h2 {
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-card>p {
    color: #334155;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-gradient-yellow {
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: #0f172a;
    padding: 1rem 2rem;
    box-shadow: 0 4px 0 #b45309;
    border-radius: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-gradient-yellow:hover {
    background: linear-gradient(to right, #fcd34d, #f59e0b);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #b45309, 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-gradient-blue {
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 0 #172554;
    border-radius: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-gradient-blue:hover {
    background: linear-gradient(to right, #3b82f6, #1d4ed8);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1e3a8a, 0 8px 20px rgba(59, 130, 246, 0.3);
    color: white;
}

.cta-contact {
    padding-top: 2rem;
    border-top: 1px solid #94a3b8;
    color: #1e40af;
}

/* Icon SVGs */
.icon {
    width: 32px;
    height: 32px;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

/* Responsive */
@media (max-width: 767px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .what-we-do-image,
    .why-choose-image,
    .learn-image {
        height: 300px;
    }

    .cta-content {
        margin: 25px;
    }
}