*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins', sans-serif;
background:#f4f6f9;
color:#333;
line-height:1.6;
}

/* HEADER */
header{
background:#c40000;
position:sticky;
top:0;
z-index:999;
}

.header-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
}


.logo img{
height:55px;
}

nav ul{
list-style:none;
display:flex;
gap:30px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
font-size:15px;
transition:0.3s;
}

nav a:hover{
opacity:0.7;
}

/* HERO */
.hero{
background:url('../images/hero.jpg') center/cover no-repeat;
height:520px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
color:#fff;
position:relative;
}

.hero::after{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero h1,
.hero p,
.hero a{
position:relative;
z-index:2;
}

.hero h1{
font-size:44px;
margin-bottom:15px;
font-weight:600;
}

.hero p{
font-size:18px;
margin-bottom:25px;
}

.btn{
background:#0b3d59;
padding:14px 32px;
color:#fff;
text-decoration:none;
border-radius:4px;
font-weight:500;
transition:0.3s;
}

.btn:hover{
background:#072b3f;
}

/* SECTIONS */
.section{
max-width:1200px;
margin:60px auto;
padding:40px 20px;
background:#fff;
border-radius:8px;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.section h2{
margin-bottom:20px;
font-size:28px;
font-weight:600;
}

/* SERVICES */
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
margin-top:30px;
}

.card{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card-content{
padding:20px;
}

.card h3{
margin-bottom:10px;
font-weight:600;
}

/* PAGE IMAGES */
.page-image{
width:100%;
height:380px;
object-fit:cover;
border-radius:8px;
margin-bottom:25px;
}

/* FOOTER */
footer{
background:#0b3d59;
color:#fff;
text-align:center;
padding:40px 20px;
margin-top:60px;
}

footer p{
margin-bottom:10px;
}

/* FLOATING CONTACT BUTTONS */
.floating-contact{
position:fixed;
right:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:9999;
}

.float-btn{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:22px;
box-shadow:0 4px 15px rgba(0,0,0,0.3);
transition:0.3s;
text-decoration:none;
}

.float-btn:hover{
transform:scale(1.1);
}

.call-btn{
background:#0b3d59;
}

.whatsapp-btn{
background:#25D366;
}
.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 4px 15px rgba(0,0,0,0.3);
z-index:9999;
}

.whatsapp-float:hover{
transform:scale(1.1);
transition:0.3s;
<style>
.wa-wrapper {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9999;
}

.wa-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulseWA 1.8s infinite;
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes pulseWA {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wa-popup {
    display: none;
    width: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    animation: fadeUp 0.3s ease;
}

.wa-header {
    background: #25D366;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
}

.wa-body {
    padding: 15px;
}

.wa-body a {
    display: block;
    text-decoration: none;
    background: #f1f1f1;
    padding: 8px;
    border-radius: 6px;
    margin-top: 8px;
    color: #000;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
</style>

<script>
function toggleWA() {
    var popup = document.getElementById("waPopup");
    popup.style.display = popup.style.display === "block" ? "none" : "block";
}
</script>
<style>
.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #007BFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulseCall 1.8s infinite;
    transition: 0.3s;
    z-index: 9999;
}

.call-float:hover {
    transform: scale(1.1);
}

@keyframes pulseCall {
    0% { box-shadow: 0 0 0 0 rgba(0,123,255,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0,123,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,123,255,0); }
}
/* 🔥 FINAL MOBILE NAVBAR FIX */
@media (max-width:768px){

    /* HEADER FIX */
    .header-container{
        flex-direction: column;
        align-items: center;
        background: #fff;
    }

    .logo img{
        width: 90px;
        margin-bottom: 5px;
    }

    /* NAV IN ROW */
    nav{
        width: 100%;
    }

    nav ul{
        display: flex;
        flex-direction: row;   /* 👈 ROW */
        flex-wrap: wrap;      /* 👈 NEXT LINE */
        justify-content: center;
        gap: 8px;
        padding: 5px;
    }

    nav ul li{
        width: auto;
    }

    nav ul li a{
        font-size: 13px;
        padding: 6px 10px;
        background: #007BFF;
        color: #fff;
        border-radius: 5px;
    }

}
</style>
}
/* MOBILE */
@media(max-width:768px){
.hero{
height:420px;
}
.hero h1{
font-size:28px;
}

nav ul{
gap:15px;
}
}
