/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#111;
    color:white;
    overflow-x:hidden;
}

/* ---------- NAVBAR ---------- */

.navbar{

    position:fixed;

    top:0;
    left:0;
    width:100%;

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

    padding:22px 8%;

    background:rgba(15,15,15,.80);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border-bottom: 1px solid rgba(255,255,255,.08);

    z-index:1000;

}

/* ==========================================
   LOGO
========================================== */

.logo{

    font: size 80px px;
    font-weight:auto;
    color:white;

    letter-spacing:-1px;

    cursor:pointer;

    transition:all .3s ease;

}

.logo span{

    color:#ff7b00;

}

.logo:hover{

    transform:scale(1.03);

}

.nav-links{

    display:flex;
    list-style:none;
    gap:40px;

}

    
.logo img{
    height:130px;px;
    width:auto;
    display:block;
}



.nav-links a{

    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s ease;

}

.nav-links a:hover{

    color:#ff7b00;

}

.btn-nav{

    background:#ff7b00;
    color:white;
    text-decoration:none;

    padding:14px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.btn-nav:hover{

    background:#d86400;

    transform:translateY(-12px) scale(1.02);

}

/* ---------- HERO ---------- */

.hero{

    height:100vh;

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

    text-align:center;

    position:relative;

    background:url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.35);

}

.hero-content{

    position:relative;

    z-index:10;

    max-width:900px;

    padding:40px;

    margin-top: -60px;

}

.small-title{

    letter-spacing:5px;

    color:#ff7b00;

    margin-bottom:20px;

    font-size:14px;

}

.hero h1{

    font-size:72px;

    text-shadow:0 8px 30px rgba(0,0,0,.45);

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    color:#ddd;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.btn-main{

    background:#ff7b00;

    box-shadow:0 12px 30px rgba(255,123,0,.35);

    color:white;

    padding:18px 38px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s ease;

    font-weight:600;

}

.btn-main:hover{

    background:#d86400;



    transform:translateY(-4px);

}

.btn-secondary{

    border:2px solid white;

    color:white;

    padding:18px 38px;

    border-radius:40px;

    text-decoration:none;

    transition:.3s ease;

}

.btn-secondary:hover{

    background:white;

    color:black;

}

/* ---------- MOBILE ---------- */
/* ---------- SERVICES ---------- */

.services{

    background:#111;

    padding:120px 8%;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title p{

    color:#ff7b00;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:12px;

}

.section-title h2{

    font-size:48px;

    color:white;

}

.services-grid{

    display:grid;

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

    gap:35px;

}

.service-card{

    background:#1b1b1b;

    padding:40px;

    border-radius:18px;

    transition:all .3s ease;

}

.service-card:hover{

    transform:translateY(-8px);

    background:#242424;

     box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.service-card h3{

    color:white;

    font-size:28px;

    margin-bottom:18px;

}

.service-card p{

    color:#cfcfcf;

    line-height:1.8;

}/* ---------- PROJECTS ---------- */

.projects{

    background:#181818;

    padding:120px 8%;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3, 1fr);
    gap:35px;

}

.project-card{

    background:#222;

    border-radius:20px;

    overflow:hidden;

    transition:all .3s ease;

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.project-card img{

    width:100%;

    height:500px;

    object-fit:cover;

    display:block;

}

.project-info{

    padding:30px;

}

.project-info h3{

    color:white;

    font-size:32px;

    margin-bottom:10px;

}

.project-info p{

    color:#ff7b00;

    font-weight:600;

}

/* ---------- WHY CHOOSE US ---------- */

.why-us{
    background:#111;
    padding:120px 8%;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;

    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

.why-card{
    background:#1b1b1b;
    padding:40px;
    min-height:220px;
    border-radius:18px;
    transition:.3s ease;
    
    border:1px solid rgba(255,255,255,.06);
     border-top:3px solid #ff7b00;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.why-card h3{
    color:white;
    font-size:26px;
    margin-bottom:15px;
}

.why-card p{
    color:#cfcfcf;
    line-height:1.8;
}

/* ---------- TESTIMONIALS ---------- */

.testimonials{
    background:#181818;
    padding:120px 8%;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
}

.testimonial-card{
    background:#1b1b1b;
    padding:40px;
    border-radius:18px;
    border-top:3px solid #ff7b00;
    transition:.3s ease;
    border:1px solid rgba(255,255,255,.06);
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.stars{
    color:#ff7b00;
    font-size:24px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:25px;
}

.testimonial-card h4{
    color:white;
    font-size:18px;
}

@media(max-width:900px){

.navbar{
flex-direction:column;
gap:20px;

}


.why-grid{
    grid-template-columns:1fr;

}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:20px;

}

.hero h1{


    font-size:84px;

    text-shadow:0 8px 30px rgba(0,0,0,.35);


} 


.hero-buttons{

    flex-direction:column;

}
}