/* NJ Education Landing Page - Modern UI/UX Design */
:root {
    /* Brand Colors */
    --black: #000000;
    --white: #ffffff;
    --offwhite: #f8f8f8;
    --gray: #7a7a7a;
    --royal: #2e5aac;
    --emerald: #3fae78;
    --gold: #f7b500;
    --purple: #7e57c2;
    --teal: #009688;
    --deep: #003366;
    --bright: #00aeef;
    --leaf: #66bb6a;
    --accent-orange: #ff6f00;
    /* Extended Palette */
    --gradient-primary: linear-gradient(135deg, var(--royal), var(--bright));
    --gradient-success: linear-gradient(135deg, var(--emerald), var(--leaf));
    --gradient-warning: linear-gradient(
        135deg,
        var(--gold),
        var(--accent-orange)
    );
    --gradient-hero: linear-gradient(
        135deg,
        rgba(46, 90, 172, 0.05),
        rgba(63, 174, 120, 0.05)
    );

    /* Layout */
    --max-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 51, 102, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 51, 102, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 51, 102, 0.16);

    /* Animation */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.6s ease-out;
}
/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow),
        visibility var(--transition-slow);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    position: relative;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(46, 90, 172, 0.1);
    border-left-color: var(--royal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.03;
    animation: float 20s infinite linear;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--gradient-success);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: -7s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: var(--gradient-warning);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation-delay: -14s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition-normal),
        box-shadow var(--transition-normal), padding var(--transition-normal),
        min-height var(--transition-normal);
}

/* Ensure page content doesn't sit under the fixed header; use CSS variable set by JS */
main {
    /* padding-top: var(--header-height, 100px); */
    transition: padding-top var(--transition-normal);
}

@media (max-width: 768px) {
    main {
        /* padding-top: var(--header-height, 88px); */
    }
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    min-height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    transition: transform var(--transition-fast);
}

.brand:hover {
    transform: scale(1.02);
}

.brand-logo-wrapper {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.3px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--royal);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep);
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* Buttons */
.btn-cta,
.btn-primary,
.btn-outline,
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

.btn-primary {
    margin: 1rem 0 ;
    background: var(--gradient-success);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    margin: 1rem 0 ;
    border: 2px solid var(--royal);
    color: var(--royal);
    background: transparent;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-hover-lift {
    transition: all var(--transition-normal);
}

.btn-hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 90, 172, 0.1);
    color: var(--royal);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--deep);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-cards {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    width: 280px;
    transition: transform var(--transition-slow);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float-1 6s ease-in-out infinite;
}

.card-2 {
    top: 120px;
    right: 0;
    animation: float-2 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 0;
    left: 40px;
    animation: float-3 6s ease-in-out infinite 4s;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.floating-card h4 {
    margin-bottom: 16px;
    color: var(--deep);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 2s ease-out;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

@keyframes float-1 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-2 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-3 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounce-arrow {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(2px);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.alt {
    background: var(--white);
}

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

.section-title {
    color: var(--deep);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* rest of file omitted for brevity - original commit contains entire stylesheet */

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Lato", system-ui, -apple-system, Arial, Helvetica, sans-serif;
    margin: 0;
    color: var(--deep);
    background: var(--offwhite);
    line-height: 1.6;
    overflow-x: hidden;
}

.loading {
    overflow: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    margin: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin: 0 0 1rem;
}

/* Preloader */
/* .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-slow),
        visibility var(--transition-slow);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    position: relative;
} */

/* .spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(46, 90, 172, 0.1);
    border-left-color: var(--royal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
} */

/* @keyframes spin {
    to {
        transform: rotate(360deg);
    }
} */

/* Background Shapes */
/* .bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
} */
/* 
.shape {
    position: absolute;
    opacity: 0.03;
    animation: float 20s infinite linear;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--gradient-success);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: -7s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: var(--gradient-warning);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation-delay: -14s;
} */

/* @keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(20px) rotate(240deg);
    }
} */

/* Container */
/* .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
} */

/* Header */
/* .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition-normal),
        box-shadow var(--transition-normal), padding var(--transition-normal),
        min-height var(--transition-normal);
} */

/* Ensure page content doesn't sit under the fixed header; use CSS variable set by JS */
/* main {
    padding-top: var(--header-height, 100px); 
    transition: padding-top var(--transition-normal);
} */

/* @media (max-width: 768px) {
    main {
        padding-top: var(--header-height, 88px);
    }
} */
/* 
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
} */
/* 
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    min-height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    transition: transform var(--transition-fast);
}

.brand:hover {
    transform: scale(1.02);
} */
/* 
.brand-logo-wrapper {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */
/* 
.brand-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.3px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
} */
/* 
.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--royal);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
} */
/* 
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep);
    margin: 3px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
} */

/* Buttons */
/* .btn-cta,
.btn-primary,
.btn-outline,
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

.btn-primary {
    background: var(--gradient-success);
    color: var(--white);
    box-shadow: var(--shadow-sm);
} */
/* 
.btn-cta {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    border: 2px solid var(--royal);
    color: var(--royal);
    background: transparent;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
} */
/* 
.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-hover-lift {
    transition: all var(--transition-normal);
}

.btn-hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
} */

/* Hero Section */
/* .hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 90, 172, 0.1);
    color: var(--royal);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--deep);
} */
/* 
.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
} */
/* 
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
} */

/* Hero Visual */
/* .hero-visual {
    position: relative;
}

.hero-cards {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    width: 280px;
    transition: transform var(--transition-slow);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float-1 6s ease-in-out infinite;
}

.card-2 {
    top: 120px;
    right: 0;
    animation: float-2 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 0;
    left: 40px;
    animation: float-3 6s ease-in-out infinite 4s;
} */

/* .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.floating-card h4 {
    margin-bottom: 16px;
    color: var(--deep);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 51, 102, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
} */
/* 
.progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 2s ease-out;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

@keyframes float-1 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-2 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
} */
/* 
@keyframes float-3 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
} */

/* Scroll Indicator */
/* .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounce-arrow {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(2px);
    }
} */

/* Sections */
/* .section {
    padding: 80px 0;
}

.section.alt {
    background: var(--white);
}

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

.section-title {
    color: var(--deep);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
} */

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent, var(--gradient-primary));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent, var(--gradient-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.feature-card h4 {
    margin-bottom: 16px;
    color: var(--deep);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 24px;
}

.feature-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.feature-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--royal);
    text-decoration: none;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.feature-link:hover {
    gap: 12px;
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    text-align: center;
    padding: 40px 24px;
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 24px;
}

.mission-card h3 {
    margin-bottom: 16px;
    color: var(--deep);
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.value-tag {
    background: rgba(46, 90, 172, 0.1);
    color: var(--royal);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.quote {
    background: var(--gradient-hero);
    padding: 24px;
    border-radius: var(--border-radius);
    margin: 32px 0;
    position: relative;
    font-style: italic;
    font-size: 1.1rem;
}

.quote i {
    color: var(--royal);
    margin-right: 8px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.about-feature i {
    color: var(--emerald);
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 24px;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--deep);
}

.testimonial-card cite {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: var(--white);
    border-top: 1px solid rgba(0, 51, 102, 0.08);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.brand-logo-sm {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand-text strong {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: var(--deep);
    display: block;
    margin-bottom: 8px;
}

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

.footer-column h4 ,.social-column h4 {
    color: var(--deep);
    margin-bottom: 20px;
    font-weight: 600;
     text-align: left;
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
     text-align: left;
   
}

.footer-column a:hover {
    color: var(--royal);
}
.social-column{
    text-align: center;
}
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(46, 90, 172, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal);
    transition: all var(--transition-fast);
    margin-bottom: 0 !important;
}

.social-link:hover {
    background: var(--royal);
    color: var(--white);
    transform: translateY(-2px);
}

.muted {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-inner {
        min-height: auto;
    }

    .hero-cards {
        height: 400px;
    }

    .floating-card {
        width: 240px;
        padding: 20px;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

    .cta-features {
        flex-direction: column;
        gap: 16px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .floating-card {
        width: 200px;
        padding: 16px;
    }

    .hero-cards {
        height: 300px;
    }

    .card-1,
    .card-2,
    .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 20px;
    }
}
