@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


:root{
    --brown:#6B4F3A;
    --gold:#B08D57;
    --soft-blue:#AFC8D8;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}


body{
    background:linear-gradient(
        135deg,
        #F8F5F0,
        #FFFFFF,
        #EEF5F8
    );

    overflow-x:hidden;
}


/* ================= NAVBAR ================= */


.navbar{

    position:fixed;

    top:0;

    width:100%;

    padding:18px 10%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    z-index:999;

}


.logo{

    font-size:20px;

    font-weight:700;

    color:var(--brown);

}



.nav-links{

    display:flex;

    gap:30px;

    list-style:none;

}



.nav-links a{

    text-decoration:none;

    color:var(--brown);

    font-size:14px;

    font-weight:500;

    transition:.3s;

}



.nav-links a:hover{

    color:var(--gold);

}



.active{

    color:var(--gold)!important;

}



/* ================= BACKGROUND BLUR ================= */


.background-blur{

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    filter:blur(90px);

    opacity:.35;

}


.blur1{

    background:#B08D57;

    top:100px;

    left:-120px;

}


.blur2{

    background:#AFC8D8;

    right:-100px;

    top:400px;

}



/* ================= BACK TO HOME BUTTON ================= */


.back-home{

    position:fixed;

    top:100px;

    left:40px;

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    background:linear-gradient(
        135deg,
        var(--brown),
        var(--gold)
    );

    color:white;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    border-radius:30px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.15);

    z-index:1000;

    transition:.4s;

}



.back-home:hover{

    transform:translateX(-8px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.25);

}





/* ================= HERO ================= */


.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:140px 10% 80px;

    position:relative;

}





/* ================= IMAGE DECORATION ================= */


.gallery{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    pointer-events:none;

}



.gallery img{

    position:absolute;

    width:280px;

    height:170px;

    object-fit:cover;

    border-radius:25px;

    border:4px solid rgba(255,255,255,.8);

    box-shadow:

    0 15px 35px rgba(0,0,0,.15);

    opacity:.9;

    transition:.4s;

}



.gallery img:hover{

    transform:scale(1.05);

}



.img1{

    top:130px;

    left:40px;

    transform:rotate(-8deg);

}



.img2{

    top:170px;

    right:40px;

    transform:rotate(8deg);

}



.img3{

    bottom:80px;

    left:100px;

    transform:rotate(-5deg);

}




/* ================= HERO TEXT ================= */


.hero-content{

    max-width:850px;

    position:relative;

    z-index:5;

}



.badge{

    display:inline-block;

    background:linear-gradient(
        90deg,
        var(--gold),
        var(--brown)
    );

    color:white;

    padding:10px 22px;

    border-radius:30px;

    font-size:14px;

}



.hero-content h1{

    font-size:58px;

    line-height:1.2;

    color:var(--brown);

    margin:20px 0;

}



.hero-content p{

    color:#555;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}




/* ================= TITLE ================= */


.section-title{

    text-align:center;

    padding:60px 10% 30px;

    position:relative;

    z-index:5;

}



.section-title h2{

    color:var(--brown);

    font-size:38px;

}





/* ================= TEAMWORK BOX ================= */


.timeline{

    padding:20px 10% 100px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

    position:relative;

    z-index:5;

}



.box{

    width:300px;

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:

    0 10px 25px rgba(0,0,0,.06);

    transition:.4s;

}



.box:hover{

    transform:translateY(-10px);

}



.box i{

    color:var(--gold);

    font-size:40px;

    margin-bottom:15px;

}



.box h3{

    color:var(--brown);

    margin-bottom:10px;

}



.box p{

    color:#666;

    line-height:1.7;

    font-size:14px;

}



.arrow{

    color:var(--gold);

    font-size:35px;

}





/* ================= MOTIVATION ================= */


.motivation{

    padding:20px 10% 100px;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    position:relative;

    z-index:5;

}



.card{

    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:

    0 10px 25px rgba(0,0,0,.05);

    transition:.4s;

}



.card:hover{

    transform:translateY(-10px);

}



.card i{

    color:var(--gold);

    font-size:40px;

    margin-bottom:15px;

}



.card h3{

    color:var(--brown);

    margin-bottom:10px;

}



.card p{

    color:#666;

    line-height:1.7;

    font-size:14px;

}





/* ================= QUOTE ================= */


.quote{

    padding:100px 10%;

    text-align:center;

    position:relative;

    z-index:5;

}



.quote h2{

    font-size:45px;

    background:linear-gradient(
        to right,
        var(--brown),
        var(--gold),
        var(--soft-blue)
    );

    background-clip:text;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}





/* ================= RESPONSIVE ================= */


@media(max-width:1000px){


    .nav-links{

        display:none;

    }


    .hero-content h1{

        font-size:42px;

    }


    .gallery img{

        width:180px;

        height:110px;

    }


    .img1{

        left:10px;

    }


    .img2{

        right:10px;

    }


    .img3{

        left:30px;

    }


}



@media(max-width:600px){


    .back-home{

        top:85px;

        left:20px;

        padding:10px 18px;

        font-size:12px;

    }


    .hero{

        padding-top:120px;

    }


    .hero-content h1{

        font-size:34px;

    }


    .hero-content p{

        font-size:14px;

    }


    .section-title h2{

        font-size:28px;

    }


    .quote h2{

        font-size:30px;

    }


    .gallery img{

        width:120px;

        height:75px;

        opacity:.5;

    }


    .img1{

        top:130px;

    }


    .img2{

        top:230px;

    }


    .img3{

        bottom:120px;

    }


    .arrow{

        display:none;

    }

}