* {
    
    box-sizing: border-box;
}
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

.header {
    margin-top: 0 !important;
    padding-top: 6px !important;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #222;
}


.
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
}

html {
    margin: 0;
    padding: 0;
}

h1, h2, h3, p {
    margin: 10;
}
}
.header {
    border: 3px solid red !important;
}
header {
    margin-top: 0 !important;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 6px 20px;

    background: white;
    border-bottom: 1px solid #eee;

    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 102px !important;
    height: 102px !important;
    object-fit: contain;
}

.logo-text {
    font-size: 50px !important;
    font-weight: 700;
    color: #1B5E20;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 18px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.nav a:hover {
    color: #1B5E20;
}


.nav {
    display: flex;
    gap: 18px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 5px 0;
}


/* HERO */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}
.hero {
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
}

.hero h1,
.hero p {
    position: relative;
    z-index: 2;
    color: white !important;
}
.hero h1,
.hero p {
    color: white !important;
}
.hero {
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 80vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;

    position: relative;
}


/* SECTION */
.section {
    padding: 60px 20px;
}
    text-align: center;
}

.section h2 {
    color: #1B5E20;
    margin-bottom: 30px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* CARD */
.card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}


.card h3 {
    margin-top: 15px;
    font-size: 20px;
    text-align: center;
}

/* IMAGES */
.card img {
    width: 100%;
    height: 220px !important;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #1B5E20;
    color: white;
    margin-top: 40px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* MOBILE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }
}


img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}


body {
    padding-top: 70px;
}


/* ABOUT US */

.about {
    padding: 80px 10%;
    background: #ffffff;
}

.about-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.about h2 {
    font-size: 38px;
    color: #1B5E20;
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}




/* WHY CHOOSE US */

.why-us {
padding: 70px 10%;
background: #f8f9fa;
text-align: center;
}

.why-us h2 {
font-size: 38px;
color: #1B5E20;
margin-bottom: 40px;
}

.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
}

.why-card {
    background: #1B5E20; 
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    background: #145A1A; 
}

.why-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.why-card p {
    color: #eaeaea;
    font-size: 14px;
}

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 9999;
}

.whatsapp-float {
    background: #25D366;
    color: white;

    padding: 12px 16px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: bold;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

    transition: 0.3s;
    text-align: center;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

.whatsapp-float.second {
    background: #128C7E;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    background: #25D366;
    color: white;

    padding: 12px 18px;
    border-radius: 50px;

    font-size: 16px;
    font-weight: bold;
    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
}

/* Popup overlay */
.whatsapp-popup {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);

    justify-content: center;
    align-items: center;

    z-index: 10000;
}

.popup-box {
    background: white;
    padding: 25px;
    border-radius: 10px;

    text-align: center;
    width: 280px;
}

.popup-box h3 {
    margin-bottom: 15px;
    color: #1B5E20;
}

.popup-box a {
    display: block;
    margin: 10px 0;

    padding: 10px;
    background: #25D366;
    color: white;

    text-decoration: none;
    border-radius: 5px;
}

.popup-box button {
    margin-top: 10px;
    padding: 8px 12px;

    border: none;
    cursor: pointer;

    background: #ccc;
    border-radius: 5px;
}


.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* TOP */
.footer-top {
    background: #1B5E20;
    color: white;

    width: 100%;
    padding: 50px 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;

    box-sizing: border-box;
}


.footer-top h3,
.footer-top h4,
.footer-top p {
    color: #fff;
    font-weight: 700;
}


.footer-top > div {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
}

/* MIDDLE */
.footer-middle {
    width: 100%;
    height: 25px;
    background: white;
}

/* BOTTOM */
.footer-bottom {
    width: 100%;
    background: #145A1A;
    color: white;

    text-align: center;
    padding: 15px 20px;

    font-weight: 700;
    font-size: 14px;
}


@media (max-width: 768px) {

   
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    /* About */
    .about {
        padding: 40px 20px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about p {
        font-size: 16px;
    }

    /* Why Choose Us */
    .why-us {
        padding: 40px 20px;
    }

    .why-us h2 {
        font-size: 28px;
    }

   
    .grid {
        grid-template-columns: 1fr; 
    }

    .card img {
        height: 200px;
    }

  
   
   
    .whatsapp-float {
        font-size: 14px;
        padding: 10px 14px;
    }

body {
    margin: 0;
    padding: 0;
}

.header {
    margin: 0;
}


.hero-btn {
    margin-top: 20px;
    padding: 12px 24px;

    background: #25D366;
    color: white;

    text-decoration: none;
    font-weight: 700;

    border-radius: 6px;

    transition: 0.3s;
}

.hero-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}


.hero-btn {
    background: red !important;
}


.why {
    padding: 80px 20px;
    text-align: center;
    background: #f8f9fa;
}

.why h2 {
    font-size: 32px;
    color: #1B5E20;
    margin-bottom: 40px;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}


.product-page {
    padding: 60px 20px;
    text-align: center;
}

.product-info {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.product-info p {
    margin: 10px 0;
    font-size: 16px;
}


.product-page {
    padding: 60px 20px;
    text-align: center;
}

.product-info {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.product-info p {
    margin: 10px 0;
    font-size: 16px;
}

.product-page {
    padding: 50px 20px;
    text-align: center;
}

.product-img {
    width: 280px;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-info {
    max-width: 700px;
    margin: 30px auto;
    text-align: left;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.product-info p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
}


.quote-btn {
    display: block !important;
    margin: 30px auto !important;
    padding: 18px 35px !important;

    background: #25D366 !important;
    color: white !important;

    font-size: 20px !important;
    font-weight: 800 !important;

    text-decoration: none !important;
    text-align: center !important;

    border-radius: 12px !important;

    max-width: 320px !important;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25) !important;

    position: relative !important;
    z-index: 9999 !important;

    transition: 0.3s ease !important;
}

.quote-btn:hover {
    transform: scale(1.05) !important;
    background: #1ea952 !important;
}

.pdf-btn {
    display: inline-block;
    margin: 25px auto;
    padding: 16px 30px;

    background: #1B5E20;
    color: white;

    text-decoration: none;
    font-size: 18px;
    font-weight: 700;

    border-radius: 10px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    transition: 0.3s;
    text-align: center;
}

.pdf-btn:hover {
    background: #145016;
    transform: translateY(-3px);
}


.pdf-btn {
    display: block;
    width: fit-content;
    margin: 30px auto;

    padding: 16px 30px;

    background: #1B5E20;
    color: white;

    font-size: 18px;
    font-weight: bold;

    text-decoration: none;

    border-radius: 10px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.main-bg {
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}