@font-face{
    font-family:'Loubag';
    src:url('Loubag.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}
/* -----------------------------
   RESET
----------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
nav{

    font-family:Loubag;

    font-weight:normal;

    letter-spacing:.5px;
}
.hero-buttons{
display:flex;
gap:18px;
margin-top:35px;
}

.primary-btn,
.secondary-btn{
padding:14px 28px;
transition:.3s;
 display:inline-flex;
    align-items:center;
    justify-content:center;

    width:260px;
    height:62px;

   

    text-decoration:none;
    font-family:Loubag;
    font-weight:600;
    font-size:17px;

    transition:.25s ease;
}

.primary-btn{
background:white;
color:#5b5ce6;
}

.secondary-btn{
border:1px solid white;
color:white;
}

.launch-features,
.family-points{
display:flex;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
justify-content:center;
}

.feature,
.family-points div{
padding:16px 24px;
border-radius:12px;
background:#f5f5f5;
font-weight:600;
}

.stats{
display:flex;
justify-content:center;
gap:70px;
margin-top:45px;
flex-wrap:wrap;
}

.stats h3{
font-size:48px;
color:white;
}

.stats span{
color:white;
opacity:.8;
}

/* ==========================================
   EXPERIENCE
========================================== */

.experience{
    background:#ffffff;
    padding:100px 4%;
    min-height:auto;
}

.card{

    width:100%;
    background:#5B5CE6;

    border-radius:38px;

    padding:60px;

    height:auto;
    min-height:auto;

    overflow:visible;
}

.card h2{

    color:#fff;

 

    font-size:64px;

    line-height:1;

    margin-bottom:20px;
}

.exp-subtitle{

    color:rgba(255,255,255,.92);

    font-size:22px;

    line-height:1.7;

    max-width:760px;

    margin-bottom:50px;
}

/* =====================
   GRID
===================== */

.experience-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:28px;

    width:100%;
}

/* =====================
   CARDS
===================== */

.exp-card{

    background:#F8F1E5;

    border-radius:34px;

    min-height:280px;

    padding:34px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    transition:.35s ease;

    cursor:pointer;
}

.exp-card.yellow{

    background:#FFFF4A;
}

.exp-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.exp-card h3{


    font-size:42px;

    line-height:1.05;

    color:#111;

    font-weight:700;
}

.exp-card p{

    font-size:18px;

    line-height:1.7;

    color:#444;
}

/* =====================
   IMAGE CARD
===================== */

.exp-card.image{

    padding:0;

    overflow:hidden;
}

.exp-card.image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.4s;
}

.exp-card.image:hover img{

    transform:scale(1.05);
}

/* =====================
   TABLET
===================== */

@media (max-width:1100px){

    .card{

        padding:40px;
    }

    .experience-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

/* =====================
   MOBILE
===================== */

@media (max-width:700px){

    .experience{

        padding:70px 20px;
    }

    .card{

        padding:28px;
        border-radius:28px;
    }

    .card h2{

        font-size:46px;
    }

    .exp-subtitle{

        font-size:18px;
        margin-bottom:35px;
    }

    .experience-grid{

        grid-template-columns:1fr;

        gap:20px;
    }

    .exp-card{

        min-height:220px;

        border-radius:24px;
    }

    .exp-card h3{

        font-size:32px;
    }

    .exp-card p{

        font-size:16px;
    }

}
.footer-desc{
margin-bottom:30px;
max-width:420px;
color:white;
line-height:1.8;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
   
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

/* -----------------------------
   COLORS
----------------------------- */

:root{

    --purple:#5b5ce6;
    --yellow:#ffff45;
    --white:#ffffff;
    --black:#111111;

}

/* -----------------------------
   GLOBAL
----------------------------- */

section{
    width:100%;
    min-height:100vh;      /* Full screen height */
    padding:80px 8%;
    display:flex;
    flex-direction:column;
    justify-content:center; /* Vertically center */
    align-items:center;
}

img{
    width:100%;
    display:block;
}


p{
    line-height:1.7;
    font-size:17px;
    color:#333;
}

/* -----------------------------
   HERO
----------------------------- */

.hero{
    min-height:100vh;
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    background:#5b5ce6;
    color:#fff;
}

.hero-text{
    flex:1;
}

.hero h1{

    font-size:72px;
    line-height:0.95;

    margin-bottom:35px;
}

.hero p{

    max-width:500px;
    color:white;

    font-size:19px;
}

.hero-image{

    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:620px;
}

/* -----------------------------
   LAUNCH
----------------------------- */

.launch{

    text-align:center;
    background:white;
}

.launch h2{

    font-size:58px;
    margin-bottom:35px;
}

.launch img{
    width:480px;
    max-width:90%;
    margin:40px auto;
}
.launch h3{

    margin-top:40px;
    font-size:30px;
}

.launch p{

    max-width:620px;
    margin:20px auto 0;
}

/* -----------------------------
   WHY
----------------------------- */

.why{

    background:var(--purple);
    color:white;
    text-align:center;
}

.why h2{

    font-size:55px;
    margin-bottom:35px;
}

.why img{
    width:560px;
    max-width:90%;
    margin:35px auto;
}

.why p{

    color:white;
    max-width:650px;
    margin:20px auto;
}
.launch,
.why,
.family,
footer{
    min-height:100vh;
}

----------------------------- */
/* ===========================
   FAMILY
=========================== */

.family{
    background:#FFFF45;
    color:#111;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:100px 8%;
}

.family h2{
   
    font-size:64px;
    margin-bottom:35px;
    color:#111;
    align-content: center;
    text-align:center;
}

.family img{
    width:600px;
    max-width:100%;
    margin:40px auto;
    display:block;
}
.family p{
    max-width:760px;
    font-size:20px;
    line-height:1.8;
    color:#111;
    margin-bottom:45px;
    text-align:center;
}

.family-points{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.family-points div{
    background:#fff;
    color:#111;
    padding:18px 30px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:260px;
    height:62px;

   

    text-decoration:none;
    font-family:Loubag;
    font-weight:600;
    font-size:17px;

    transition:.25s ease;
    
}

.family-points div:hover{
    transform:translateY(-5px);
}

/* Mobile */

@media(max-width:768px){

    .family h2{
        font-size:42px;
    }

    .family img{
        width:300px;
    }

    .family p{
        font-size:17px;
    }

    .family-points{
        flex-direction:column;
        width:100%;
        max-width:320px;
        
    }

    .family-points div{
        width:100%;
    }
}

/* -----------------------------
   FOOTER
----------------------------- */

footer{

    min-height:100vh;
    background:var(--purple);

    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:90px 8%;

    gap:60px;
}

.footer-left{

    flex:1;
}

footer h2{

    font-size:62px;

    line-height:1;

    margin-bottom:50px;
}

footer p{

    color:white;

    margin-bottom:10px;
}

footer small{

    display:block;

    margin-top:45px;

    color:white;
}
footer img{
    width:520px;
    max-width:100%;
}
/* -----------------------------
   HOVER
----------------------------- */

.card{

    transition:.35s;
}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);
}
/* ==========================
   MOBILE IMAGES
========================== */

@media (max-width:900px){

    .hero-image img{
        width:100%;
        max-width:420px;
        margin:30px auto 0;
    }

    .launch img{
        width:100%;
        max-width:380px;
        margin:35px auto;
    }

    .why img{
        width:100%;
        max-width:380px;
        margin:35px auto;
    }

    .family img{
        width:100%;
        max-width:420px;
        margin:40px auto;
    }

    footer img{
        width:100%;
        max-width:420px;
        margin-top:30px;
    }

}
.hero-image img,
.launch img,
.why img,
.family img,
footer img{

    transition:.35s;
}

.hero-image img:hover,
.launch img:hover,
.why img:hover,
.family img:hover,
footer img:hover{

    transform:scale(1.03);
}
/* ==========================
   MOBILE NAVBAR
========================== */


/* -----------------------------
   RESPONSIVE
----------------------------- */

@media(max-width:900px){

.hero{

flex-direction:column;
text-align:center;

}

.hero p{

margin:auto;

}

footer{

flex-direction:column;
text-align:center;

}

.hero h1{

font-size:54px;

}

footer h2{

font-size:45px;

}

.launch h2,
.why h2,
.family h2{

font-size:42px;

}

.card h2{

font-size:40px;

}



}

@media(max-width:600px){

section{

padding:70px 25px;

}

.hero h1{

font-size:44px;

}

.card{

padding:30px;

min-height:300px;

}

.card h2{

font-size:34px;

}

.card span{

right:25px;
bottom:25px;

}

}


/* ===========================
   GLASS NAVBAR
=========================== */

.navbar{

    position:fixed;

    top:18px;
    left:50%;
    transform:translateX(-50%);

    width:96%;
    max-width:1500px;

    height:78px;

    padding:0 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border-radius:10px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px) saturate(180%);
    -webkit-backdrop-filter:blur(20px) saturate(180%);

    border:1px solid rgba(255,255,255,.18);

    box-shadow:
        0 8px 35px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.15);

    z-index:1000;

    transition:.35s ease;
}

.navbar:hover{

    background:rgba(255,255,255,.12);

    border-color:rgba(255,255,255,.25);
}
.logo{
    display:flex;
    align-items:center;
    height:100%;
    overflow:hidden;
}

.logo img{
    height:82px;
    width:auto;
    max-width:180px;
    object-fit:contain;
    display:block;
}
nav{
    display:flex;
    gap:50px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    opacity:.85;
    transition:.3s;
}

nav a:hover{
    opacity:1;
}
.join-btn{

    background:white;
    color:#5b5ce6;
    font-family: Loubag;

    padding:14px 28px;

    
    

    font-weight:700;
    text-decoration:none;

    transition:.3s;
}

.join-btn:hover{

    transform:translateY(-2px);

}
.hero{
    padding-top:120px;
}
.navbar.scrolled{
    background:rgba(255,255,255,.16);
    border-color:rgba(255,255,255,.25);
    box-shadow:0 15px 50px rgba(0,0,0,.25);
}
@media (max-width: 768px){

    .navbar{
        width:95%;
        height:70px;
        padding:0 18px;
    }

    /* Hide navigation links */
    nav{
        display:none;
    }

    /* Keep logo */
    .logo img{
        height:42px;
        width:auto;
    }

    /* Keep Join button */
    .join-btn{
        display:flex;
        align-items:center;
        justify-content:center;

        padding:10px 18px;
        font-size:14px;
        border-radius:12px;
    }

    /* Hero adjustment */
    .hero{
        padding-top:110px;
    }
}
.family{
    background:#FFFF45 !important;
}
.hero-image img,
.launch img,
.why img,
.family img,
footer img{

    animation:float 5s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

.partner-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.brochure-btn,
.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:260px;
    height:62px;

   

    text-decoration:none;
    font-family:'DM Sans',sans-serif;
    font-weight:600;
    font-size:17px;

    transition:.25s ease;
}

.brochure-btn{
    background:#111827;
    color:#fff;
    font-family :Loubag;
    box-shadow:0 12px 35px rgba(17,24,39,.18);
}

.brochure-btn:hover{
    transform:translateY(-3px);
    background:#000;
    box-shadow:0 18px 40px rgba(17,24,39,.28);
}

.contact-btn{
    background:#fff;
    color:#111827;
    font-family :Loubag;
    border:1.5px solid #d9d9d9;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.contact-btn:hover{
    transform:translateY(-3px);
    border-color:#111827;
    box-shadow:0 16px 35px rgba(0,0,0,.10);
}
@media (max-width:768px){

    .hero-buttons{
        display:flex;
        gap:12px;
        width:100%;
    }

    .primary-btn,
    .secondary-btn{
        flex:1;
        width:auto;
        min-width:0;
        height:56px;
        font-size:15px;
        padding:0 10px;
    }
}