/* =========================
   GLOBAL
========================= */

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    margin:0;
    padding:0;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#2E7D32;
    padding:8px 0;
    font-size:14px;
}

.top-contact a{
    color:#fff;
    text-decoration:none;
    margin-right:20px;
    transition:0.3s;
}

.top-contact a:hover{
    color:#FFD54F;
}

.top-contact i{
    margin-right:6px;
}

.top-links a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
    transition:0.3s;
}

.top-links a:hover{
    color:#FFD54F;
}

.top-links i{
    margin-right:5px;
}

/* =========================
   HEADER
========================= */

.main-header{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:999;
    padding:8px 0;
}

.navbar{
    padding:0;
}

.navbar-brand{
    padding:0;
}

.navbar-brand img{
    height:90px;
    width:auto;
    transition:0.3s;
}

.nav-link{
    color:#222;
    font-weight:600;
    margin:0 10px;
    transition:0.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#2E7D32;
}

.dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.10);
}

.dropdown-item{
    padding:10px 15px;
    font-size:14px;
}

.dropdown-item:hover{
    background:#f5f5f5;
    color:#2E7D32;
}

/* =========================
   SEARCH BOX
========================= */

.search-form{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:50px;
    overflow:hidden;
    background:#fff;
}

.search-form input{
    border:none;
    padding:10px 15px;
    width:180px;
    outline:none;
    font-size:14px;
}

.search-form button{
    border:none;
    background:#2E7D32;
    color:#fff;
    width:50px;
    height:45px;
    transition:0.3s;
}

.search-form button:hover{
    background:#1B5E20;
}

/* =========================
   RIGHT SIDE
========================= */

.header-right{
    display:flex;
    align-items:center;
    gap:18px;
}

/* =========================
   CART
========================= */

.cart-btn{
    position:relative;
    font-size:28px;
    color:#2E7D32;
}

.cart-btn:hover{
    color:#1B5E20;
}

.cart-count{
    position:absolute;
    top:-8px;
    right:-10px;
    background:#FF6B00;
    color:#fff;
    width:20px;
    height:20px;
    border-radius:50%;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
}

/* =========================
   MOBILE MENU
========================= */

.navbar-toggler{
    border:none;
    font-size:24px;
    box-shadow:none !important;
}

.navbar-toggler:focus{
    box-shadow:none !important;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .navbar-brand img{
        height:70px;
    }

    .navbar-collapse{
        margin-top:15px;
        padding-top:15px;
        border-top:1px solid #eee;
    }

    .navbar-nav{
        text-align:center;
    }

    .nav-link{
        padding:12px 0;
        margin:0;
    }

    .header-right{
        flex-direction:column;
        width:100%;
        margin-top:15px;
    }

    .search-form{
        width:100%;
    }

    .search-form input{
        width:100%;
    }

    .cart-btn{
        margin-top:10px;
    }

}

@media(max-width:767px){

    .top-contact{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:5px;
    }

    .top-contact a{
        margin-right:0;
        font-size:13px;
    }

    .navbar-brand img{
        height:60px;
    }

}

@media(max-width:576px){

    .top-bar{
        font-size:12px;
    }

    .navbar-brand img{
        height:55px;
    }

}
/* ==========================
   HERO SLIDER
========================== */

.hero-slide{
    position:relative;
    height:650px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:650px;
}

.hero-content span{
    background:#6BCB45;
    color:#000;
    padding:10px 25px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:70px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    background:#6BCB45;
    color:#000;
    padding:15px 35px;
    border-radius:10px;
    font-weight:700;
}

.hero-btn:hover{
    background:#57b136;
    color:#000;
}

.carousel-control-prev,
.carousel-control-next{
    width:6%;
}

@media(max-width:991px){

    .hero-slide{
        height:500px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:576px){

    .hero-slide{
        height:420px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

}
/* ==========================
   CATEGORY SECTION
========================== */

.categories-section{
    padding:80px 0;
    background:#fff;
}

.section-title{
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#222;
}

.section-title p{
    color:#777;
}

.category-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-image{
    height:220px;
    overflow:hidden;
}

.category-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.category-content{
    padding:20px;
    text-align:center;
}

.category-content h4{
    font-size:20px;
    font-weight:600;
    color:#222;
    margin:0;
}
@media(max-width:767px){

    .categories-section{
        padding:50px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .category-image{
        height:150px;
    }

    .category-content h4{
        font-size:16px;
    }

}
/* ==========================
   FEATURED PRODUCTS
========================== */

.featured-products{
    padding:80px 0;
    background:#f8f9fa;
}

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.product-image{
    height:240px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:15px;
    transition:.3s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-content{
    padding:20px;
}

.product-content h4{
    font-size:18px;
    font-weight:600;
    min-height:50px;
}

.price-box{
    margin:15px 0;
}

.old-price{
    text-decoration:line-through;
    color:#888;
    margin-right:10px;
}

.sale-price{
    color:#2E7D32;
    font-size:20px;
    font-weight:700;
}

.product-buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.view-btn{
    background:#222;
    color:#fff;
    padding:10px;
    border-radius:8px;
    text-align:center;
}

.cart-btn-product{
    border:none;
    background:#4CAF50;
    color:#fff;
    padding:10px;
    border-radius:8px;
    font-weight:600;
}

/*==========responsive============*/
@media(max-width:767px){

    .featured-products{
        padding:50px 0;
    }

    .product-image{
        height:180px;
    }

    .product-content h4{
        font-size:15px;
        min-height:auto;
    }

    .sale-price{
        font-size:18px;
    }

}

/*===========why chose==========*/
/* ==========================
   WHY CHOOSE US
========================== */

.why-choose{
    padding:80px 0;
    background:#fff;
}

.choose-box{
    background:#fff;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.choose-box:hover{
    transform:translateY(-8px);
    border-bottom:4px solid #4CAF50;
}

.choose-box i{
    font-size:50px;
    color:#4CAF50;
    margin-bottom:20px;
}

.choose-box h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.choose-box p{
    color:#666;
    line-height:1.8;
}
/* ==========================
   BRANDS SECTION
========================== */

.brands-section{
    padding:80px 0;
    background:#f8f9fa;
}

.brands-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:15px 0;
}

.brands-slider::-webkit-scrollbar{
    display:none;
}

.brand-item{
    min-width:180px;
    height:120px;
    background:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.brand-item:hover{
    transform:translateY(-5px);
}

.brand-item img{
    max-width:130px;
    max-height:70px;
    object-fit:contain;
}
@media(max-width:767px){

    .brands-section{
        padding:50px 0;
    }

    .brand-item{
        min-width:140px;
        height:90px;
    }

    .brand-item img{
        max-width:100px;
        max-height:50px;
    }

}
/*===========call to action===========*/
/* ==========================
   CTA SECTION
========================== */

.cta-section{
    padding:80px 0;
    background:#fff;
}

.cta-wrapper{
    background:linear-gradient(
        135deg,
        #2E7D32,
        #4CAF50
    );
    padding:60px;
    border-radius:25px;
    overflow:hidden;
    position:relative;
}

.cta-wrapper::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-80px;
    right:-80px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-tag{
    display:inline-block;
    background:#fff;
    color:#2E7D32;
    padding:8px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:15px;
}

.cta-content h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.cta-content p{
    color:#f5f5f5;
    font-size:17px;
    line-height:1.8;
    margin:0;
}

.cta-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
    align-items:flex-end;
    position:relative;
    z-index:2;
}

.cta-call-btn{
    background:#fff;
    color:#2E7D32;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    display:inline-block;
}

.cta-contact-btn{
    background:#FF6B00;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    display:inline-block;
}

.cta-call-btn:hover,
.cta-contact-btn:hover{
    color:#fff;
    opacity:.9;
}
@media(max-width:991px){

    .cta-wrapper{
        padding:40px 25px;
        text-align:center;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-buttons{
        margin-top:30px;
        align-items:center;
    }

}

@media(max-width:576px){

    .cta-content h2{
        font-size:24px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-call-btn,
    .cta-contact-btn{
        width:100%;
        text-align:center;
    }

}
/*===========footer=========*/
/* ==========================
   FOOTER
========================== */

.footer{
    background:#1B5E20;
    color:#fff;
    padding-top:70px;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
    background:#fff;
    padding:8px;
    border-radius:10px;
}

.footer-widget h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:25px;
    color:#fff;
}

.footer-widget p{
    color:#ddd;
    line-height:1.8;
}

.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:#ddd;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#fff;
    padding-left:5px;
}

.footer-contact li{
    color:#ddd;
}

.footer-contact i{
    width:25px;
    color:#4CAF50;
}

.footer-social{
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2E7D32;
    color:#fff;
    border-radius:50%;
    margin-right:8px;
    transition:.3s;
}

.footer-social a:hover{
    background:#4CAF50;
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:50px;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.1);
    color:#ccc;
    font-size:14px;
}
@media(max-width:767px){

    .footer{
        text-align:center;
    }

    .footer-logo{
        height:70px;
    }

    .footer-bottom{
        text-align:center;
    }

}
/* ==========================
   FLOATING BUTTONS
========================== */

.floating-call,
.floating-whatsapp{
    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.25);
    transition:.3s;
}

.floating-call{
    background:#FF6B00;
    bottom:95px;
}

.floating-whatsapp{
    background:#25D366;
    bottom:20px;
}

.floating-call:hover,
.floating-whatsapp:hover{
    transform:scale(1.1);
    color:#fff;
}

/* Mobile */

@media(max-width:767px){

    .floating-call,
    .floating-whatsapp{
        width:55px;
        height:55px;
        font-size:22px;
        right:15px;
    }

    .floating-call{
        bottom:85px;
    }

    .floating-whatsapp{
        bottom:15px;
    }

}
.floating-whatsapp{
    background:#25D366;
    bottom:20px;
    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}
/*============shop page start===========*/
/* ==========================
   SHOP BANNER
========================== */
.shop-banner{
    background: linear-gradient(135deg,#2e7d32,#1b5e20);
    padding:80px 0;
    text-align:center;
    color:#fff;
}

.shop-banner-content h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.shop-banner-content p{
    font-size:18px;
    margin:0;
    opacity:.9;
}
.shop-breadcrumb{
    background:#fff;
    padding:25px 0;
    border-bottom:1px solid #eee;
}


/*breadgrum section ============*/
/*.breadcrumb-wrapper{*/
/*    display:flex;*/
/*    justify-content:space-between;*/
/*    align-items:center;*/
/*}*/

/*.breadcrumb-left h2{*/
/*    font-size:28px;*/
/*    font-weight:700;*/
/*    margin-bottom:5px;*/
/*}*/

/*.breadcrumb-left p{*/
/*    margin:0;*/
/*    color:#666;*/
/*}*/

/*.breadcrumb-right{*/
/*    font-size:15px;*/
/*}*/

/*.breadcrumb-right a{*/
/*    color:#2e7d32;*/
/*    text-decoration:none;*/
/*    font-weight:600;*/
/*}*/

/*.breadcrumb-right span{*/
/*    margin:0 5px;*/
/*}*/

/*@media(max-width:768px){*/

/*    .breadcrumb-wrapper{*/
/*        flex-direction:column;*/
/*        text-align:center;*/
/*        gap:10px;*/
/*    }*/

/*}*/
/*breadgrum section end==========*/
.shop-main-section{
    padding:60px 0;
    background:#f8f9fa;
}

.shop-sidebar,
.shop-products{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.sidebar-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
}

.sidebar-list{
    list-style:none;
    margin:0;
    padding:0;
}

.sidebar-list li{
    border-bottom:1px solid #eee;
}

.sidebar-list li:last-child{
    border-bottom:none;
}

.sidebar-list li a{
    display:block;
    padding:12px 0;
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.sidebar-list li a:hover{
    color:#28a745;
    padding-left:8px;
}

.products-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:20px;
    margin-bottom:25px;
    border-bottom:1px solid #eee;
}

.product-count{
    font-weight:600;
}

.product-sort{
    width:220px;
}

@media(max-width:991px){

    .shop-sidebar{
        margin-bottom:25px;
    }

}

@media(max-width:768px){

    .products-topbar{
        flex-direction:column;
        gap:15px;
    }

    .product-sort{
        width:100%;
    }

}
.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #eee;
    transition:.3s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product-image{
    height:220px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.product-content{
    padding:15px;
}

.product-category{
    font-size:12px;
    color:#28a745;
    font-weight:600;
    text-transform:uppercase;
}

.product-content h5{
    font-size:17px;
    margin:10px 0;
    min-height:45px;
    font-weight:600;
}

.product-price{
    margin-bottom:10px;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    margin-right:8px;
}

.sale-price{
    color:#28a745;
    font-size:22px;
    font-weight:700;
}

.in-stock{
    background:#d4edda;
    color:#155724;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
}

.out-stock{
    background:#f8d7da;
    color:#721c24;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
}

.product-buttons{
    margin-top:15px;
    display:flex;
    gap:10px;
}

/*================product detail page===========*/
.product-details-section{
    padding:60px 0;
}

.main-product-image img{
    width:100%;
    border:1px solid #eee;
    border-radius:12px;
    padding:15px;
}

.thumbnail-images{
    display:flex;
    gap:10px;
    margin-top:15px;
    flex-wrap:wrap;
}

.thumbnail-img{
    width:80px;
    height:80px;
    object-fit:cover;
    border:1px solid #ddd;
    border-radius:8px;
    cursor:pointer;
}

.product-category{
    color:#2E7D32;
    font-weight:600;
}

.product-info h1{
    margin:15px 0;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    margin-right:10px;
}

.sale-price{
    color:#2E7D32;
    font-size:28px;
    font-weight:700;
}

.product-description{
    margin-top:20px;
    line-height:1.8;
}

.qty-box{
    max-width:120px;
    margin-top:20px;
}

.exchange-box{
    background:#f1fff1;
    border:1px solid #cce5cc;
    padding:20px;
    border-radius:10px;
}

.related-products{
    padding:50px 0;
}

.section-title{
    margin-bottom:30px;
}
.related-products .product-card{
    height:100%;
}
.product-card img{
    height:250px;
    object-fit:contain;
}

/*=========product specs======*/
.product-extra-info{
    padding:50px 0;
}

.info-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:25px;
    height:100%;
}

.info-card h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:20px;
    color:#2E7D32;
}

.info-card table{
    margin-bottom:0;
}

.info-card th{
    width:35%;
    background:#f8f8f8;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:0;
}

.feature-list li{
    padding:12px;
    margin-bottom:10px;
    background:#f8fff8;
    border-left:4px solid #2E7D32;
    border-radius:6px;
}

.feature-list i{
    color:#2E7D32;
    margin-right:8px;
}

/*=====================related produts======*/
.related-products-section{
    padding:60px 0;
    background:#f8f9fa;
}

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    font-size:36px;
    font-weight:700;
    color:#222;
}

.section-title p{
    color:#666;
}

.related-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
    border:1px solid #eee;
    height:100%;
}

.related-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.related-image{
    height:220px;
    padding:15px;
    background:#fff;
}

.related-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.related-content{
    padding:15px;
}

.related-content h5{
    font-size:18px;
    min-height:50px;
    margin-bottom:10px;
}

.related-price{
    margin-bottom:15px;
}

.related-price .old-price{
    color:#999;
    text-decoration:line-through;
    margin-right:8px;
}

.related-price .sale-price{
    color:#2E7D32;
    font-size:24px;
    font-weight:700;
}

@media(max-width:768px){

    .related-image{
        height:180px;
    }

}
/*==============cart.php===========*/
.cart-banner{
    background:#2E7D32;
    color:#fff;
    padding:60px 0;
}

.cart-section{
    padding:60px 0;
}

.cart-table img{
    width:80px;
    height:80px;
    object-fit:contain;
}

.cart-product{
    display:flex;
    align-items:center;
    gap:15px;
}

.qty-box{
    display:flex;
    align-items:center;
}

.qty-box input{
    width:50px;
    text-align:center;
}

.qty-btn{
    width:35px;
    height:35px;
    background:#2E7D32;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.remove-btn{
    color:red;
    font-size:20px;
}

.cart-summary{
    margin-top:30px;
    max-width:350px;
    margin-left:auto;
    background:#fff;
    border:1px solid #eee;
    padding:25px;
    border-radius:10px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.empty-cart{
    text-align:center;
    padding:80px 20px;
}

.empty-cart i{
    font-size:80px;
    color:#2E7D32;
    margin-bottom:20px;
}
/*==========chekuot.php==========*/
.checkout-section{
    padding:60px 0;
}

.checkout-card,
.order-summary{
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:25px;
}

.checkout-card h3,
.order-summary h3{
    margin-bottom:25px;
    font-weight:700;
}

.summary-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.summary-total{
    display:flex;
    justify-content:space-between;
    font-size:20px;
}

/*===========privacypolocy & tearms  return & refunt========*/
.policy-banner{
    background:#2E7D32;
    color:#fff;
    padding:80px 0;
}

.policy-banner h1{
    font-size:48px;
    font-weight:700;
}

.policy-section{
    padding:60px 0;
}

.policy-content{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.policy-content h3{
    margin-top:30px;
    margin-bottom:15px;
    color:#2E7D32;
    font-weight:700;
}

.policy-content p,
.policy-content li{
    line-height:1.9;
    color:#444;
}

.policy-content ul{
    padding-left:20px;
}

@media(max-width:768px){

    .policy-banner h1{
        font-size:32px;
    }

    .policy-content{
        padding:25px;
    }

}
/*========about.php=======*/
.about-banner{
    background:#2E7D32;
    color:#fff;
    padding:80px 0;
}

.about-banner h1{
    font-size:48px;
    font-weight:700;
}

.about-section{
    padding:80px 0;
}

.about-content h2{
    font-size:38px;
    margin-bottom:20px;
    font-weight:700;
}

.about-content p{
    line-height:1.9;
    color:#555;
}

.why-choose-us{
    background:#f8f9fa;
    padding:80px 0;
}

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    height:100%;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.feature-box i{
    font-size:45px;
    color:#2E7D32;
    margin-bottom:15px;
}

.about-stats{
    padding:80px 0;
}

.stat-box h2{
    color:#2E7D32;
    font-size:42px;
    font-weight:700;
}

.about-cta{
    background:#2E7D32;
    color:#fff;
    padding:80px 0;
}

.about-cta h2{
    margin-bottom:15px;
}

@media(max-width:768px){

    .about-banner h1{
        font-size:32px;
    }

    .about-content h2{
        font-size:28px;
        margin-top:20px;
    }

}
/*=====contact.php=========*/
.contact-banner{
    background:#2E7D32;
    color:#fff;
    padding:80px 0;
}

.contact-banner h1{
    font-size:48px;
    font-weight:700;
}

.contact-section{
    padding:80px 0;
}

.contact-info,
.contact-form-box{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-info h3,
.contact-form-box h3{
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
    font-size:16px;
}

.contact-info i{
    color:#2E7D32;
    width:25px;
}

@media(max-width:768px){

    .contact-banner h1{
        font-size:32px;
    }

    .contact-info{
        margin-bottom:25px;
    }

}