
:root{
    --primary:#138a36;
    --primary-dark:#0d6e2b;
    --secondary:#f5f8f6;
    --text:#2d3748;
    --white:#ffffff;
    --border:#e6e6e6;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:18px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--secondary);
    color:var(--text);
    line-height:1.6;
}

/* Navbar */

.navbar{
    background:#fff !important;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.navbar-brand{
    font-size:1.4rem;
    font-weight:700;
    color:var(--primary)!important;
}

/* Hero */

.hero{
    background:linear-gradient(135deg,#0f8b43,#3ab54a);
    color:#fff;
    padding:80px 0;
}

.hero h1{
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:1.1rem;
    opacity:.95;
}

/* Section */

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-weight:700;
}

/* Cards */

.card{
    border:none;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.3s;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.card h4{
    color:var(--primary);
    font-weight:700;
}

/* Badge */

.badge-location{
    display:inline-block;
    padding:8px 14px;
    background:#e9f8ee;
    color:var(--primary);
    border-radius:30px;
    font-size:.85rem;
    margin-bottom:15px;
}

/* Buttons */

.btn-success{
    background:var(--primary);
    border-color:var(--primary);
    border-radius:10px;
    padding:10px 18px;
    font-weight:600;
}

.btn-success:hover{
    background:var(--primary-dark);
    border-color:var(--primary-dark);
}

/* Forms */

.form-control,
.form-select{
    border-radius:10px;
    padding:12px;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 .2rem rgba(19,138,54,.15);
}

.required{
    color:#dc3545;
}

/* Footer */

footer{
    background:var(--primary);
    color:#fff;
    padding:30px 0;
    text-align:center;
    margin-top:60px;
}

/* Utility */

.shadow-card{
    box-shadow:var(--shadow);
}

.rounded-xl{
    border-radius:var(--radius);
}

/* Mobile */

@media(max-width:768px){

.hero{
    padding:60px 0;
    text-align:center;
}

.hero h1{
    font-size:2rem;
}

.card{
    margin-bottom:20px;
}

.btn{
    width:100%;
}

}

/* ======================================================
   MeMall Static Pages
   Header Styles
   ====================================================== */



/* Fixed Header */

.static-header {
    z-index: 1030;
    background: var(--white);
}

.static-header .navbar {
    min-height: 76px;
    background: var(--white) !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
    padding: 10px 0;
}

/* Brand */

.static-brand {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary) !important;
    text-decoration: none;
}

.static-brand:hover {
    color: var(--primary-dark) !important;
}

/* Navigation */

.static-header .navbar-nav {
    gap: 4px;
}

.static-header .nav-link {
    color: var(--header-text) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 11px !important;
    border-radius: 8px;
    transition: all .2s ease;
}

.static-header .nav-link:hover,
.static-header .nav-link:focus {
    color: var(--primary) !important;
    background: #f0f9f2;
}

.static-header .nav-link.active {
    color: var(--primary) !important;
    background: #e9f8ee;
}

/* Mobile */

.static-header .navbar-toggler {
    border: 1px solid #d9e5dc;
    border-radius: 8px;
    padding: 7px 9px;
}

.static-header .navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(19, 138, 54, .15);
}

@media (max-width: 991.98px) {

    .static-header .navbar-collapse {
        margin-top: 10px;
        padding: 8px 0 12px;
        border-top: 1px solid #edf1ee;
    }

    .static-header .navbar-nav {
        gap: 2px;
    }

    .static-header .nav-link {
        padding: 11px 12px !important;
    }
}

/* Space below fixed header */

body {
    padding-top: 76px;
}

/* ======================================================
   Mini Style
   ======================================================  */
   
.section-padding{
padding:100px 0;
}

.section-tag{

display:inline-block;

padding:8px 20px;

background:#E8F5E9;

color:#2E7D32;

font-size:14px;

font-weight:600;

border-radius:30px;

margin-bottom:20px;

letter-spacing:1px;

}

.section-title{

font-size:44px;

font-weight:700;

margin-bottom:25px;

}

.section-text{

font-size:18px;

line-height:1.9;

color:#666;

margin-bottom:20px;

}



.why-section{

background:#f8faf8;

padding:100px 0;

}



.feature-box{

background:#fff;

padding:45px 30px;

border-radius:25px;

transition:.4s;

height:100%;

text-align:center;

box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.feature-box:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.icon-box{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

background:#2E7D32;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

color:#fff;

}



.feature-box h4{

font-weight:700;

margin-bottom:15px;

}



.feature-box p{

color:#666;

line-height:1.8;

}



.join-card{

background:white;

padding:45px 20px;

border-radius:20px;

text-align:center;

transition:.4s;

box-shadow:0 8px 30px rgba(0,0,0,.05);

height:100%;

}



.join-card:hover{

background:#2E7D32;

color:white;

transform:translateY(-10px);

}



.join-card i{

font-size:55px;

margin-bottom:20px;

display:block;

color:#2E7D32;

}



.join-card:hover i{

color:white;

}

.cta-section{

background:#2E7D32;

padding:70px 0;

color:white;

}

.cta-section h2{

font-size:42px;

font-weight:700;

margin-bottom:20px;

}

.partner-form{

background:white;

padding:50px;

border-radius:25px;

box-shadow:0 15px 50px rgba(0,0,0,.08);

}

.partner-form input,
.partner-form select{

height:60px;

border-radius:15px;

}

.partner-form button{

border-radius:50px;

padding:16px 45px;

}

.faq-section{

background:#f8faf8;

padding:100px 0;

}

.accordion-item{

margin-bottom:15px;

border:none;

border-radius:15px;

overflow:hidden;

box-shadow:0 5px 20px rgba(0,0,0,.05);

}

footer{

background:#1f2937;

color:white;

padding:70px 0 30px;

}

footer hr{

opacity:.15;

margin:35px 0;

}

.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;

font-size:34px;

color:white;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.08);

color:white;

}



/* ======================================================
   STATIC FOOTER
   ====================================================== */

.static-footer {
    background: #075b2b;
    color: #e5e7eb;
    padding: 55px 0 0;
}

.static-footer .row {
    text-align: left;
}


/* Company */

.static-footer-brand {
    text-align: left;
}

.static-footer-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 0 18px;
}

.static-footer-text {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 260px;
}

.static-footer-shop {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.static-footer-shop:hover {
    color: #b7f0c8;
}


/* Footer Headings */

.static-footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 18px;
}


/* Footer Links */

.static-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static-footer-links li {
    margin-bottom: 9px;
}

.static-footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
}

.static-footer-links a:hover {
    color: #ffffff;
}


/* Contact */

.static-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.static-footer-contact li {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.static-footer-contact strong {
    color: #ffffff;
    font-weight: 600;
}

.static-footer-contact a {
    color: #d1d5db;
    text-decoration: none;
}

.static-footer-contact a:hover {
    color: #ffffff;
}


/* Social Media */

.static-footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;

    color: #ffffff;
    text-decoration: none;

    font-size: 17px;

    transition: all .2s ease;
}

.social-link:hover {
    background: #ffffff;
    color: #075b2b;
    border-color: #ffffff;
}


/* Bottom */

.static-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 30px;
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, .15);

    color: #cbd5d1;
    font-size: 13px;
}

.static-footer-tagline {
    font-weight: 600;
    color: #ffffff;
}


/* Mobile */

@media (max-width: 767.98px) {

    .static-footer {
        padding-top: 40px;
    }

    .static-footer-brand,
    .static-footer .row {
        text-align: left;
    }

    .static-footer-social {
        justify-content: flex-start;
    }

    .static-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
