*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    padding-top:70px;   /* Fixed header space */
    font-family: Arial, sans-serif;
}

/* ===== FIXED HEADER ===== */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;        /* Fix height */
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 60px;
    border-bottom:1px solid #eee;
    z-index:9999;
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-name{
    font-weight:800;
    font-size:22px;
    color:#c91c1c;
}

nav a{
    margin-left:25px;
    text-decoration:none;
    font-weight:600;
    color:#222;
    transition:0.3s;
}

nav a:hover{
    color:#16a34a;
}

.active{
    color:#16a34a !important;
}
/* ===== BRAND NAME FIX ===== */
.brand-name{
    font-family: 'Poppins', sans-serif;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #000000;
    white-space: nowrap;
}

/* HEADER FIX HEIGHT */
header{
    height:70px;
    display:flex;
    align-items:center;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    border-bottom: 1px solid #eee;
    z-index: 9999;
}

body{
    
   padding-top: 70px;
}

.brand{
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name{
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #b91c1c;
}
/* ================= FOOTER START ================= */

footer{
    background:#f8fafc;        /* Light Background */
    color:#1f2937;
    margin-top:100px;
    font-family:'Poppins', sans-serif;
}

/* ===== TOP ACTION STRIP ===== */

.footer-actions{
    background:#e5e7eb;
    padding:50px 60px;
}

.footer-actions-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.footer-box{
    flex:1;
    text-align:center;
}

/* ===== BUTTON BASE ===== */

.footer-box a{
    display:inline-block;
    padding:16px 36px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    border-radius:40px;
    transition:0.3s ease;
}

/* Call Button */

.footer-box:nth-child(1) a{
    background:#ef4444;
    color:#fff;
}

.footer-box:nth-child(1) a:hover{
    background:#dc2626;
    transform:translateY(-4px);
}

/* WhatsApp Button */

.footer-box:nth-child(2) a{
    background:#22c55e;
    color:#fff;
}

.footer-box:nth-child(2) a:hover{
    background:#16a34a;
    transform:translateY(-4px);
}

/* Legal Button */

.footer-box:nth-child(3) a{
    background:#ffffff;
    color:#111827;
    border:2px solid #d1d5db;
}

.footer-box:nth-child(3) a:hover{
    background:#f3f4f6;
    transform:translateY(-4px);
}

/* ===== MAIN FOOTER CONTENT ===== */

.footer-main{
    display:flex;
    justify-content:space-between;
    padding:60px;
    border-top:1px solid #d1d5db;
}

.footer-company{
    width:50%;
}

.footer-company h3{
    font-size:20px;
    margin-bottom:15px;
}

.footer-company p{
    line-height:1.8;
    color:#4b5563;
}

/* ===== SOCIAL SECTION ===== */

.footer-social{
    text-align:right;
}

.footer-social h3{
    margin-bottom:15px;
}

.social-icons a{
    margin-left:15px;
    display:inline-block;
}

.social-icons img{
    width:30px;
    height:30px;
    transition:0.3s;
}

.social-icons img:hover{
    transform:scale(1.15);
}

/* ===== BOTTOM LINE ===== */

.footer-bottom{
    width:100%;
    background:#000;
    color:#fff;
    text-align:center;
    padding:18px 0;
    font-size:14px;
    font-weight:500;
    clear:both;
}



/* ===== RESPONSIVE ===== */

@media(max-width:900px){

    .footer-actions-container{
        flex-direction:column;
        gap:20px;
    }

    .footer-main{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .footer-company{
        width:100%;
    }

    .footer-social{
        text-align:center;
    }
}

/* ================= FOOTER END ================= */
/* ===== FLOATING WHATSAPP BUTTON ===== */

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float img{
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}

/* ===== FLOATING WHATSAPP END  ===== */




/* ================= PRODUCT PAGE DESIGN ================= */

.product-section{
    padding:70px 60px;
    background:#f8fafc;
}

.product-section h2{
    text-align:center;
    font-size:30px;
    margin-bottom:40px;
    font-weight:700;
}

/* 4 products per row */
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* Product Card */
.product-card{
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    padding:15px;
    transition:0.3s ease;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-6px);
}

/* Image Box */
.product-img{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:10px;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Product Name */
.product-name{
    margin-top:15px;
    font-size:16px;
    font-weight:600;
}

/* Responsive */
@media(max-width:1100px){
    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:800px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:500px){
    .product-grid{
        grid-template-columns:1fr;
    }
}

/* ================= PRODUCTS PAGE END ================= */
.product-section{
    padding:60px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.product-card{
    background:#fff;
    padding:15px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:8px;
}

.product-card h4{
    margin-top:10px;
}


.footer-contact{
    width:30%;
}

.footer-contact h3{
    margin-bottom:15px;
}

.footer-contact p{
    line-height:1.8;
    color:#4b5563;
    font-size:15px;
}
