/* =========================================
   SCHOOLGRADES LANDING PAGE
   A Product of Cybrun Software
========================================= */

:root{

--primary:#003D99;
--primary-light:#0058D4;
--secondary:#00C7A5;

--dark:#081A36;
--light:#F6F9FD;
--white:#FFFFFF;

--text:#24324B;
--muted:#6E7A91;

--shadow:
0 15px 40px rgba(0,0,0,.12);

--radius:24px;

}

/* ==========================
   RESET
========================== */

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:var(--light);

color:var(--text);

overflow-x:hidden;

line-height:1.6;

}

/* ==========================
   PARTICLES
========================== */

#particles{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

z-index:-1;

pointer-events:none;

}

/* ==========================
   CONTAINER
========================== */

.container{

width:min(1200px,92%);

margin:auto;

}

/* ==========================
   NAVBAR
========================== */

.navbar{

position:fixed;

top:0;
left:0;

width:100%;

z-index:1000;

padding:18px 0;

background:
rgba(0,18,56,.65);

backdrop-filter:blur(16px);

border-bottom:
1px solid rgba(255,255,255,.08);

}

.navbar .container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo-area img{

height:65px;

width:auto;

}

.navbar nav{

display:flex;

align-items:center;

gap:35px;

}

.navbar nav a{

color:white;

text-decoration:none;

font-weight:500;

transition:.3s;

}

.navbar nav a:hover{

color:var(--secondary);

}

.nav-login{

padding:12px 22px;

border-radius:14px;

background:
linear-gradient(
90deg,
var(--primary),
var(--secondary)
);

color:white !important;

}

/* ==========================
   MOBILE MENU
========================== */

#menuBtn{

display:none;

background:none;

border:none;

color:white;

font-size:28px;

cursor:pointer;

}

.mobile-menu{

position:fixed;

top:90px;
left:0;

width:100%;

background:#0B204B;

display:none;

z-index:999;

padding:20px;

}

.mobile-menu a{

display:block;

padding:12px 0;

color:white;

text-decoration:none;

}

/* ===================================
   HERO SECTION
=================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(0,40,110,.82),
        rgba(0,22,70,.88)
    ),
    url('../assets/hero-bg.png');

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}

/* OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(0,199,165,.25),
        transparent 40%
    );

}

/* CONTENT */

.hero-content{

    position:relative;

    z-index:10;

    max-width:900px;

    text-align:center;

    color:#fff;

    padding:140px 20px 80px;

}

/* LOGO */

.hero-logo{

    width:300px;

    max-width:90%;

    margin-bottom:30px;

    filter:
    drop-shadow(
        0 10px 25px rgba(0,0,0,.35)
    );

}

/* BADGE */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    margin-bottom:25px;

    border-radius:999px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,.18);

    font-size:14px;

    font-weight:500;

}

/* HEADING */

.hero h1{

    font-size:4.2rem;

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

}

/* DESCRIPTION */

.hero p{

    font-size:1.15rem;

    line-height:1.9;

    max-width:850px;

    margin:auto;

    color:
    rgba(255,255,255,.92);

}

/* FEATURES */

.hero-features{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:35px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:15px;

    font-weight:500;

}

.hero-features i{

    color:#00C7A5;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:45px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 35px;

    border-radius:16px;

    text-decoration:none;

    font-weight:600;

    background:
    linear-gradient(
        135deg,
        #00C7A5,
        #24F5D0
    );

    color:#07254E;

    transition:.35s;

}

.btn-primary:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 15px 35px rgba(0,199,165,.35);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 35px;

    border-radius:16px;

    text-decoration:none;

    font-weight:600;

    color:#fff;

    border:
    2px solid rgba(255,255,255,.5);

    transition:.35s;

}

.btn-secondary:hover{

    background:
    rgba(255,255,255,.12);

    transform:
    translateY(-4px);

}

/* STATS */

.hero-stats{

    margin-top:60px;

    display:flex;

    justify-content:center;

    gap:50px;

    flex-wrap:wrap;

}

.hero-stat{

    text-align:center;

}

.hero-stat h3{

    font-size:2rem;

    color:#00C7A5;

    font-weight:800;

}

.hero-stat span{

    color:
    rgba(255,255,255,.8);

}

/* FLOATING SHAPES */

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(70px);

    animation:
    floatShape 8s ease-in-out infinite;

}

.hero-shape-1{

    width:350px;

    height:350px;

    background:
    rgba(0,199,165,.25);

    top:-100px;

    right:-100px;

}

.hero-shape-2{

    width:280px;

    height:280px;

    background:
    rgba(0,88,212,.20);

    bottom:-80px;

    left:-80px;

    animation-delay:2s;

}

@keyframes floatShape{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(30px);
    }

    100%{
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:992px){

    .hero h1{

        font-size:3rem;

    }

    .hero-logo{

        width:240px;

    }

}

@media(max-width:768px){

    .hero{

        min-height:auto;

    }

    .hero-content{

        padding-top:130px;

        padding-bottom:80px;

    }

    .hero h1{

        font-size:2.2rem;

    }

    .hero p{

        font-size:1rem;

    }

    .hero-stat h3{

        font-size:1.5rem;

    }

}

/* ==========================
   BUTTONS
========================== */

.hero-buttons{

display:flex;

justify-content:center;

gap:18px;

margin-top:35px;

flex-wrap:wrap;

}

.btn-primary,
.btn-secondary{

padding:16px 34px;

border-radius:16px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.btn-primary{

background:
linear-gradient(
90deg,
var(--secondary),
#2AF5D1
);

color:#082342;

}

.btn-secondary{

border:2px solid white;

color:white;

}

.btn-primary:hover,
.btn-secondary:hover{

transform:
translateY(-3px);

}

/* ==========================
   HERO HIGHLIGHTS
========================== */

.hero-highlights{

margin-top:50px;

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

}

.hero-highlights div{

display:flex;

align-items:center;

gap:8px;

font-size:14px;

}

.hero-highlights i{

color:#7AFFD8;

}

/* ==========================
   SECTIONS
========================== */

.section{

padding:110px 0;

}

.section-alt{

background:#EEF4FB;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:2.8rem;

color:var(--dark);

margin-bottom:15px;

}

.section-title p{

max-width:750px;

margin:auto;

color:var(--muted);

}

/* ==========================
   BENEFITS
========================== */

.benefits-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

}

.glass-card{

background:
rgba(255,255,255,.85);

backdrop-filter:blur(15px);

padding:35px;

border-radius:var(--radius);

box-shadow:var(--shadow);

text-align:center;

transition:.3s;

}

.glass-card:hover{

transform:
translateY(-10px);

}

.glass-card i{

font-size:42px;

color:var(--primary);

margin-bottom:20px;

}

.glass-card h3{

margin-bottom:12px;

}

/* ==========================
   FEATURES
========================== */

.features-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.feature-card{

background:white;

padding:35px;

border-radius:var(--radius);

box-shadow:var(--shadow);

transition:.3s;

}

.feature-card:hover{

transform:
translateY(-10px);

}

.feature-card i{

font-size:42px;

color:var(--secondary);

margin-bottom:20px;

}

.feature-card h3{

margin-bottom:12px;

}

/* ==========================
   STATS
========================== */

.stats{

background:
linear-gradient(
135deg,
var(--primary),
var(--secondary)
);

padding:90px 0;

color:white;

}

.stats .container{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(200px,1fr));

gap:40px;

text-align:center;

}

.stat h2{

font-size:3.5rem;

font-weight:800;

}

.stat span{

opacity:.9;

}

/* ==========================
   PARENTS
========================== */

.parent-section{

display:grid;

grid-template-columns:
1fr 1fr;

gap:60px;

align-items:center;

}

.parent-image img{

width:100%;

border-radius:30px;

box-shadow:var(--shadow);

}

.parent-content h2{

font-size:2.8rem;

margin-bottom:20px;

}

.parent-content ul{

margin-top:25px;

margin-left:20px;

}

.parent-content li{

margin-bottom:12px;

}

.parent-fee{

margin-top:30px;

padding:25px;

border-left:
5px solid var(--secondary);

background:#F3FBF9;

border-radius:16px;

}

.parent-fee strong{

display:block;

margin-bottom:10px;

color:var(--primary);

}

/* ==========================
   PRICING
========================== */

.pricing-card{

max-width:650px;

margin:auto;

background:white;

padding:50px;

border-radius:30px;

text-align:center;

box-shadow:var(--shadow);

}

.price{

font-size:4rem;

font-weight:800;

color:var(--primary);

margin:20px 0;

}

.pricing-card ul{

list-style:none;

margin:30px 0;

}

.pricing-card li{

padding:12px 0;

border-bottom:
1px solid #EDF1F6;

}

/* ==========================
   CTA
========================== */

.cta{

padding:120px 0;

background:
linear-gradient(
135deg,
var(--primary),
var(--secondary)
);

text-align:center;

color:white;

}

.cta h2{

font-size:3rem;

margin-bottom:20px;

}

.cta p{

max-width:800px;

margin:auto;

opacity:.95;

}

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

footer{

background:#07152E;

color:white;

padding:70px 0;

text-align:center;

}

footer img{

width:220px;

margin-bottom:20px;

}

footer p{

margin-bottom:10px;

opacity:.9;

}

/* ==========================
   SCROLL ANIMATION
========================== */

.feature-card,
.glass-card,
.pricing-card,
.parent-content,
.parent-image{

opacity:0;

transform:
translateY(40px);

transition:
all .8s ease;

}

.animate{

opacity:1 !important;

transform:
translateY(0) !important;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.hero h1{

font-size:3rem;

}

.parent-section{

grid-template-columns:1fr;

}

.navbar nav{

display:none;

}

#menuBtn{

display:block;

}

}

@media(max-width:768px){

.hero{

padding-top:100px;

}

.hero h1{

font-size:2.3rem;

}

.hero-logo{

width:220px;

}

.section-title h2{

font-size:2rem;

}

.parent-content h2{

font-size:2rem;

}

.price{

font-size:3rem;

}

.stats .container{

gap:25px;

}

.stat h2{

font-size:2.5rem;

}

.hero-highlights{

gap:15px;

}

}

.mobile-menu.show{
    display:block;
}

.active-link{
    color:#00C7A5 !important;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
========================================== */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    background:linear-gradient(
        135deg,
        #25D366,
        #128C7E
    );

    color:#fff;

    font-size:34px;

    box-shadow:
        0 10px 30px rgba(37,211,102,.45);

    z-index:9999;

    transition:.35s ease;

    animation:
        whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

    transform:
        translateY(-6px)
        scale(1.08);

    color:#fff;

    box-shadow:
        0 18px 40px rgba(37,211,102,.55);

}

@keyframes whatsappPulse{

    0%{

        box-shadow:
        0 0 0 0 rgba(37,211,102,.5);

    }

    70%{

        box-shadow:
        0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:
        0 0 0 0 rgba(37,211,102,0);

    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:60px;
        height:60px;

        font-size:30px;

        right:18px;
        bottom:18px;

    }

}