
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

:root{
    --primary:#F6D238;
    --secondary:#111111;
    --text:#555555;
    --white:#ffffff;
    --light:#f8f8f8;
    --shadow:0 5px 20px rgba(0,0,0,0.08);
}

body{
    background:var(--white);
    color:#222;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:80px 8%;
}

/* ===========================
   HEADER
=========================== */

header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    width:180px;
}

nav ul{
    display:flex;
    gap:25px;
}

nav ul li a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:var(--primary);
}

.btn-header{
    background:var(--primary);
    color:#000;
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-header:hover{
    transform:translateY(-3px);
}

/* ===========================
   HERO
=========================== */

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    min-height:85vh;
}

.hero-content{
    flex:1;
}

.hero-content .subtitle{
    color:var(--primary);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.hero-content h1{
    font-size:55px;
    line-height:1.2;
    margin:20px 0;
    color:#111;
}

.hero-content p{
    color:var(--text);
    margin-bottom:30px;
    font-size:16px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:var(--primary);
    color:#000;
    padding:15px 30px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    border:2px solid var(--primary);
    color:#111;
    padding:15px 30px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:var(--primary);
}

.hero-image{
    flex:1;
}

.hero-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

/* ===========================
   SECTION TITLES
=========================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    margin-top:10px;
}

/* ===========================
   ABOUT
=========================== */

.about{
    background:var(--light);
}

.about-content{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-image{
    flex:1;
}

.about-image img{
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-text{
    flex:1;
}

.about-text p{
    margin-bottom:20px;
    color:var(--text);
}

/* ===========================
   STATS
=========================== */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    background:#fff;
}

.stat-box{
    text-align:center;
    padding:30px;
    border-radius:15px;
    background:#fff;
    box-shadow:var(--shadow);
}

.stat-box h2{
    color:var(--primary);
    font-size:45px;
    margin-bottom:10px;
}

.stat-box p{
    font-weight:500;
}

/* ===========================
   PROJECTS
=========================== */

.projects{
    background:var(--light);
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.project-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
}

.project-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.project-content{
    padding:25px;
}

.project-content h3{
    margin-bottom:10px;
    color:#111;
}

.project-content p{
    color:var(--text);
}

/* ===========================
   CTA
=========================== */

.cta{
    text-align:center;
    background:var(--primary);
    border-radius:20px;
    margin:80px 8%;
}

.cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta p{
    margin-bottom:25px;
    color:#333;
}

/* ===========================
   CONTACT
=========================== */

.contact-container{
    display:flex;
    gap:50px;
}

.contact-info{
    flex:1;
}

.contact-info h3{
    margin-bottom:20px;
    font-size:28px;
}

.contact-info p{
    margin-bottom:15px;
    color:var(--text);
}

.contact-form{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
}

.contact-form button{
    background:var(--primary);
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#111;
    color:#fff;
    padding:60px 8% 30px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-content h3{
    margin-bottom:15px;
    color:var(--primary);
}

.footer-content p{
    color:#ccc;
}

.footer-content ul{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-content ul li a{
    color:#ccc;
    transition:.3s;
}

.footer-content ul li a:hover{
    color:var(--primary);
}

footer hr{
    margin:30px 0;
    border:none;
    border-top:1px solid #333;
}

.copyright{
    text-align:center;
    color:#999;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

    header{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .about-content{
        flex-direction:column;
    }

    .contact-container{
        flex-direction:column;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-content{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    section{
        padding:60px 5%;
    }

    .hero-content h1{
        font-size:32px;
    }

    .section-title h2{
        font-size:30px;
    }

    .cta h2{
        font-size:30px;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}