:root {
    --clr-primary: #D946A8;
    --clr-primary-light: #F472B6;
    --clr-secondary: #F97316;
    --clr-secondary-light: #FDBA74;
    --clr-accent: #FBBF24;

    --gradient-brand: linear-gradient(135deg, #D946A8 0%, #F97316 50%, #FBBF24 100%);
    --gradient-brand-reverse: linear-gradient(135deg, #FBBF24 0%, #F97316 50%, #D946A8 100%);
    --gradient-soft: linear-gradient(135deg, #FDF2F8 0%, #FFF7ED 50%, #FFFBEB 100%);
    --gradient-lavender: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 50%, #FFF1F2 100%);
    --gradient-sky: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 50%, #FEFCE8 100%);
    --gradient-hero: linear-gradient(135deg, #FDF2F8 0%, #FEF3C7 30%, #FCE7F3 60%, #EDE9FE 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));

    --clr-heading: #1E1B4B;
    --clr-body: #4B5563;
    --clr-body-light: #6B7280;
    --clr-white: #ffffff;

    --bg-body: #FEFEFE;
    --bg-section-alt: #FAFAF9;

    --shadow-sm: 0 2px 8px rgba(217, 70, 168, 0.08);
    --shadow-md: 0 8px 30px rgba(217, 70, 168, 0.12);
    --shadow-lg: 0 20px 60px rgba(217, 70, 168, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(217, 70, 168, 0.18);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition: all 0.45s cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: all 0.25s cubic-bezier(0.65, 0, 0.35, 1);
    --transition-slow: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);

    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
    --font-accent: 'Playfair Display', serif;


    --section-py: 70px;
    --container-max: 1340px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--clr-body);
    background: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.logo-loader {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.logo-loader img {
    width: 80px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: logoPulse 2s ease-in-out infinite;
    z-index: 2;
}

.loader-circle {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(217, 70, 168, 0.1);
    border-top: 3px solid var(--clr-primary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    position: relative;
    z-index: 1;
}

.loader-text {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--clr-heading);
    letter-spacing: 1px;
    animation: textFade 1.5s ease-in-out infinite alternate;
}

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

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

@keyframes logoPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes textFade {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--clr-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-brand);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--clr-white);
    box-shadow: 0 6px 24px rgba(217, 70, 168, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 200%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(217, 70, 168, 0.45);
}

.btn-secondary {
    background: var(--clr-white);
    color: var(--clr-heading);
    border: 2px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: var(--clr-primary-light);
    color: var(--clr-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--clr-primary-light);
    color: var(--clr-primary-dark);
    border-color: var(--clr-primary-light);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn.success {
    background: linear-gradient(135deg, #10B981, #059669);
}

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



.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--clr-body-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.fixed-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}


.top-bar {
    background: var(--gradient-brand);
    color: var(--clr-white);
    padding: 6px 0;
    font-size: 0.82rem;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.fixed-header-wrapper.scrolled .top-bar {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left a {
    color: var(--clr-white);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.92;
}

.top-bar-left a:hover {
    opacity: 1;
}

.top-bar-right {
    display: flex;
    gap: 14px;
}

.top-bar-right a {
    color: var(--clr-white);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    font-size: 0.72rem;
    transition: var(--transition-fast);
}

.top-bar-right a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.15);
}

.navbar {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(217, 70, 168, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 8px 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--clr-heading);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--radius-md);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-dropdown {
    position: relative;
}

.has-dropdown:hover .nav-link, .nav-link:hover {
    color: var(--clr-primary);
    background: transparent;
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border: 1px solid rgba(217, 70, 168, 0.1);
    border-radius: var(--radius-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: var(--clr-body);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--clr-primary);
    background: var(--gradient-soft);
    padding-left: 30px;
}

.nav-cta {
    padding: 12px 28px !important;
    font-size: 0.9rem !important;
    border-radius: var(--radius-full) !important;
    margin-left: 10px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 21px;
    cursor: pointer;
    z-index: 1010;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--clr-heading);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-link:hover::after,
.has-dropdown:hover .nav-link::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    color: var(--clr-primary);
    background: transparent;
}

.nav-cta-btn {
    background: var(--gradient-brand);
    color: var(--clr-white);
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(217, 70, 168, 0.3);
    transition: var(--transition);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(217, 70, 168, 0.4);
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 80px 0;
}

.hero.hero-video {
    background: #0a0a1a;
}

.hero-video-bg {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: calc(100% - 110px);
    object-fit: cover;
    z-index: 0;
    opacity: 0.55;
}

.hero.hero-video .hero-bg-overlay {
    position: absolute;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;

    background: linear-gradient(90deg,
            rgba(255, 236, 210, 0.95) 0%,
            rgba(255, 214, 214, 0.85) 35%,
            rgba(221, 214, 254, 0.55) 65%,
            rgba(199, 210, 254, 0.25) 85%,
            rgba(199, 210, 254, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(217, 70, 168, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    width: 20px;
    height: 20px;
    background: var(--clr-primary-light);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 14px;
    height: 14px;
    background: var(--clr-secondary-light);
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    background: var(--clr-accent);
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.particle-4 {
    width: 16px;
    height: 16px;
    background: #A78BFA;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.particle-5 {
    width: 8px;
    height: 8px;
    background: var(--clr-primary);
    top: 45%;
    left: 35%;
    animation-delay: 4s;
}

.particle-6 {
    width: 12px;
    height: 12px;
    background: var(--clr-secondary);
    bottom: 20%;
    right: 30%;
    animation-delay: 1s;
}

.particle-7 {
    width: 18px;
    height: 18px;
    background: #FBBF24;
    top: 10%;
    right: 35%;
    animation-delay: 0.5s;
}

.particle-8 {
    width: 10px;
    height: 10px;
    background: #34D399;
    bottom: 15%;
    left: 20%;
    animation-delay: 2.5s;
}

.particle-9 {
    width: 15px;
    height: 15px;
    background: #F472B6;
    bottom: 25%;
    right: 45%;
    animation-delay: 4.5s;
}

.particle-10 {
    width: 8px;
    height: 8px;
    background: #60A5FA;
    top: 35%;
    left: 45%;
    animation-delay: 3.2s;
}

.particle-11 {
    width: 14px;
    height: 14px;
    background: var(--clr-primary-light);
    top: 5%;
    left: 60%;
    animation-delay: 1.8s;
}

.particle-12 {
    width: 22px;
    height: 22px;
    background: var(--clr-secondary-light);
    bottom: 10%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes particleFloat {

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

    33% {
        transform: translate(20px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.9);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.hero.hero-video .hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: var(--container-max);
    text-align: left;
    position: relative;
}


.hero-trust-stack {
    display: none;
    z-index: 10;
}


@media (min-width: 1301px) {
    .hero-trust-stack {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 24px;
        align-items: start;
        position: absolute;
        right: 0;
        top: 17%;
        transform: translate(-10px, -50%);
        perspective: 1000px;
    }
}


@media (min-width: 1201px) and (max-width: 1300px) {
    .hero-trust-stack {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 15px;
        position: absolute;
        right: 40px;
        top: 20%;
        transform: translate(0, -50%);
    }

    .trust-card.big-card {
        width: 230px !important;
    }

    .trust-stat {
        font-size: 1.25rem;
    }
}

@media (min-width: 1001px) and (max-width: 1200px) {
    .hero-trust-stack {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 15px;
        position: absolute;
        right: 40px;
        top: 15%;
        transform: translate(0, -50%);
    }

    .trust-card.big-card {
        width: 220px !important;
    }

    .trust-stat {
        font-size: 1.15rem;
    }

    .trust-label {
        font-size: 0.65rem;
    }
}

@media (min-width: 1000px) and (max-width: 1120px) {
    .hero-content h1 {
        font-size: 2.8rem !important;
    }

    .hero-content p {
        max-width: 450px !important;
        font-size: 1rem;
    }
}

.trust-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: trustFloating 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--clr-primary-light);
}


.trust-card.big-card {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-card.small-card {
    width: 240px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-heading);
}





.trust-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-card-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 12px;
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.trust-info {
    display: flex;
    flex-direction: column;
}

.trust-stat {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-heading);
    line-height: 1.1;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--clr-body-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-card-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    width: 100%;
}

.trust-card.small-card i {
    color: #10B981;
    font-size: 1.2rem;
}



@keyframes trustFloating {

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

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


@media (max-width: 1000px) {
    .hero.hero-video .hero-container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        text-align: center;
        padding-bottom: 40px;
    }

    .hero-content {
        order: 1 !important;
    }

    .hero-trust-stack {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 280px));
        justify-content: center;
        gap: 15px;
        margin-top: 50px;
        width: 100%;
        order: 2 !important;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
    }

    .trust-card {
        width: 100% !important;
        max-width: none;
        animation: none;
        text-align: left;
    }

    @media (max-width: 580px) {
        .hero-trust-stack {
            grid-template-columns: 1fr;
        }

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

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 60px !important;
        min-height: auto;
    }

    .hero.hero-video .hero-container {
        padding-top: 10px;
    }
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-white);
    color: var(--clr-primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid rgba(217, 70, 168, 0.12);
    animation: badgePulse 3s ease-in-out infinite;
}


.hero.hero-video .hero-badge {
    background: rgba(255, 255, 255, 0.6);
    color: var(--clr-heading);
    border-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero.hero-video .hero-badge i {
    color: var(--clr-primary);
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(217, 70, 168, 0.08);
    }

    50% {
        box-shadow: 0 4px 20px rgba(217, 70, 168, 0.2);
    }
}

.hero-badge i {
    color: var(--clr-accent);
}

.hero-content h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}


.hero.hero-video .hero-content h1 {
    color: var(--clr-heading);
}

.hero.hero-video .hero-content h1 .gradient-text {
    background: var(--gradient-brand);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--clr-body-light);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.8;
    animation: fadeInUp 1s cubic-bezier(0.7, 0, 0.3, 1) both 0.2s;
}


.hero.hero-video .hero-content p {
    color: var(--clr-body);
    max-width: 600px;
}

.hero.hero-video .hero-content {
    margin-top: 50px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}


.hero.hero-video .hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.4);
    color: var(--clr-heading);
    border-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero.hero-video .hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--clr-primary);
}

.partner {
    padding: var(--section-py) 0;
    background: var(--clr-white);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.partner-card {
    background: var(--bg-section-alt);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(217, 70, 168, 0.05);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--clr-white);
    border-color: var(--clr-primary-light);
}

.partner-icon {
    width: 70px;
    height: 70px;
    background: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--clr-primary);
    font-size: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.partner-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.partner-card p {
    font-size: 0.95rem;
    color: var(--clr-body-light);
    line-height: 1.6;
}

.partner-cta {
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--clr-heading);
}

.partner-cta a {
    margin-left: 15px;
}

.contact {
    padding: var(--section-py) 0;
    background: var(--bg-section-alt);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch; 
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.contact-card {
    background: var(--clr-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(217, 70, 168, 0.05);
    flex: 1;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary-light);
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--clr-body-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--clr-white);
    padding: 30px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(217, 70, 168, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--clr-heading);
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid #E5E7EB;
    font-family: inherit;
    font-size: 0.92rem;
    transition: var(--transition-fast);
    background: #F9FAFB;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    background: var(--clr-white);
    border-color: var(--clr-primary-light);
    box-shadow: 0 0 0 4px rgba(217, 70, 168, 0.1);
}

.form-success-msg {
    text-align: center;
    padding: 20px 0;
}

.form-success-msg i {
    font-size: 3.5rem;
    color: #10B981;
    margin-bottom: 15px;
}

.form-success-msg h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.footer-contact h4 {
    color: var(--clr-white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 3px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-details p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.footer-contact-details i {
    color: var(--clr-primary-light);
    font-size: 0.9rem;
    margin-top: 3px;
}

@media (max-width: 991px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-links h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-details p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 1200px) {
    .hero.hero-video .hero-container {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100% !important;
        margin-top: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero.hero-video .hero-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-stats-mini {
    display: flex;
    gap: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(217, 70, 168, 0.1);
}

.hero-stat-item strong {
    display: block;
    font-size: 1.6rem;
    font-family: var(--font-primary);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-item span {
    font-size: 0.82rem;
    color: var(--clr-body-light);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: gentleBlink 6s ease-in-out infinite alternate;
}

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

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

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

.hero-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: var(--clr-white);
    padding: 14px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--clr-heading);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card i {
    font-size: 1.2rem;
}

.hero-floating-card.card-1 {
    top: 12%;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-card.card-1 i {
    color: var(--clr-primary);
}

.hero-floating-card.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 2s;
}

.hero-floating-card.card-2 i {
    color: var(--clr-accent);
}

@keyframes floatCard {

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

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.about {
    padding: var(--section-py) 0;
    background: var(--clr-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-brand);
    color: var(--clr-white);
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(217, 70, 168, 0.35);
}

.about-experience-badge .exp-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-primary);
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content .main-heading {
    font-size: 2.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
    color: var(--clr-heading);
    font-weight: 800;
}

.about-content .accent-text {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.about-content .secondary-heading {
    font-size: 1.8rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--clr-heading);
}

.about-description {
    margin-bottom: 35px;
}

.about-description p {
    color: var(--clr-body-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.btn-chat {
    background: var(--gradient-brand);
    color: var(--clr-white) !important;
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(217, 70, 168, 0.3);
}

.btn-chat i {
    margin-right: 8px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--gradient-soft);
    transition: var(--transition);
    border: 1px solid rgba(217, 70, 168, 0.06);
}

.about-feature-item:hover {
    transform: translate(8px, -4px);
    box-shadow: var(--shadow-md);
    background: var(--clr-white);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.1rem;
}

.about-feature-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--clr-heading);
}

.about-feature-item p {
    font-size: 0.88rem;
    color: var(--clr-body-light);
    line-height: 1.5;
}


/* Excellence Dashboard (About Us) */
.excellence-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.dash-card {
    background: var(--clr-white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(217, 70, 168, 0.05);
    transition: var(--transition);
}

.dash-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary);
}

.dash-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(217, 70, 168, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.dash-stat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-primary);
    font-weight: 700;
}

.dash-info h4 {
    font-size: 1.1rem;
    margin: 0;
}


.journey-pill.active {
    background: var(--gradient-brand);
    color: var(--clr-white);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(217, 70, 168, 0.3);
}

/* Color Coding */
.journey-pill[data-prog="preprimary"].active {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.journey-pill[data-prog="primary"].active {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    color: var(--clr-heading);
}

.journey-pill[data-prog="middle"].active {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: var(--clr-heading);
}

.journey-pill[data-prog="senior"].active {
    background: linear-gradient(135deg, #a6c0fe 0%, #f68084 100%);
}

.compact-viewer.theme-preprimary #compact-title {
    color: #d63384;
}

.compact-viewer.theme-primary #compact-title {
    color: #0d6efd;
}

.compact-viewer.theme-middle #compact-title {
    color: #198754;
}

.compact-viewer.theme-senior #compact-title {
    color: #6f42c1;
}

.pill-num {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.9rem;
    opacity: 0.5;
}

.journey-pill.active .pill-num {
    opacity: 1;
}

.pill-text h4 {
    font-size: 1rem;
    margin: 0;
}

.pill-text span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.toggle-journey-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--clr-white);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--clr-primary);
    transition: var(--transition);
}

.toggle-journey-btn:hover {
    background: var(--clr-primary);
    color: var(--white);
    transform: rotate(180deg);
}

.compact-viewer {
    background: var(--bg-section-alt);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    transition: var(--transition);
}

#compact-viewer-content {
    display: flex;
    height: 100%;
    transition: var(--transition);
}

.viewer-img-wrap {
    flex: 1;
}

.viewer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viewer-details {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.viewer-details h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.viewer-details p {
    font-size: 0.95rem;
    color: var(--clr-body);
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .programs-split-layout {
        grid-template-columns: 1fr;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .journey-navigation-compact {
        flex-direction: column;
    }

    #compact-viewer-content {
        flex-direction: column;
    }

    .compact-viewer {
        height: auto;
    }

    .viewer-img-wrap {
        height: 200px;
    }
}


.services {
    padding: var(--section-py) 0;
    background: var(--clr-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--gradient-soft);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    transition: var(--transition);
    border: 1px solid rgba(217, 70, 168, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-brand);
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    background: var(--clr-white);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--clr-body-light);
    line-height: 1.7;
}

.school-brands {
    padding: 60px 0;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.school-brands::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 70, 168, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.school-brands::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 70, 168, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.brands-wrapper {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 60px;
    align-items: center;
}

.brands-info .section-title {
    font-size: 2.5rem;
    color: var(--clr-heading);
    margin-bottom: 24px;
}

.brands-info .section-desc {
    color: var(--clr-body-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.btn-brand {
    background: var(--gradient-brand);
    color: var(--clr-white);
    padding: 12px 36px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(217, 70, 168, 0.25);
}

.btn-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 70, 168, 0.35);
    color: var(--clr-white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
    background: transparent;
    border: none;
}

.brand-item {
    background: var(--clr-white);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}


.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(217, 70, 168, 0.1);
    border-color: rgba(217, 70, 168, 0.2);
    background: var(--clr-white);
}

.brand-item img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
    .brands-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brands-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.campus-life {
    padding: var(--section-py) 0;
    background: var(--bg-section-alt);
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

.campus-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.campus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.campus-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.campus-content {
    padding: 24px;
}

.campus-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--clr-heading);
}

.campus-content p {
    font-size: 0.95rem;
    color: var(--clr-body);
}


.testimonials {
    padding: var(--section-py) 0;
    background: #fce3ef;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;

}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    gap: 24px;
    cursor: grab;
    padding-bottom: 5px;

}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: 35px 40px;
    border: 1px solid rgba(217, 70, 168, 0.06);
    overflow: hidden;
    position: relative;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}


.testimonial-quote {
    margin-bottom: 16px;
}

.testimonial-quote i {
    font-size: 2rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.testimonial-card>p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--clr-body);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--clr-body-light);
}

.testimonial-stars i {
    color: var(--clr-accent);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    width: 100%;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(43, 22, 77, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    margin: 0;
}

.dot.active {
    width: 32px;
    border-radius: 12px;
    background: var(--gradient-brand);
    box-shadow: 0 4px 10px rgba(217, 70, 168, 0.3);
}

.dot:hover {
    background: rgba(43, 22, 77, 0.2);
}



.card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-brand);
    width: 0%;
    z-index: 10;
    border-radius: 0 0 20px 20px;
}




.footer {
    background: var(--clr-heading);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    line-height: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: -1px;
    background: transparent;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.footer .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 35% 20% 30%;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.65);
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    color: var(--clr-white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--clr-white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 3px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    font-size: 1.1rem;
    opacity: 0;
    transition: var(--transition-fast);
    transform: translateX(-8px);
}

.footer-links a:hover {
    color: var(--clr-white);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact h4 {
    color: var(--clr-white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 3px;
}

.footer-newsletter>p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--gradient-brand);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--clr-white);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-contact-mini p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-contact-mini i {
    color: var(--clr-primary-light);
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--clr-white);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--clr-white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(217, 70, 168, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(217, 70, 168, 0.45);
}

/* Contact Section */
.contact {
    padding: var(--section-py) 0;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--clr-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(217, 70, 168, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary-light);
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--clr-body-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--clr-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(217, 70, 168, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-heading);
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid #E5E7EB;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: #F9FAFB;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    background: var(--clr-white);
    border-color: var(--clr-primary-light);
    box-shadow: 0 0 0 4px rgba(217, 70, 168, 0.1);
}

.form-success-msg {
    text-align: center;
    padding: 40px 0;
}

.form-success-msg i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 20px;
}

.form-success-msg h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}


@media (max-width: 1200px) {

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

@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero.hero-video .hero-container {
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats-mini {
        justify-content: center;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .tab-pane {
        flex-direction: column;
        text-align: center;
    }

    .pane-tags {
        justify-content: center;
    }

    .pane-graphic {
        order: -1;
        width: 140px;
        height: 140px;
        font-size: 3.5rem;
    }

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

    .campus-grid, .partner-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .campus-grid::-webkit-scrollbar, .partner-grid::-webkit-scrollbar {
        display: none;
    }

    .campus-card, .partner-card {
        flex: 0 0 calc(50vw - 25px);
        scroll-snap-align: center;
    }




    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-social {
        justify-content: center;
    }

    .video-section {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 90px 40px 60px;
        gap: 10px;
        align-items: flex-start;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1005;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 0;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        border: none;
        width: 100%;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .nav-cta {
        margin: 20px 0 0 0;
        width: 100%;
        text-align: center;
    }
    }

    .nav-link.active {
        color: var(--clr-primary);
    }

    /* ===== Mobile Mega Menu — Full Reset ===== */
    .mega-menu {
        /* Reset all desktop positioning */
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;

        /* Reset desktop visibility/animation */
        opacity: 1 !important;
        visibility: visible !important;

        /* Reset desktop grid */
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;

        /* Reset desktop decoration */
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;

        /* Accordion behaviour */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .has-dropdown:hover .mega-menu {
        /* Prevent desktop hover from opening on touch devices */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .has-dropdown.active .mega-menu {
        max-height: 2500px;
        padding: 8px 0 10px 20px !important;
        overflow: visible;
    }

    .has-dropdown.active>.nav-link i {
        transform: rotate(180deg);
    }

    /* Category heads — simple list */
    .mega-heads {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        border-right: none;
        padding-right: 0;
        overflow: visible;
    }

    /* Hide the separate .mega-content container on mobile */
    .mega-content {
        display: none !important;
    }

    .mega-head-item {
        padding: 10px 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--clr-body);
        background: transparent !important;
        border-radius: 0 !important;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
        padding-left: 0 !important;
    }

    .mega-head-item i {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .mega-head-item.active i {
        transform: rotate(90deg);
    }

    /* Inline accordion panes injected by JS below each head item */
    .mega-accordion-pane {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
        opacity: 0;
    }

    .mega-accordion-pane.open {
        max-height: 800px;
        opacity: 1;
    }

    .mega-content-grid {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 4px 0 8px 0;
    }

    .mega-link-item {
        display: block;
        padding: 9px 0 9px 10px;
        font-size: 0.95rem;
        color: var(--clr-body);
        opacity: 0.75;
        border-left: 2px solid rgba(217, 70, 168, 0.15);
    }

    .mega-link-item:hover {
        transform: none;
    }

    /* Hide visual preview on mobile */
    .mega-visual {
        display: none !important;
    }

    .nav-cta-btn {
        display: none;
    }

@media (max-width: 768px) {
    :root {
        --section-py: 60px;
    }

    .top-bar {
        display: none !important;
    }

    .hero {
        min-height: 100vh;
        padding: 95px 0 30px;
    }

    .hero-video-bg {
        top: 75px;
        height: calc(100% - 75px);
    }
    
    .hero.hero-video .hero-bg-overlay {
        top: 75px;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .hero-floating-card {
        display: none;
    }

    .hero-stats-mini {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 calc(100% - 30px);
        scroll-snap-align: center;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(217, 70, 168, 0.05);
        margin: 5px 0;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #e0e0e0;
        cursor: pointer;
        transition: var(--transition);
    }

    .dot.active {
        background: var(--gradient-brand);
        width: 24px;
        border-radius: 10px;
    }

    .campus-grid, .partner-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .campus-grid::-webkit-scrollbar, .partner-grid::-webkit-scrollbar {
        display: none;
    }

    .campus-card, .partner-card {
        flex: 0 0 calc(100vw - 30px);
        scroll-snap-align: center;
    }


    .testimonials-wrapper {
        flex-wrap: wrap;
    }

    .testimonials-slider {
        order: -1;
        width: 100%;
    }

    .test-nav {
        margin: 0 10px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }





    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stat-item strong {
        font-size: 1.3rem;
    }


    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .pane-content h3 {
        font-size: 1.6rem;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -16px;
        padding: 14px 20px;
    }

    .about-experience-badge .exp-number {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item span {
        font-size: 1.3rem;
    }


    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: var(--radius-sm);
        width: 100%;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {

    .top-bar,
    .navbar,
    .hero-particles,
    .back-to-top,
    .whatsapp-float,
    .hero-wave,
    .footer-wave {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}