/* =========================================
            GLOBAL CSS
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
}


/* =========================================
            NAVBAR
========================================= */

.navbar {
    background: #fff;
    padding: 14px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.logo {
    height: 65px;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.nav-link {
    color: #222 !important;
    font-size: 15px;
    font-weight: 600;
    margin-left: 18px;
}

.nav-link:hover,
.nav-link.active {
    color: #198754 !important;
}


/* =========================================
            HERO SECTION
========================================= */

.hero-section {
    padding: 90px 0;
    background: #f7fff5;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #0B4D1E;
}

.hero-content p {
    margin-top: 18px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    margin-top: 24px;
    background: #198754;
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.hero-btn:hover {
    background: #0B4D1E;
    color: #fff;
    transform: translateY(-2px);
}

.hero-image {
    max-height: 520px;
    margin: auto;
}


/* =========================================
            SECTION TITLE
========================================= */

.section-title {
    margin-bottom: 42px;
}

.section-tag {
    color: #198754;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0B4D1E;
}


/* =========================================
            ABOUT SECTION
========================================= */

.about-section,
.about-page-section {
    padding: 90px 0;
}

.about-content h2,
.about-page-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0B4D1E;
    margin-bottom: 18px;
}

.about-content p,
.about-page-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-btn {
    display: inline-block;
    background: #198754;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.about-btn:hover {
    background: #0B4D1E;
    color: #fff;
}


/* =========================================
            PRODUCTS
========================================= */

.products-section,
.products-page-section {
    padding: 90px 0;
    background: #f8fff5;
}

.product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    height: 260px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
}

.product-info h4 {
    color: #0B4D1E;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-info p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.product-btn {
    display: inline-block;
    margin-top: 16px;
    background: #198754;
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.product-btn:hover {
    background: #0B4D1E;
    color: #fff;
}


/* =========================================
            BUSINESS SECTION
========================================= */

.business-section {
    padding: 90px 0;
}

.business-box {
    background: linear-gradient(135deg, #0B4D1E, #198754);
    padding: 55px;
    border-radius: 28px;
    color: #fff;
}

.business-box h2 {
    font-size: 44px;
    font-weight: 800;
}

.business-box p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
}

.business-btn {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #198754;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.business-btn:hover {
    background: #0B4D1E;
    color: #fff;
}


/* =========================================
            PAGE BANNER
========================================= */

.page-banner {
    position: relative;
    padding: 80px 0;
    background: #f7fff5;
    text-align: center;
    overflow: hidden;
}

.page-banner h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0B4D1E;
}

.page-banner p {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
}


/* =========================================
            FORMS
========================================= */

.contact-section {
    padding: 90px 0;
}

.contact-box,
.contact-form-box,
.login-box {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.form-control {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none !important;
    font-size: 14px;
}

.form-control:focus {
    border-color: #198754;
}

textarea.form-control {
    height: auto;
}

.login-btn {
    background: #198754;
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.login-btn:hover {
    background: #0B4D1E;
}


/* =========================================
            POLICY PAGES
========================================= */

.policy-section {
    padding: 90px 0;
}

.policy-box {
    background: #fff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.policy-box h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0B4D1E;
    margin-bottom: 18px;
}

.policy-item {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.policy-item:last-child {
    border: none;
}

.policy-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0B4D1E;
    margin-bottom: 10px;
}

.policy-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}


/* =========================================
            PREMIUM FOOTER
========================================= */

.premium-footer {
    background: linear-gradient(rgba(0, 45, 15, 0.93), rgba(0, 45, 15, 0.93)), url('../images/footer-bg.jpg') center center/cover no-repeat;
    color: #fff;
    margin-top: 50px;
}

.footer-overlay {
    padding: 38px 0 15px;
}

.footer-main-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-info {
    color: #f1f1f1;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 6px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 2px;
}

.footer-menu li a {
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
}

.footer-menu li a:hover {
    color: #d4ff9a;
    padding-left: 3px;
}

.footer-map {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

.footer-social a:hover {
    background: #d4ff9a;
    color: #0B4D1E;
}

.footer-bottom-area {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 20px;
    padding-top: 12px;
}

.copyright-text {
    font-size: 12px;
    color: #fff;
    margin: 0;
}


/* =========================================
            WHATSAPP
========================================= */

.whatsapp-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn:hover {
    transform: scale(1.08);
}


/* =========================================
            MOBILE RESPONSIVE
========================================= */

@media(max-width:991px) {
    .hero-section {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .section-title h2 {
        font-size: 32px;
    }
    .about-content h2,
    .about-page-content h2,
    .business-box h2 {
        font-size: 34px;
    }
    .business-box {
        padding: 35px 24px;
    }
    .page-banner h1 {
        font-size: 38px;
    }
    .footer-main-title {
        font-size: 30px;
    }
    .navbar-collapse {
        padding-top: 12px;
    }
    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
    .copyright-text {
        text-align: center;
        margin-top: 10px;
    }
}

@media(max-width:576px) {
    .hero-content h1 {
        font-size: 34px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .footer-main-title {
        font-size: 26px;
    }
    .policy-box {
        padding: 24px;
    }
}