:root{

    --primary:#0A84C6;

    --accent:#F4B400;

    --dark:#111111;

    --text:#444444;

    --light:#F8F9FB;

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
html, body{
    width:100%;
    overflow-x:hidden;
}

body{
    font-family:'Poppins', sans-serif;
    background:#fff;
    color:#222;
    line-height:1.7;
}

:root{
    --navbar-background:#080808;
    --navbar-scrolled-background:#0C74AD;
    --section-spacing:120px;
}

.navbar{
    position:fixed;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:var(--navbar-background);
    backdrop-filter:blur(10px);
}

.logo{
    height:65px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
        url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:90px 8% 60px;
}

.hero-content{
    max-width:650px;
    width:100%;
    color:white;
}

.tag{
    color:#f5c400;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.hero h1{
    font-size:clamp(2.5rem, 5vw, 4.5rem);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-1px;
}

.subtitle{
    font-size:1.05rem;
    color:#ddd;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.primary{
    background:#006BAD;
    color:white;
}

.primary:hover{
    background:#086ea6;
}

.secondary{
    border:2px solid #f5c400;
    color:#f5c400;
}

.secondary:hover{
    background:#f5c400;
    color:black;
}
.contact-info{
    margin-top:30px;
    color:#ddd;
    line-height:1.8;
    font-size:0.95rem;
}

.contact-info strong{
    color:#f5c400;
}
/* SERVICES */

.services{
    padding:var(--section-spacing) 8%;
    background:#f8f9fb;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title p{
    color:#0A84C6;
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:700;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px 25px;
    border-radius:15px;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.card:hover{
    transform:translateY(-10px);
}

.icon{
    width:64px;
    height:64px;
    background:#F4B400;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.icon svg{
    width:30px;
    height:30px;
    color:#111;
}

.card h3{
    margin-bottom:12px;
}

.card p{
    color:#666;
    line-height:1.7;
}

.fence-card{
    margin-top:30px;
    background:#111;
    color:white;
    border-radius:15px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.fence-card p{
    color:#ccc;
}
.about{
    padding:var(--section-spacing) 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.section-tag{
    color:#0A84C6;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
}

.about h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.about p{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

.features{
    margin-top:25px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    font-weight:600;
}

.about-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}
/* Better spacing for service cards */
.card{
    min-height: 240px;
}

.icon{
    font-size: 2.3rem;
}
/* PROJECTS */

.projects{
    padding:var(--section-spacing) 8%;
    background:#f8f9fb;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.project{
    position:relative;
    overflow:hidden;
    border-radius:15px;
    height:260px;
}

.project img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.75), transparent);
    display:flex;
    align-items:flex-end;
    padding:20px;
}

.overlay h3{
    color:white;
}

.project:hover img{
    transform:scale(1.08);
}/* CONTACT */

.contact{
    padding:var(--section-spacing) 8%;
    background:#111;
    color:white;
}

.contact-info-box{
    max-width:700px;
}

.contact h2{
    font-size:2.5rem;
    margin:15px 0 20px;
}

.contact p{
    color:#d1d5db;
    line-height:1.8;
}

.contact-item{
    margin:22px 0;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.contact-item strong{
    color:#F4B400;
}
footer{
    background:#0a0a0a;
    color:#888;
    text-align:center;
    padding:25px;
    font-size:.9rem;
}
/* ---------- NAVBAR ---------- */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    transition:.35s ease;
    background:rgba(10,10,10,.25);
    backdrop-filter:blur(8px);
}

.navbar.scrolled{
    background:var(--navbar-scrolled-background);
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.navbar.scrolled .nav-links a{
    color:white;
}

.nav-links a{
    color:white;
    transition:.3s;
}

.nav-links a:hover{
    color:#F4B400;
}

.menu-btn{
    display:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}
/* ---------- NAVBAR ---------- */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    transition:.35s ease;
    background:rgba(10,10,10,.25);
    backdrop-filter:blur(8px);
}

.navbar.scrolled{
    background:var(--navbar-scrolled-background);
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.navbar.scrolled .nav-links a{
    color:white;
}

.nav-links a{
    color:white;
    transition:.3s;
}

.nav-links a:hover{
    color:#F4B400;
}

.menu-btn{
    display:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}
/* ---------- REVEAL ---------- */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/* ---------- STATS ---------- */

.stats{
    background:#0C74AD;
    color:white;
    padding:70px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    text-align:center;
    gap:30px;
}

.stat h2{
    font-size:3rem;
    color:#F4B400;
}

.stat p{
    margin-top:10px;
    letter-spacing:1px;
}
/* ---------- WHATSAPP ---------- */

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    box-shadow:0 12px 25px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.08);
}

.whatsapp svg{
    width:30px;
    height:30px;
}
/* ---------- CONTACT FORM ---------- */

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

#contact-form{
display:flex;
flex-direction:column;
gap:18px;
}

#contact-form input,
#contact-form textarea{

padding:16px;
border:none;
border-radius:10px;
font-family:Poppins;
font-size:15px;
}

#contact-form textarea{
height:160px;
resize:none;
}

@media (max-width: 900px){

    .navbar{
        padding:14px 5%;
    }

    .logo{
        height:42px;
    }

    .hero{
        padding:90px 5% 50px;
        min-height:100vh;
    }

    .hero-content{
        max-width:100%;
    }

    .tag{
        font-size:.95rem;
        letter-spacing:1px;
    }

    .hero h1{
        font-size:2.5rem;
        line-height:1.1;
        margin-bottom:18px;
    }

    .subtitle{
        font-size:1rem;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        gap:14px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .contact-info{
        font-size:.9rem;
    }

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        right:-100%;
        width:220px;
        background:#111;
        flex-direction:column;
        padding:24px;
        border-radius:12px;
        transition:.35s;
    }

    .nav-links.active{
        right:5%;
    }

    .about,
    .contact-wrapper{
        grid-template-columns:1fr;
    }

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

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

}
.logo-link{
    display:flex;
    align-items:center;
}