/* ===================================================
   RICHWOOD SCHOOL
   GLOBAL DESIGN SYSTEM
=================================================== */

/* ===================================================
   GOOGLE FONT
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ===================================================
   ROOT VARIABLES
=================================================== */

:root {

    /* Brand Colors */

    --primary: #0F172A;
    --primary-light: #1E293B;

    --secondary: #2563EB;
    --secondary-light: #3B82F6;

    --accent: #F59E0B;

    --success: #10B981;

    /* Neutral */

    --white: #FFFFFF;

    --background: #F8FAFC;

    --surface: #FFFFFF;

    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;

    --dark: #020617;

    /* Typography */

    --fs-xs: .75rem;
    --fs-sm: .875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 3rem;
    --fs-4xl: 4rem;
    --fs-5xl: 5rem;

    /* Spacing */

    --space-1: .5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 6rem;
    --space-8: 8rem;

    /* Radius */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    /* Shadows */

    --shadow-sm:
        0 2px 8px rgba(0,0,0,.05);

    --shadow-md:
        0 10px 30px rgba(0,0,0,.08);

    --shadow-lg:
        0 20px 60px rgba(0,0,0,.12);

    /* Layout */

    --container-width: 1200px;

    --transition:
        all .35s ease;

}

/* ===================================================
   RESET
=================================================== */

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Manrope', sans-serif;

    background: var(--white);

    color: var(--primary);

    line-height: 1.7;

    overflow-x: hidden;

}

img {

    width: 100%;

    display: block;

}

a {

    text-decoration: none;

    color: inherit;

}

ul {

    list-style: none;

}

button {

    border: none;

    background: none;

    cursor: pointer;

    font-family: inherit;

}

input,
textarea {

    font-family: inherit;

}

/* ===================================================
   TYPOGRAPHY
=================================================== */

h1,
h2,
h3,
h4,
h5 {

    line-height: 1.2;

    font-weight: 800;

    color: var(--primary);

}

h1 {

    font-size: clamp(3rem, 5vw, 5rem);

}

h2 {

    font-size: clamp(2rem, 4vw, 3.5rem);

}

h3 {

    font-size: 1.5rem;

}

p {

    color: var(--gray-600);

    font-size: 1rem;

}

/* ===================================================
   CONTAINER
=================================================== */

.container {

    width: min(90%, var(--container-width));

    margin-inline: auto;

}

/* ===================================================
   GLOBAL SECTION
=================================================== */

section {

    padding: 100px 0;

}

.section-header {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 60px;

}

.section-header h2 {

    margin-bottom: 20px;

}

.section-tag {

    display: inline-flex;

    align-items: center;

    gap: .5rem;

    padding: .7rem 1.2rem;

    border-radius: 999px;

    background: rgba(37,99,235,.1);

    color: var(--secondary);

    font-size: .9rem;

    font-weight: 700;

    margin-bottom: 20px;

}

/* ===================================================
   BUTTONS
=================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: .5rem;

    padding: 16px 30px;

    border-radius: 999px;

    font-weight: 700;

    transition: var(--transition);

}

.btn-primary {

    background: var(--secondary);

    color: var(--white);

}

.btn-primary:hover {

    transform: translateY(-3px);

    background: var(--primary);

}

.btn-outline {

    border: 2px solid var(--secondary);

    color: var(--secondary);

}

.btn-outline:hover {

    background: var(--secondary);

    color: var(--white);

}

.btn-light {

    background: var(--white);

    color: var(--primary);

}

.btn:focus-visible,
.hamburger:focus-visible,
.staff-card:focus-visible {
    outline: 3px solid rgba(37,99,235,.8);
    outline-offset: 4px;
}

.header {
    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition: var(--transition);

}

.header.scrolled {

    background: rgba(255,255,255,.95);

    backdrop-filter: blur(15px);

    box-shadow: var(--shadow-sm);

}

.navbar {



    height: 90px;



    display: flex;



    align-items: center;



    justify-content: space-between;



}

.logo {

    display: flex;

    align-items: center;

    gap: 1rem;

}

.logo img {

    width: 100px;

}

.logo-text h3 {

    font-size: 1.1rem;

}

.logo-text span {

    font-size: .8rem;

    color: var(--gray-500);

}
/* ===================================================
   NAVIGATION
=================================================== */

.nav-menu ul {

    display: flex;

    align-items: center;

    gap: 2rem;

}

.nav-menu a {

    font-weight: 600;

    color: var(--gray-700);

    transition: var(--transition);

    position: relative;

}

.nav-menu a:hover,
.nav-menu a.active {

    color: var(--secondary);

}

.nav-menu a::after {

    content: '';

    position: absolute;

    bottom: -8px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--secondary);

    transition: var(--transition);

}

.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;

}

.nav-actions {

    display: flex;

    align-items: center;

    gap: 1rem;

}

.hamburger {

    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

}

.hamburger span {

    width: 28px;

    height: 3px;

    border-radius: 20px;

    background: var(--primary);

}

/* ===================================================
   HERO SECTION
=================================================== */

.hero {

    position: relative;

    padding-top: 180px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );

    overflow: hidden;

}

.hero-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 5rem;

    align-items: center;

}

.hero-content h1 {

    margin: 1.5rem 0;

}

.hero-content p {

    font-size: 1.1rem;

    margin-bottom: 2rem;

    max-width: 650px;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    padding: .75rem 1.25rem;

    border-radius: 999px;

    background: rgba(37,99,235,.08);

    color: var(--secondary);

    font-weight: 700;

}

.hero-buttons {

    display: flex;

    gap: 1rem;

    margin-bottom: 3rem;

}

.hero-stats {

    display: flex;

    gap: 1.5rem;

    flex-wrap: wrap;

}

.stat-card {

    background: var(--white);

    border-radius: 20px;

    padding: 1.5rem;

    min-width: 150px;

    box-shadow: var(--shadow-md);

}

.stat-card h3 {

    color: var(--secondary);

    font-size: 2rem;

}

.stat-card span {

    color: var(--gray-500);

}

.hero-visual {

    position: relative;

}

.hero-image-wrapper {

    position: relative;

}

.hero-image-wrapper img {

    border-radius: 32px;

    box-shadow: var(--shadow-lg);

}

.hero-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

}

.hero-shape-1 {

    width: 400px;

    height: 400px;

    background: rgba(37,99,235,.15);

    top: -120px;

    right: -120px;

}

.hero-shape-2 {

    width: 300px;

    height: 300px;

    background: rgba(245,158,11,.15);

    bottom: -80px;

    left: -100px;

}

.floating-card {

    position: absolute;

    background: var(--white);

    padding: 1rem;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

    max-width: 220px;

}

.floating-card h4 {

    margin-bottom: .5rem;

}

.floating-card p {

    font-size: .9rem;

}

.card-one {

    top: 40px;

    left: -60px;

}

.card-two {

    bottom: 40px;

    right: -40px;

}

.card-three {

    top: 50%;

    right: -70px;

}

/* ===================================================
   TRUST STRIP
=================================================== */

.trust-strip {

    padding: 30px 0;

    background: var(--primary);

}

.trust-grid {

    display: grid;

    grid-template-columns: repeat(5,1fr);

    gap: 1rem;

}

.trust-item {

    text-align: center;

    color: var(--white);

    font-weight: 700;

}

/* ===================================================
   ABOUT PREVIEW
=================================================== */

.section-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 5rem;

    align-items: center;

}

.section-image img {

    border-radius: 30px;

    box-shadow: var(--shadow-lg);

}

.section-content h2 {

    margin: 1rem 0 1.5rem;

}

.section-content p {

    margin-bottom: 1.25rem;

}

/* ===================================================
   WHY CHOOSE US
=================================================== */

.why-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 2rem;

}

.feature-card {

    background: var(--white);

    padding: 2rem;

    border-radius: 24px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.feature-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: rgba(37,99,235,.1);

    font-size: 2rem;

    margin-bottom: 1rem;

}

.feature-card h3 {

    margin-bottom: 1rem;

}

/* ===================================================
   CBC SECTION
=================================================== */

.cbc-section {

    background: var(--gray-50);

}

.cbc-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 2rem;

}

.cbc-card {

    background: var(--white);

    padding: 2rem;

    border-radius: 24px;

    box-shadow: var(--shadow-sm);

}

.cbc-card h3 {

    margin-bottom: 1rem;

    color: var(--secondary);

}

/* ===================================================
   ACADEMIC JOURNEY
=================================================== */

.journey-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 2rem;

}

.journey-card {

    background: linear-gradient(
        135deg,
        var(--secondary),
        #60A5FA
    );

    color: var(--white);

    padding: 2rem;

    border-radius: 24px;

    text-align: center;

}

.journey-card span {

    display: inline-flex;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: rgba(255,255,255,.2);

    align-items: center;

    justify-content: center;

    font-weight: 800;

    margin-bottom: 1rem;

}

.journey-card h3 {

    color: var(--white);

}
/* ===================================================
   STUDENT LIFE
=================================================== */

.student-life {

    background: var(--gray-50);

}

.activities-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 2rem;

}

.activity-card {

    background: var(--white);

    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.activity-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.activity-card img {

    height: 260px;

    object-fit: cover;

}

.activity-content {

    padding: 1.5rem;

}

.activity-content h3 {

    margin-bottom: .75rem;

}

/* ===================================================
   COMMUNITY SERVICE LEARNING
=================================================== */

.csl-section {

    position: relative;

    overflow: hidden;

}

.csl-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 2rem;

}

.csl-card {

    background: var(--white);

    padding: 2rem;

    border-radius: 24px;

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.csl-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.csl-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 1rem;

    border-radius: 50%;

    background: rgba(37,99,235,.1);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

}

.csl-card h3 {

    margin-bottom: 1rem;

}

/* ===================================================
   STATISTICS
=================================================== */

.statistics-section {

    background:

        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 2rem;

}

.stats-item {

    text-align: center;

    color: var(--white);

}

.stats-item h2 {

    color: var(--white);

    font-size: 4rem;

    margin-bottom: .5rem;

}

.stats-item p {

    color: rgba(255,255,255,.8);

    font-size: 1.05rem;

}

/* ===================================================
   GALLERY PREVIEW
=================================================== */

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 1.5rem;

}

.gallery-item {

    overflow: hidden;

    border-radius: 24px;

    position: relative;

}

.gallery-item img {

    height: 320px;

    object-fit: cover;

    transition: .6s ease;

}

.gallery-item:hover img {

    transform: scale(1.08);

}

.section-button {

    text-align: center;

    margin-top: 3rem;

}

/* ===================================================
   TESTIMONIALS
=================================================== */

.testimonials {

    background: var(--gray-50);

}

.testimonial-card {

    background: var(--white);

    padding: 3rem;

    border-radius: 30px;

    box-shadow: var(--shadow-md);

    text-align: center;

    max-width: 850px;

    margin: auto;

}

.testimonial-card p {

    font-size: 1.15rem;

    margin-bottom: 2rem;

}

.testimonial-card h4 {

    color: var(--secondary);

}

.swiper {

    padding-bottom: 3rem;

}

/* ===================================================
   ADMISSION CTA
=================================================== */

.admission-cta {

    position: relative;

}

.cta-content {

    background:

        linear-gradient(
            135deg,
            var(--secondary),
            #60A5FA
        );

    padding: 5rem;

    border-radius: 40px;

    text-align: center;

    color: var(--white);

}

.cta-content .section-tag {

    background: rgba(255,255,255,.15);

    color: var(--white);

}

.cta-content h2 {

    color: var(--white);

    margin-bottom: 1rem;

}

.cta-content p {

    color: rgba(255,255,255,.9);

    max-width: 700px;

    margin: auto auto 2rem;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 1rem;

}

/* ===================================================
   HERO FOOTER
=================================================== */

.hero-footer {

    background:

        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );

    text-align: center;

    color: var(--white);

}

.hero-footer-content {

    max-width: 900px;

    margin: auto;

}

.hero-footer-content span {

    display: inline-block;

    margin-bottom: 1rem;

    color: var(--accent);

    font-weight: 700;

}

.hero-footer-content h2 {

    color: var(--white);

    margin-bottom: 1.5rem;

}

.hero-footer-content p {

    color: rgba(255,255,255,.85);

    margin-bottom: 2rem;

}

/* ===================================================
   FOOTER
=================================================== */

.footer {

    background: #020617;

    color: rgba(255,255,255,.85);

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.2fr;

    gap: 3rem;

}

.footer-column h4 {

    color: var(--white);

    margin-bottom: 1.5rem;

}

.footer-column ul {

    display: flex;

    flex-direction: column;

    gap: 1rem;

}

.footer-column ul li {

    color: rgba(255,255,255,.7);

}

.footer-column ul li a {

    transition: var(--transition);

}

.footer-column ul li a:hover {

    color: var(--white);

}

.footer-logo {

    display: flex;

    align-items: center;

    gap: 1rem;

    margin-bottom: 1.5rem;

}

.footer-logo img {

    width: 70px;

}

.footer-logo h3 {

    color: var(--white);

}

.footer-logo span {

    color: rgba(255,255,255,.6);

}

.footer-socials {

    display: flex;

    gap: 1rem;

    margin-top: 1.5rem;

}

.footer-socials a {

    transition: var(--transition);

}

.footer-socials a:hover {

    color: var(--white);

}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,.08);

    margin-top: 4rem;

    padding: 2rem 0;

}

.footer-bottom-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

/* ===================================================
   WHATSAPP FLOAT
=================================================== */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: var(--shadow-lg);

    z-index: 999;

    transition: var(--transition);

}

.whatsapp-float:hover {

    transform: translateY(-6px);

}

/* ===================================================
   MOBILE MENU
=================================================== */

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 320px;

    height: 100vh;

    background: var(--white);

    z-index: 9999;

    transition: .4s ease;

    padding: 2rem;

    box-shadow: var(--shadow-lg);

}

.mobile-menu.active {

    right: 0;

}

.mobile-menu-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 2rem;

}

.close-menu {

    font-size: 2rem;

    font-weight: 700;

}

.mobile-menu ul {

    display: flex;

    flex-direction: column;

    gap: 1.5rem;

}

.mobile-menu a {

    font-size: 1.05rem;

    font-weight: 600;

}

/* ===================================================
   ANIMATIONS
=================================================== */

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}

.card-one,
.card-two,
.card-three {

    animation: float 5s ease-in-out infinite;

}

.card-two {

    animation-delay: 1s;

}

.card-three {

    animation-delay: 2s;

}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    background:
        radial-gradient(circle at top right, rgba(0,174,255,.12), transparent 45%),
        radial-gradient(circle at bottom left, rgba(0,255,170,.08), transparent 45%),
        linear-gradient(135deg,#06121f,#08182b,#092536);
}

/* Grid Background */

.testimonials .testimonial-bg{
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size:70px 70px;
    opacity:.4;
}

/* Glow */

.testimonials::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    left:50%;
    top:-280px;
    transform:translateX(-50%);
    background:#0d6efd;
    filter:blur(220px);
    opacity:.12;
    pointer-events:none;
}

/*============================
Section Header
============================*/

.testimonials .section-header{
    position:relative;
    text-align:center;
    max-width:900px;
    margin:auto auto 80px;
}

.testimonials .section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:999px;
    background:rgba(13,110,253,.12);
    border:1px solid rgba(13,110,253,.25);
    color:#7cb8ff;
    font-weight:600;
    font-size:.95rem;
    letter-spacing:.5px;
    backdrop-filter:blur(14px);
    margin-bottom:30px;
}

.testimonials .section-header h2{
    font-size:clamp(2.8rem,5vw,4.6rem);
    font-weight:800;
    line-height:1.1;
    margin-bottom:30px;
    background:linear-gradient(
        90deg,
        #ffffff,
        #dbeeff,
        #ffffff
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.testimonials .section-description{
    font-size:1.15rem;
    color:#c3d0dc;
    line-height:1.9;
    max-width:850px;
    margin:auto;
}

/*============================
Swiper
============================*/

.testimonials .testimonialSwiper{
    overflow:visible;
}

.testimonials .swiper-slide{
    height:auto;
}

/*============================
Card
============================*/

.testimonials .testimonial-card{
    position:relative;
    padding:45px;
    border-radius:28px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.04)
        );
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(22px);
    overflow:hidden;
    transition:.45s ease;
    min-height:340px;
}

.testimonials .testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        #00d4ff,
        #00ff99
    );
}

.testimonials .testimonial-card::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(0,212,255,.08);
    right:-100px;
    bottom:-100px;
    transition:.5s;
}

.testimonials .testimonial-card:hover{
    transform:translateY(-12px);
    box-shadow:
        0 35px 70px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.testimonials .testimonial-card:hover::after{
    transform:scale(1.4);
}

/*============================
Quote
============================*/

.testimonials .quote-icon{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-bottom:30px;
    font-size:26px;
    color:#fff;
    background:linear-gradient(
        135deg,
        #00b4ff,
        #00e58b
    );
    box-shadow:0 12px 35px rgba(0,180,255,.35);
}

/*============================
Stars
============================*/

.testimonials .stars{
    display:flex;
    gap:6px;
    color:#FFD54F;
    font-size:18px;
    margin-bottom:22px;
}

/*============================
Text
============================*/

.testimonials .testimonial-card p{
    color:#eef5fb;
    font-size:1.08rem;
    line-height:1.95;
    margin-bottom:35px;
}

/*============================
User
============================*/

.testimonials .testimonial-user{
    display:flex;
    align-items:center;
    gap:18px;
}

.testimonials .testimonial-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #00d4ff;
}

.testimonials .testimonial-avatar{
    width:70px;
    height:70px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    flex-shrink:0;
    background:linear-gradient(135deg, #c58d2d, #14532d);
    color:#fff;
    font-size:1rem;
    font-weight:800;
    letter-spacing:.08em;
    box-shadow:0 14px 34px rgba(0,0,0,.22);
}

.testimonials .testimonial-user h4{
    color:#fff;
    font-size:1.1rem;
    margin-bottom:6px;
}

.testimonials .testimonial-user span{
    color:#9db0c2;
    font-size:.95rem;
}

/*============================
Stats
============================*/

.testimonials .testimonial-stats{
    margin-top:90px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:60px;
}

.testimonials .testimonial-stats div{
    text-align:center;
}

.testimonials .testimonial-stats h3{
    font-size:3rem;
    color:#fff;
    margin-bottom:10px;
}

.testimonials .testimonial-stats span{
    color:#b8c7d6;
}

/*============================
Pagination
============================*/

.testimonials .swiper-pagination-bullet{
    background:#4e6b86;
    opacity:1;
}

.testimonials .testimonial-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:32px;
}

.testimonials .swiper-pagination-bullet-active{
    width:28px;
    border-radius:999px;
    background:#00d4ff;
}

/*============================
Navigation
============================*/

.testimonials .swiper-button-next,
.testimonials .swiper-button-prev{
    color:#00d4ff;
}

/*============================
Responsive
============================*/

@media(max-width:992px){

    .testimonials{
        padding:90px 0;
    }

    .testimonials .testimonial-card{
        padding:35px;
    }

    .testimonials .testimonial-stats{
        gap:35px;
    }

}

@media(max-width:768px){

    .testimonials .section-header h2{
        font-size:2.6rem;
    }

    .testimonials .section-description{
        font-size:1rem;
    }

    .testimonials .testimonial-card{
        padding:28px;
        min-height:auto;
    }

    .testimonials .testimonial-stats{
        flex-direction:column;
        gap:25px;
    }

}
.academic-journey{

    padding:120px 0;
    background:#f8fbff;
    
    }
    
    .timeline{
    
    position:relative;
    margin-top:80px;
    margin-bottom:70px;
    
    }
    
    .timeline-line{
    
    position:absolute;
    top:34px;
    left:0;
    right:0;
    height:4px;
    background:#dce6ff;
    border-radius:10px;
    
    }
    
    .timeline-progress{
    
    position:absolute;
    top:34px;
    left:0;
    width:0;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
    border-radius:10px;
    transition:.4s;
    
    }
    
    .timeline-items{
    
    display:flex;
    justify-content:space-between;
    position:relative;
    z-index:2;
    gap:10px;
    
    }
    
    .timeline-item{
    
    cursor:pointer;
    text-align:center;
    width:100%;
    transition:.3s;
    
    }
    
    .circle{
    
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:white;
    border:4px solid #2563eb;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    transition:.3s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    
    }
    
    .timeline-item span{
    
    display:block;
    margin-top:15px;
    font-weight:600;
    color:#555;
    
    }
    
    .timeline-item.active .circle{
    
    background:#2563eb;
    color:white;
    transform:scale(1.1);
    
    }
    
    .timeline-item.active span{
    
    color:#2563eb;
    
    }
    
    .journey-content{
    
    max-width:700px;
    margin:auto;
    text-align:center;
    background:white;
    padding:50px;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    
    }
    
    .journey-content h3{
    
    font-size:36px;
    margin-bottom:15px;
    
    }
    
    .journey-content p{
    
    font-size:22px;
    color:#2563eb;
    margin-bottom:30px;
    
    }
    
    .journey-content ul{
    
    list-style:none;
    padding:0;
    
    }
    
    .journey-content li{
    
    padding:12px 0;
    font-size:18px;
    
    }
    
    .journey-content li::before{
    
    content:"✓";
    margin-right:12px;
    color:#2563eb;
    font-weight:bold;
    
    }
    
    @media(max-width:991px){
    
    .timeline{
    
    overflow-x:auto;
    padding-bottom:20px;
    
    }
    
    .timeline-items{
    
    width:1200px;
    
    }
    
    }
    /*==============================
ACADEMIC JOURNEY
===============================*/

.academic-journey{
    padding:120px 0;
    background:#f8fbff;
    overflow:hidden;
}

.journey-timeline{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin:80px 0;
    gap:20px;
}

.timeline-line{
    position:absolute;
    top:45px;
    left:5%;
    right:5%;
    height:3px;
    background:#d8e3ff;
    z-index:1;
}

.timeline-stage{
    position:relative;
    flex:1;
    text-align:center;
    z-index:2;
    cursor:pointer;
    transition:.35s;
}

.timeline-stage h4{
    font-size:16px;
    font-weight:700;
    color:#16213e;
    margin-bottom:18px;
}

.timeline-stage small{
    display:block;
    margin-top:18px;
    font-size:13px;
    line-height:1.5;
    color:#666;
    max-width:90px;
    margin-left:auto;
    margin-right:auto;
}

.dot{
    width:18px;
    height:18px;
    display:block;
    margin:auto;
    border-radius:50%;
    background:#fff;
    border:4px solid #2f66f3;
    transition:.35s;
}

.timeline-stage.active .dot{

    background:#2f66f3;
    transform:scale(1.4);
    box-shadow:0 0 0 8px rgba(47,102,243,.15);

}

.timeline-stage.active h4{

    color:#2f66f3;

}

.timeline-stage:hover .dot{

    transform:scale(1.2);

}

/*==============================
Journey Card
===============================*/

.journey-card{

    max-width:520px;
    margin:70px auto 0;
    background:#fff;
    border-radius:24px;
    padding:50px;
    text-align:center;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.35s;

}

.journey-number{

    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    border:2px solid #d8e3ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    color:#2f66f3;

}

.journey-icon{

    font-size:54px;
    margin:25px 0;

}

.journey-card h3{

    font-size:36px;
    margin-bottom:12px;
    color:#16213e;

}

.journey-card p{

    color:#2f66f3;
    font-size:20px;
    margin-bottom:35px;
    font-weight:600;

}

.journey-card ul{

    list-style:none;
    padding:0;
    margin:0;
    text-align:left;

}

.journey-card li{

    font-size:17px;
    padding:12px 0;
    border-bottom:1px solid #edf2ff;

}

.journey-card li:last-child{

    border:none;

}

.journey-card li::before{

    content:"✓";
    color:#2f66f3;
    font-weight:bold;
    margin-right:12px;

}

/*==============================
Responsive
===============================*/

@media(max-width:1100px){

    .journey-timeline{

        overflow-x:auto;
        padding-bottom:20px;
        gap:40px;

    }

    .journey-timeline::-webkit-scrollbar{

        height:6px;

    }

    .journey-timeline::-webkit-scrollbar-thumb{

        background:#2f66f3;
        border-radius:20px;

    }

    .timeline-line{

        width:1200px;
        left:50px;
        right:auto;

    }

    .timeline-stage{

        min-width:120px;

    }

}

@media(max-width:768px){

    .journey-card{

        padding:35px 25px;

    }

    .journey-card h3{

        font-size:28px;

    }

    .journey-card p{

        font-size:18px;

    }

}
/* ===========================
   NAVBAR
=========================== */

.navbar{
    width:100%;
    background:#111111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 70px;
    box-sizing:border-box;
    box-shadow:0 5px 20px rgba(0,0,0,.18);
}

/* ===========================
   LOGO SECTION
=========================== */

.logo-section{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo-section img{
    width:65px;
    height:65px;
    object-fit:cover;
    border-radius:8px;
}

.school-info h2{
    color:#ffffff;
    font-size:30px;
    font-weight:700;
    margin:0;
    line-height:1.1;
}

.school-info p{
    color:#bdbdbd;
    font-size:15px;
    margin-top:6px;
}

/* ===================================================
   NAVIGATION
=================================================== */

.nav-menu{
    display:flex;
    align-items:center;
}

.nav-menu ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu ul li{
    list-style:none;
}

.nav-menu ul li a{
    text-decoration:none;
    color:#F59E0B;
    font-size:18px;
    font-weight:600;
    position:relative;
    transition:all .3s ease;
}

/* Hover */

.nav-menu ul li a:hover{
    color:#FFFFFF;
}

/* Active */

.nav-menu ul li a.active{
    color:#FFFFFF;
}

/* Underline Animation */

.nav-menu ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#F59E0B;
    border-radius:20px;
    transition:width .3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after{
    width:100%;
}


/* ===================================================
   ENROLL BUTTON
=================================================== */

.btn{
    display:inline-block;
    padding:13px 28px;
    border-radius:35px;
    background:#F59E0B;
    color:#FFFFF;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    transition:.3s ease;
}

.btn:hover{
    background:#FFB733;
    transform:translateY(-2px);
}


/* ===================================================
   NAVBAR
=================================================== */

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#111111;
    padding:18px 60px;
}


/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width:1100px){

    .navbar{
        padding:18px 30px;
    }

    .nav-menu ul{
        gap:22px;
    }

    .nav-menu ul li a{
        font-size:16px;
    }

    .btn{
        padding:12px 22px;
    }

}

@media (max-width:900px){

    .nav-menu{
        display:none;
    }

    .btn{
        display:none;
    }

    .hamburger{
        display:flex;
    }

}
.about-link{
    color:#22c55e !important; /* Green */
}

.about-link:hover{
    color:#16a34a !important;
}

.about-link::after{
    background:#22c55e !important;
}
.admissions-link{
    color:#22c55e !important; /* Green */
}
.admissions-link:hover{
    color:#16a34a !important;
}
.admissions-link::after{
    background:#22c55e !important;
}
.gallery-link{
    color:#22c55e !important; /* Green */
}
.gallery-link:hover{
    color:#16a34a !important;
}
.gallery-link::after{
    background:#22c55e !important;
}
