* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* GLOBAL EFFECTS */
.fade-in { animation: fadeIn 1s ease forwards; opacity: 0; }
.slide-up { animation: slideUp 1s ease forwards; opacity: 0; }
.fade-item { animation: fadeIn 1.3s ease forwards; opacity: 0; }

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.logo img,
.logo-img {
    height: 100px;      /* adjust size if needed */
    width: auto;
    object-fit: contain;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 14px;
}



/* NAVBAR */
.navbar {
    background: transparent;      /* 🔥 Makes navbar fully transparent */
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;           /* 🔥 Makes navbar float over hero section */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo-placeholder {
    width: 90px;
    height: 60px;
    background: #fff;
    color: #27ae60;
    display: flex;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.nav-links a {
    margin: 0 15px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}
.btn-nav {
    background: #fff;
    color: #27ae60;
    padding: 8px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
}

.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* NEW HERO SECTION */
.new-hero {
    width: 100%;
    background: #21a557;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 140px 60px 80px 60px; /* Increased top padding */
    color: white;
}


.new-hero-left h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.new-hero-left p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 15px 40px;
    border-radius: 40px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}
.hero-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.img-placeholder {
    width: 500px;
    height: 360px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
}

/* PRODUCTS */
.products {
    padding: 70px 40px;
    text-align: center;
}

.section-title {
    font-size: 30px;
    color: #27ae60;
    margin-bottom: 10px;
}

.filter-buttons {
    margin: 20px 0;
}
.filter-btn {
    padding: 8px 20px;
    margin: 5px;
    border-radius: 20px;
    border: 1px solid #27ae60;
    background: transparent;
    cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
    background: #27ae60;
    color: #fff;
}

.product-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 0 10px #ccc;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-placeholder {
    width: 100%;
    height: 170px;
    background: #eaeaea;
    border-radius: 10px;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

/* WHATSAPP */
.wa-placeholder {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .new-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .img-placeholder {
        width: 100%;
        height: 250px;
    }

    .menu-icon {
        display: block;
        color: white;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #62cd5f;
        padding: 20px;
        width: 100%;
    }

    .nav-links a {
        margin: 10px 0;
    }
}

/* ABOUT US SECTION */

.about-section {
    background: #f4f6fa;
    padding: 80px 60px;
    margin: 20px;
}

.about-title {
    text-align: center;
    font-size: 32px;
    color: #27ae60;
    font-weight: 700;
}

.about-line {
    width: 80px;
    height: 3px;
    background: #27ae60;
    margin: 10px auto 40px auto;
    border-radius: 5px;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.about-left h3 {
    font-size: 28px;
    color: #27ae60;
    margin-bottom: 10px;
}

.about-left p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* About Right Image Placeholder */
.about-img-placeholder {
    width: 550px;
    height: 420px;
    background: #e0e0e0;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 26px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-img-placeholder {
        width: 100%;
        height: 300px;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 60px;
    background: #fff;
    text-align: center;
}

.contact-title {
    font-size: 32px;
    color: #27ae60;
    font-weight: 700;
}

.contact-line {
    width: 80px;
    height: 3px;
    background: #27ae60;
    margin: 10px auto 25px auto;
    border-radius: 5px;
}

.contact-company {
    font-size: 22px;
    color: #27ae60;
    margin-bottom: 10px;
}

.contact-desc {
    color: #444;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT SIDE */
.contact-left {
    width: 45%;
    text-align: left;
    padding: 20px;
    border-right: 2px solid #27ae60;
}

.info-title {
    color: #27ae60;
    font-size: 18px;
    margin-top: 20px;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    margin-top: 20px;
    border-radius: 8px;
    display: flex;
    font-size: 20px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
}

/* RIGHT SIDE FORM */
.contact-right {
    width: 45%;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

textarea {
    height: 150px;
    resize: none;
}

.send-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.send-btn:hover {
    background: #1e8c4e;
}

/* RESPONSIVE CONTACT */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-left,
    .contact-right {
        width: 100%;
        border-right: none;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }
}

/* NEW FOOTER */
.footer {
    background: #ffffff;
    padding: 60px 60px 20px 60px;
    border-top: 3px solid #21a557;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.footer-heading {
    color: #27ae60;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin: 8px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
}

.footer-list .arrow {
    color: #27ae60;
    font-size: 20px;
    margin-right: 8px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons .icon {
    width: 48px;
    height: 48px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
}

/* COPYRIGHT BAR */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    background: #21a557;
    padding: 15px;
    font-size: 15px;
    color: #fff;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        width: 100%;
    }
}

/* CONTACT SECTION - IMPROVED */
.contact-section {
    padding: 90px 60px;
    background: #f8fdf8;
    text-align: center;
}

.contact-title {
    font-size: 34px;
    color: #22a652;
    font-weight: 700;
}

.contact-line {
    width: 120px;
    height: 3px;
    background: #22a652;
    margin: 12px auto 30px auto;
    border-radius: 5px;
}

.contact-company {
    font-size: 22px;
    font-weight: 600;
    color: #22a652;
}

.contact-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 10px auto 50px auto;
    line-height: 1.6;
}

/* MAIN CONTACT BOX */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    padding: 40px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

/* LEFT SIDE */
.contact-left {
    width: 45%;
    text-align: left;
    padding-right: 20px;
    border-right: 1.5px solid #22a652;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #22a652;
    margin-top: 18px;
}

.contact-left p {
    margin-top: 6px;
    color: #444;
    line-height: 1.6;
}

.map-placeholder {
    width: 100%;
    height: 220px;
    background: #e8e8e8;
    margin-top: 25px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #555;
}

/* RIGHT SIDE FORM */
.contact-right {
    width: 55%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid #cccccc;
    font-size: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

textarea {
    height: 160px;
    resize: none;
}

/* SEND BUTTON */
.send-btn {
    width: 180px;
    padding: 12px;
    border-radius: 30px;
    background: #22a652;
    border: none;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.send-btn:hover {
    background: #1c8a44;
}

/* CONTACT RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        text-align: left;
        padding: 25px;
    }

    .contact-left {
        width: 100%;
        border-right: none;
        padding-right: 0;
    }

    .contact-right {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* FULL-WIDTH FOOTER */
.footer {
    width: 100%;
    background: #ffffff;
    padding: 70px 40px 0 40px;
    border-top: 4px solid #22a652;
}

/* FORCE ONE ROW ALWAYS */
.footer-container {
    width: 100%;
    display: flex;
    flex-wrap: nowrap !important;   /* 🚀 Prevent wrapping */
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* FOOTER COLUMNS */
.footer-col {
    flex: 1;                 /* 🚀 Equal width columns */
    min-width: 0;            /* 🚀 Prevent overflow */
    max-width: 25%;          /* 🚀 Ensures four stay in one row */
}

/* TITLES */
.footer-title {
    font-size: 28px;
    font-weight: 700;
    color: #22a652;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: #22a652;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* LIST */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: #444;
    font-size: 15px;
}

.footer-list .arrow {
    color: #22a652;
    font-size: 20px;
    margin-right: 8px;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: nowrap;          /* 🚀 Force icons stay in same row */
}

.icon {
    width: 48px;
    height: 48px;
    background: #22a652;
    border-radius: 50%;
    color: white;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* COPYRIGHT FULL WIDTH */
.footer-bottom {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #22a652;
    padding: 14px;
    text-align: center;
    color: #fff;
    font-size: 15px;
}

/* MOBILE VIEW */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column !important;
        text-align: center;
    }

    .footer-col {
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
}

.accordion-body {
    display: none;
    padding: 15px;
    background: #f7f7f7;
    border-left: 3px solid #22a652;
    border-radius: 0 0 6px 6px;
}

.accordion-body.show {
    display: block;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: 0.2s ease;
}

.accordion-header:hover {
    background: #f2fff6;
}


