
/* ===================================
   CEREBRALAB CSS
=================================== */

:root{

    --bg:#f5f2fa;
    --white:#ffffff;

    --text:#111111;
    --text-light:#666666;

    --purple:#6d28d9;
    --purple-light:#8b5cf6;

    --teal:#44c7be;
    --teal-light:#76d9d2;

    --border:#ebe8f2;

    --gradient:
    linear-gradient(
        90deg,
        #6d28d9,
        #5e6fd6,
        #44c7be
    );

    --shadow:
    0 20px 60px rgba(109,40,217,.08);

}

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

section{
    padding:110px 0;
}


 /* mobile navbar  */


 




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

.navbar{

    position:sticky;
    top:0;

    z-index:999;

    backdrop-filter:blur(20px);

    background:
    rgba(245,242,250,.92);

    border-bottom:
    1px solid var(--border);

}

.nav-container{

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

    padding:20px 0;

}

.logo{

    display:flex;
    flex-direction:column;

}

.logo-main{

    font-size:1.5rem;
    font-weight:800;

    color:var(--text);

}

.logo-sub{

    font-size:.7rem;
    letter-spacing:2px;

    color:var(--purple);

}

.nav-links{

    display:flex;
    gap:35px;

    list-style:none;

}

.nav-links a{

    color:var(--text);

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--purple);

}

.nav-btn{

    background:var(--gradient);

    color:white;

    padding:14px 24px;

    border-radius:999px;

    font-weight:600;

    transition:.35s;

}

.nav-btn:hover{

    transform:translateY(-3px);

}

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

.hero-grid{

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    gap:80px;

    align-items:center;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    background:white;

    border:1px solid var(--border);

    border-radius:999px;

    margin-bottom:25px;

    font-weight:600;

}

.hero-content h1{

    font-size:
    clamp(3rem,6vw,5.5rem);

    font-weight:900;

    line-height:1.05;

    margin-bottom:25px;

}

.gradient-text{

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-content p{

    color:var(--text-light);

    line-height:1.9;

    font-size:1.1rem;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;

}

.btn-primary{

    background:var(--gradient);

    color:white;

    padding:16px 28px;

    border-radius:999px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-secondary{

    background:white;

    color:var(--text);

    border:1px solid var(--border);

    padding:16px 28px;

    border-radius:999px;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    transform:translateY(-4px);

}

.hero-image{

    position:relative;

}

.hero-image img{

    border-radius:35px;

    box-shadow:var(--shadow);

}

.floating-icon{

    position:absolute;

    bottom:-25px;

    right:-25px;

    width:90px;
    height:90px;

    border-radius:50%;

    background:var(--gradient);

    color:white;

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

    font-size:2rem;

    animation:float 3s infinite ease-in-out;

}

@keyframes float{

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

    50%{
        transform:translateY(-12px);
    }

}

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

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:white;

    border-radius:28px;

    padding:35px;

    text-align:center;

    border:1px solid var(--border);

}

.stat-card h3{

    font-size:2.5rem;

    margin-bottom:10px;

    color:var(--purple);

}

.stat-card p{

    color:var(--text-light);

}

/* ===================================
   SECTION HEADING
=================================== */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:var(--purple);

    letter-spacing:2px;

    font-size:.9rem;

    font-weight:600;

}

.section-heading h2{

    font-size:
    clamp(2rem,5vw,4rem);

    margin:15px 0;

}

.section-heading p{

    color:var(--text-light);

}

/* ===================================
   SKILLS
=================================== */


.skills-heading{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.skills-heading .section-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#6d28d9;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
}

.skills-heading h2{
    font-size:clamp(2.8rem,6vw,5rem);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
    margin-bottom:22px;
    color:#111;
}

.skills-heading h2 span{
    display:block;
    background:linear-gradient(
        135deg,
        #6d28d9,
        #44c7be
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.skills-heading p{
    max-width:650px;
    margin:auto;
    font-size:1.15rem;
    line-height:1.8;
    color:#666;
}

@media(max-width:768px){

    .skills-heading h2{
        font-size:3rem;
        letter-spacing:-1px;
    }

    .skills-heading p{
        font-size:1rem;
    }
}


.skills-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

.skill-card{

    background:white;

    border:1px solid var(--border);

    border-radius:30px;

    padding:35px;

    transition:.35s;

}

.skill-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.skill-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:var(--gradient);

    color:white;

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

    font-size:1.5rem;

    margin-bottom:20px;

}

.skill-card h3{

    margin-bottom:15px;

}

.skill-card p{

    color:var(--text-light);

    line-height:1.8;

}

/* ===================================
   EXPERIENCE
=================================== */

.feature-content h2 span{
    background:linear-gradient(
        135deg,
        #6d28d9,
        #44c7be
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}


.feature-label{
    display:inline-block;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#6d28d9;
    margin-bottom:14px;
}

.feature-content h2{
    font-size:clamp(2rem,4vw,3.4rem);
    line-height:1.1;
    font-weight:800;
    letter-spacing:-1.5px;
    margin-bottom:18px;
    color:#111;
}

.feature-content p{
    font-size:1.05rem;
    line-height:1.8;
    color:#666;
    max-width:500px;
}
.experience-row{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;

    margin-bottom:120px;

}

.reverse{

    direction:rtl;

}

.reverse *{

    direction:ltr;

}

.experience-image img{

    border-radius:35px;

    box-shadow:var(--shadow);

}

.experience-content span{

    color:var(--purple);

    font-weight:700;

}

.experience-content h2{

    font-size:3rem;

    margin:15px 0;

}

.experience-content p{

    color:var(--text-light);

    line-height:2;

}

/* ===================================
   RULES
=================================== */

/* =========================
RULES SECTION
========================= */

.rules-section{
    background:#f6f4fb;
}

.rules-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.rules-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border-radius:999px;
    background:rgba(109,40,217,.08);
    color:#6d28d9;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:20px;
}

.rules-heading h2{
    font-size:clamp(2.5rem,5vw,4.5rem);
    font-weight:800;
    line-height:1.1;
    margin-bottom:18px;
    color:#111;
}

.rules-heading h2 span{
    background:linear-gradient(
        135deg,
        #6d28d9,
        #44c7be
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.rules-heading p{
    font-size:1.15rem;
    color:#666;
    line-height:1.8;
    max-width:650px;
    margin:auto;
}

@media(max-width:768px){

    .rules-heading{
        margin-bottom:40px;
    }

    .rules-heading h2{
        font-size:2.4rem;
    }

    .rules-heading p{
        font-size:1rem;
    }
}

.rules-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-top:60px;
}

.rule-card{
    background:white;
    border:1px solid rgba(109,40,217,.08);
    border-radius:28px;
    padding:28px 24px;
    text-align:center;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
    position:relative;
    overflow:hidden;
}

.rule-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(109,40,217,.05),
        rgba(68,199,190,.05)
    );
    opacity:0;
    transition:.35s;
}

.rule-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(109,40,217,.15);
}

.rule-card:hover::before{
    opacity:1;
}

.rule-icon{
    width:70px;
    height:70px;
    margin:0 auto 18px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.8rem;
    background:linear-gradient(
        135deg,
        rgba(109,40,217,.12),
        rgba(68,199,190,.12)
    );
}

.rule-card h3{
    font-size:1.15rem;
    margin-bottom:12px;
    color:#111;
}

.rule-card p{
    font-size:.95rem;
    color:#666;
    line-height:1.7;
}

.rule-card.featured{
    background:linear-gradient(
        135deg,
        #6d28d9,
        #44c7be
    );
    color:white;
}

.rule-card.featured h3,
.rule-card.featured p{
    color:white;
}

.rule-card.featured .rule-icon{
    background:rgba(255,255,255,.18);
}

/* Tablet */

@media(max-width:1100px){

    .rules-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Mobile */

@media(max-width:768px){

    .rules-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

    .rule-card{
        padding:24px;
    }

    .rule-icon{
        width:60px;
        height:60px;
        font-size:1.5rem;
    }
}
/* ===================================
   GALLERY
=================================== */

.gallery-grid{

    columns:3;

    gap:20px;

}

.gallery-grid img{

    border-radius:24px;

    margin-bottom:20px;

    transition:.35s;

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

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

.footer{

    background:white;

    border-top:
    1px solid var(--border);

    padding:80px 0;

    text-align:center;

}

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

@media(max-width:992px){

    .hero-grid,
    .experience-row{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .skills-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .gallery-grid{

        columns:2;

    }

    .nav-links{

        display:none;

    }

}

@media(max-width:768px){

    section{
        padding:80px 0;
    }

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

    .hero-buttons{
        flex-direction:column;
    }

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

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

    .gallery-grid{
        columns:1;
    }

    .experience-content h2{
        font-size:2rem;
    }

    .rule-strip{
        font-size:1rem;
    }

    .nav-btn{
        display:none;
    }

}



/* ===================================
WHY SECTION
=================================== */

.why-section{
    background:#ffffff;
}


.why-heading{
    text-align:center;
    max-width:1100px;
    margin:0 auto 70px;
}

.why-heading .section-tag{
    display:inline-block;
    font-size:0.95rem;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#6d28d9;
    margin-bottom:20px;
}

.why-heading h2{
    font-size:clamp(3rem,6vw,5.5rem);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-3px;
    margin-bottom:24px;
    color:#111;
}

.why-heading h2 span{
    background:linear-gradient(
        135deg,
        #6d28d9,
        #44c7be
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.why-heading p{
    max-width:700px;
    margin:auto;
    font-size:1.2rem;
    line-height:1.8;
    color:#666;
}

@media(max-width:768px){

    .why-heading h2{
        font-size:3rem;
        letter-spacing:-1px;
    }

    .why-heading p{
        font-size:1rem;
    }
}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;

}

.why-card{

    background:white;

    border:1px solid var(--border);

    border-radius:30px;

    padding:35px;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.why-icon{

    width:70px;
    height:70px;

    border-radius:20px;

    background:var(--gradient);

    color:white;

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

    font-size:1.5rem;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:12px;

}

.why-card p{

    color:var(--text-light);

    line-height:1.8;

}


/* ===================================
WELLNESS
=================================== */

.wellness-box{

    background:
    linear-gradient(
        135deg,
        rgba(109,40,217,.08),
        rgba(68,199,190,.08)
    );

    border:1px solid var(--border);

    border-radius:40px;

    padding:70px;

    text-align:center;

}

.wellness-box span{

    color:var(--purple);

    font-weight:700;

    letter-spacing:2px;

}

.wellness-box h2{

    font-size:
    clamp(2rem,4vw,4rem);

    margin:20px 0;

}

.wellness-box p{

    max-width:850px;

    margin:auto;

    line-height:2;

    color:var(--text-light);

}

.wellness-points{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;

    margin-top:40px;

}

.wellness-points div{

    background:white;

    padding:18px;

    border-radius:18px;

    border:1px solid var(--border);

    font-weight:600;

}


/* ===================================
QUOTE
=================================== */

.quote-section{

    padding:120px 0;

}

.quote-box{

    background:var(--gradient);

    border-radius:40px;

    padding:90px 60px;

    text-align:center;

    color:white;

}

.quote-box h2{

    font-size:
    clamp(2rem,5vw,4.5rem);

    font-weight:900;

    line-height:1.2;

}


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

.cta-card{

    background:white;

    border:1px solid var(--border);

    border-radius:40px;

    padding:80px 50px;

    text-align:center;

    box-shadow:var(--shadow);

}

.cta-card span{

    color:var(--purple);

    font-weight:700;

    letter-spacing:2px;

}

.cta-card h2{

    font-size:
    clamp(2rem,5vw,4rem);

    margin:20px 0;

}

.cta-card p{

    color:var(--text-light);

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

}


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

.footer{

    background:white;

    border-top:
    1px solid var(--border);

    padding:80px 0 40px;

}

.footer-content{

    text-align:center;

}

.footer-content h3{

    font-size:2rem;

    margin-bottom:10px;

}

.footer-content p{

    color:var(--text-light);

}

.footer-social{

    margin:30px 0;

    display:flex;

    justify-content:center;

    gap:15px;

}

.footer-social a{

    width:50px;
    height:50px;

    border-radius:50%;

    background:white;

    border:1px solid var(--border);

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

    color:var(--purple);

    transition:.3s;

}

.footer-social a:hover{

    background:var(--gradient);

    color:white;

    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:20px;

    color:var(--text-light);

    font-size:.9rem;

}


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

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}


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

@media(max-width:992px){

    .why-grid{

        grid-template-columns:1fr;

    }

    .wellness-points{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .wellness-box{

        padding:40px 25px;

    }

    .quote-box{

        padding:60px 25px;

    }

    .cta-card{

        padding:50px 25px;

    }

    .cta-buttons{

        flex-direction:column;

    }

}

