*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#e65100;
    padding:18px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.logo{
    color:white;
    font-size:28px;
    font-weight:bold;
}

/* Hide checkbox */
#menu-toggle{
    display:none;
}

/* Hide hamburger on desktop */
.menu-btn{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* Desktop Menu */
.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    height:500px;
    background:
    linear-gradient(rgba(0,0,0,.5),
    rgba(0,0,0,.5)),
    url("borewell.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero h1{
    font-size:50px;
    margin-bottom:15px;
}

.hero p{
    font-size:22px;
}

/* =========================
   CALL BUTTON
========================= */

.call-btn{
    display:inline-block;
    margin-top:25px;
    background:#e65100;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:30px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.call-btn:hover{
    background:#e65100;
}

/* =========================
   SECTIONS
========================= */

.about,
.services,
.contact{
    padding:70px 20px;
    text-align:center;
}

.services{
    background:#f7f7f7;
}

h2{
    color:#e65100;
    margin-bottom:15px;
}

.divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
}

.divider span{
    width:60px;
    height:2px;
    background:#e65100;
}

.divider i{
    color:#e65100;
}

.about p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

.service-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.card{
    width:280px;
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card h3{
    color:#e65100;
    padding:15px 10px 10px;
}

.card p{
    padding:0 15px 20px;
}

.contact-box{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
}

.item{
    width:250px;
}

.item i{
    font-size:35px;
    color:#e65100;
    margin-bottom:15px;
}

.item a{
    color:#e65100;
    text-decoration:none;
    font-weight:bold;
}

footer{
    background:#e65100;
    color:white;
    text-align:center;
    padding:15px;
}
footer a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}
footer a:hover{
    text-decoration:underline;
}
footer a{
    color:#ffffff;
    text-decoration:none;
    font-weight:bold;
}

footer a:hover{
    text-decoration:underline;
}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width:768px){

    .navbar{
        justify-content:center;
        padding:15px 20px;
    }

    .logo{
        font-size:22px;
        text-align:center;
    }

    /* Show hamburger only on mobile */
    .menu-btn{
        display:block;
        position:absolute;
        right:20px;
        top:50%;
        transform:translateY(-50%);
    }

    /* Hide menu by default */
    .nav-links{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#e65100;
        flex-direction:column;
        text-align:center;
        gap:0;
    }

    .nav-links li{
        padding:15px;
        border-top:1px solid rgba(255,255,255,.2);
    }

    /* Show menu when toggle checked */
    #menu-toggle:checked ~ .nav-links{
        display:flex;
    }

    .hero{
        height:400px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:18px;
    }

    .card{
        width:100%;
        max-width:320px;
    }

    .contact-box{
        flex-direction:column;
        align-items:center;
    }
}