:root{

    --primary:#1F7A3A;
    --secondary:#F59E0B;

    --dark:#173B28;

    --light:#F8FAF7;

    --text:#666;

    --radius:18px;

    --transition:.35s;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

.section{ 
    padding:100px 0; 
}


/* ===========================
   Navbar
=========================== */

#header {
    position: relative;
    z-index: 999;
}

.navbar {
    padding: 18px 0;
    transition: .35s ease;
    background: transparent;
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    padding: 12px 0;
}

.navbar-brand img {
    height: 65px;
    transition: .3s;
}

.navbar.scrolled .navbar-brand img {
    height: 55px;
}

.navbar-nav .nav-link {
    color: #222;
    font-weight: 500;
    margin: 0 10px;
    transition: .3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1F7A3A;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 10%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #F59E0B;
    transition: .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border-radius: 12px;
    padding: 10px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    transition: .3s;
}

.dropdown-item:hover {
    background: #1F7A3A;
    color: #fff;
}

.navbar-toggler i {
    font-size: 28px;
    color: #1F7A3A;
}

.btn-warning {
    background: #F59E0B;
    border-color: #F59E0B;
}

.btn-warning:hover {
    background: #e58b00;
    border-color: #e58b00;
}

@media (max-width:991px){

    .navbar{
        background:#fff;
        padding:15px 0;
        box-shadow:0 10px 25px rgba(0,0,0,.05);
    }

    .navbar-nav{
        padding:20px 0;
    }

    .navbar-nav .nav-link{
        margin:8px 0;
    }

    .d-flex.gap-2{
        flex-direction:column;
        width:100%;
    }

    .d-flex.gap-2 .btn{
        width:100%;
    }
}

/*==============================
            Footer
==============================*/

.footer{

    background:#173B28;

    color:#d8d8d8;

    padding:80px 0 0;

}

.footer-logo img{

    height:70px;

}

.footer p{

    line-height:1.8;

    color:#cfcfcf;

}

.footer h5{

    color:#fff;

    font-size:20px;

    margin-bottom:25px;

    font-weight:600;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:#d9d9d9;

    transition:.3s;

}

.footer-links a:hover{

    color:#F59E0B;

    padding-left:6px;

}



/*====================================
Hero Slider
=====================================*/

.hero-slider{
    position: relative;
    overflow: hidden;
}

.heroSwiper{
    width:100%; 
}

.heroSwiper .swiper-slide{
    overflow:hidden;
}

.heroSwiper .swiper-slide img{
    width:100%; 
    height:100%;
    object-fit:cover;
    display:block;
}

/* Navigation */

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:#2f7d32;
    transition:.3s;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover{
    background:#2f7d32;
    color:#fff;
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after{
    font-size:18px;
    font-weight:700;
}

/* Pagination */

.heroSwiper .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.7;
}

.heroSwiper .swiper-pagination-bullet-active{
    width:30px;
    border-radius:30px;
    background:#f59e0b;
    opacity:1;
}
 

@media(max-width:576px){

 

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev{
        display:none;
    }

}


.contact-info{

    list-style:none;

    padding:0;

    margin:0;

}

.contact-info li{

    margin-bottom:18px;

    display:flex;

    align-items:flex-start;

}

.contact-info i{

    color:#F59E0B;

    margin-right:12px;

    margin-top:4px;

}

.social-icons{

    display:flex;

    gap:12px;

}

.social-icons a{

    width:42px;

    height:42px;

    background:rgba(255,255,255,.08);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    transition:.3s;

}

.social-icons a:hover{

    background:#F59E0B;

    transform:translateY(-4px);

}

.newsletter .form-control{

    border:none;

    height:50px;

    border-radius:50px 0 0 50px;

}

.newsletter .btn{

    border-radius:0 50px 50px 0;

    padding:0 25px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding:22px 0;

    font-size:15px;

}

.footer-bottom a{

    color:#d9d9d9;

    margin-left:10px;

}

.footer-bottom a:hover{

    color:#F59E0B;

}

@media(max-width:991px){

    .footer{

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

    .contact-info li{

        justify-content:center;

    }

    .footer-bottom{

        text-align:center;

    }

    .footer-bottom .text-md-end{

        margin-top:10px;

        text-align:center!important;

    }

}


/*==============================
            Hero
==============================*/

.hero{

    background:linear-gradient(135deg,#f8fff6,#ffffff);

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#1F7A3A;

    opacity:.05;

    border-radius:50%;

    top:-150px;

    right:-120px;

}

.hero-tag{

    display:inline-block;

    padding:10px 25px;

    border-radius:50px;

    background:#e8f7ed;

    color:#1F7A3A;

    font-weight:600;

}

.hero-title{

    font-size:64px;

    font-weight:700;

    line-height:1.15;

    color:#173B28;

}

.hero-title span{

    color:#F59E0B;

}

.hero-text{

    font-size:18px;

    color:#666;

    line-height:1.9;

    max-width:550px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.stat-box{

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    text-align:center;

}

.stat-box h2{

    color:#1F7A3A;

    font-weight:700;

}

.stat-box p{

    margin:0;

}

.hero-image{

    position:relative;

}

.hero-image img{

    max-width:520px;

}

.floating-card{

    position:absolute;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    padding:14px 20px;

    border-radius:50px;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

    font-weight:600;

}

.floating-card i{

    color:#1F7A3A;

    margin-right:8px;

}

.card1{

    left:0;

    top:18%;

}

.card2{

    right:0;

    top:45%;

}

.card3{

    left:18%;

    bottom:10%;

}

@media(max-width:991px){

.hero{

    padding-top:120px;

    text-align:center;

}

.hero-title{

    font-size:42px;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.hero-image{

    margin-top:60px;

}

.hero-image img{

    max-width:100%;

}

.floating-card{

    position:relative;

    display:inline-block;

    margin:12px;

    left:auto;

    right:auto;

    top:auto;

    bottom:auto;

}

}


/*==========================
        About Section
===========================*/

.about-section{

    padding:100px 0;

    background:#fff;

}

.section-badge{

    display:inline-block;

    background:#eaf8ef;

    color:#1F7A3A;

    padding:8px 22px;

    border-radius:30px;

    font-weight:600;

    font-size:14px;

}

.section-title{

    font-size:46px;

    font-weight:700;

    color:#173B28;

    line-height:1.25;

}

.section-title span{

    color:#F59E0B;

}

.section-text{

    color:#666;

    line-height:1.9;

    font-size:17px;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.experience-box{

    position:absolute;

    right:-20px;

    bottom:40px;

    background:#1F7A3A;

    color:#fff;

    width:150px;

    height:150px;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}

.experience-box h2{

    font-size:42px;

    margin:0;

    font-weight:700;

}

.feature-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    border-radius:18px;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#eaf8ef;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#1F7A3A;

    font-size:24px;

    flex-shrink:0;

}

.feature-box h5{

    margin-bottom:8px;

    font-weight:600;

}

.feature-box p{

    margin:0;

    color:#666;

}

@media(max-width:991px){

    .section-title{

        font-size:34px;

    }

    .experience-box{

        right:15px;

        bottom:15px;

        width:120px;

        height:120px;

    }

}


/*==========================
    Products
===========================*/

.products-section{

    background:#f8fbf8;

    padding:100px 0;

}

.product-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-12px);

}

.product-image{
 

    display:flex;

    justify-content:center;

    align-items:center; 

    background:#fff;

}

.product-image img{

    width: 100%;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-content{

    padding:30px;

}

.product-category{

    display:inline-block;

    padding:6px 18px;

    background:#eaf8ef;

    color:#1F7A3A;

    border-radius:50px;

    font-size:13px;

    margin-bottom:15px;

    font-weight:600;

}

.product-content h4{

    font-weight:700;

    margin-bottom:15px;

}

.product-content p{

    color:#666;

    min-height:70px;

}

.product-content .btn{

    margin-top:10px;

}


/*==============================
        Why Choose
==============================*/

.why-choose{

    background:#fff;

    padding:100px 0;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

    border:1px solid #eef2ef;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.10);

}

.why-card .icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#eaf8ef;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:#1F7A3A;

    margin-bottom:25px;

}

.why-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}


/*==========================
 Business Opportunity
===========================*/

.business-section{

    padding:100px 0;

    background:#f8fbf8;

}

.business-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.business-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#1F7A3A;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    flex-shrink:0;

}

.business-item h5{

    font-weight:700;

}

.business-item p{

    margin:0;

    color:#666;

}

.journey-card{

    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.journey-step{

    text-align:center;

}

.step-number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#F59E0B;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:22px;

    margin-bottom:20px;

}

.journey-arrow{

    text-align:center;

    color:#1F7A3A;

    font-size:28px;

    margin:20px 0;

}


/*=================================
        Commitment
==================================*/

.commitment-section{

    padding:100px 0;

    background:#ffffff;

}

.commitment-card{

    background:#fff;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    transition:.35s;

    border:1px solid #edf2ee;

    height:100%;

}

.commitment-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.commitment-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#1F7A3A;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.commitment-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.commitment-card p{

    color:#666;

    line-height:1.8;

}


/*=================================
        Testimonials
==================================*/

.testimonial-section{

    padding:100px 0;

    background:#f8fbf8;

}

.testimonial-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

}

.quote{

    width:70px;

    height:70px;

    background:#1F7A3A;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

}

.testimonial-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:30px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonial-user img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-user h5{

    margin:0;

    font-weight:700;

}

.testimonial-user span{

    color:#888;

}

.swiper-pagination-bullet-active{

    background:#1F7A3A;

}


/*=================================
      Certification
==================================*/

.certification-section{

    padding:100px 0;

    background:#fff;

}

.certificate-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    border:1px solid #edf2ee;

    transition:.35s;

    height:100%;

}

.certificate-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.certificate-icon{

    width:80px;

    height:80px;

    background:#e9f8ee;

    border-radius:50%;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#1F7A3A;

    font-size:32px;

    margin-bottom:20px;

}

.certificate-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.certificate-card p{

    color:#666;

    line-height:1.8;

}







/*=========================
      Page Banner
==========================*/

.page-banner{

    padding:170px 0 100px;

    background:linear-gradient(135deg,#f7fff8,#ffffff);

    overflow:hidden;

}

.page-banner h1{

    font-size:60px;

    font-weight:700;

    color:#173B28;

    line-height:1.2;

}

.page-banner h1 span{

    color:#F59E0B;

}

.page-banner p { 
    font-size:18px; 
    color:#666; 
    line-height:1.9; 
    margin:30px 0; 
}

.page-banner img { 
    border-radius: 1.5rem;
}

.breadcrumb{

    background:none;

    padding:0;

}

.breadcrumb a{

    color:#1F7A3A;

    text-decoration:none;

}

.breadcrumb-item.active{

    color:#888;

}

.page-banner img{

    max-height:500px;

}

/*=========================
    Vision & Mission
==========================*/

.vision-section{

    padding:100px 0;

    background:#f8fbf8;

}

.vision-card,
.mission-card{

    background:#fff;

    border-radius:25px;

    padding:50px;

    height:100%;

    transition:.35s;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.vision-card::before,
.mission-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    top:-70px;

    right:-70px;

    opacity:.08;

    background:#1F7A3A;

}

.mission-card::before{

    background:#F59E0B;

}

.vision-card:hover,
.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.vision-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:#1F7A3A;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:30px;

}

.mission-card .vision-icon{

    background:#F59E0B;

}

.vision-card h3,
.mission-card h3{

    font-weight:700;

    margin-bottom:20px;

    color:#173B28;

}

.vision-card p,
.mission-card p{

    color:#666;

    line-height:1.9;

    margin:0;

}


/*==============================
        Core Values
===============================*/

.values-section{

    padding:100px 0;

    background:#ffffff;

}

.value-card{

    background:#fff;

    border:1px solid #edf2ee;

    border-radius:24px;

    padding:40px 35px;

    text-align:center;

    transition:.35s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.value-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:0;

    background:#1F7A3A;

    transition:.35s;

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.value-card:hover::before{

    height:100%;

}

.value-icon{

    width:85px;

    height:85px;

    margin:auto;

    border-radius:50%;

    background:#eaf8ef;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#1F7A3A;

    margin-bottom:25px;

    transition:.35s;

}

.value-card:hover .value-icon{

    background:#1F7A3A;

    color:#fff;

    transform:rotate(10deg) scale(1.08);

}

.value-card h4{

    font-weight:700;

    margin-bottom:15px;

    color:#173B28;

}

.value-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

/*==============================
        Journey Timeline
===============================*/

.journey-section{

    padding:100px 0;

    background:#f8fbf8;

}

.timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#1F7A3A;

    transform:translateX(-50%);

}

.timeline-item{

    position:relative;

    width:50%;

    padding:20px 50px;

}

.timeline-item.left{

    left:0;

    text-align:right;

}

.timeline-item.right{

    left:50%;

}

.timeline-content{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    position:relative;

}

.timeline-year{

    display:inline-block;

    background:#1F7A3A;

    color:#fff;

    padding:6px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.timeline-content h4{

    font-weight:700;

    margin-bottom:15px;

    color:#173B28;

}

.timeline-content p{

    color:#666;

    line-height:1.8;

}

.timeline-item::before{

    content:"";

    position:absolute;

    width:22px;

    height:22px;

    background:#F59E0B;

    border:5px solid #fff;

    border-radius:50%;

    top:45px;

    z-index:2;

    box-shadow:0 0 0 4px #1F7A3A;

}

.timeline-item.left::before{

    right:-11px;

}

.timeline-item.right::before{

    left:-11px;

}

/* Mobile */

@media(max-width:991px){

.timeline::before{

    left:25px;

}

.timeline-item{

    width:100%;

    left:0!important;

    padding-left:70px;

    padding-right:15px;

    text-align:left;

}

.timeline-item::before{

    left:14px!important;

}

}


/*=================================
        Quality Process
==================================*/

.quality-process{

    padding:100px 0;

    background:#ffffff;

}

.process-card{

    position:relative;

    padding:45px 30px;

    text-align:center;

    border-radius:24px;

    background:#fff;

    border:1px solid #edf2ee;

    transition:.35s;

    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.process-number{

    position:absolute;

    right:20px;

    top:20px;

    font-size:42px;

    font-weight:700;

    color:rgba(31,122,58,.08);

}

.process-card i{

    font-size:48px;

    color:#1F7A3A;

    margin-bottom:25px;

}

.process-card h4{

    font-weight:700;

    margin-bottom:15px;

    color:#173B28;

}

.process-card p{

    color:#666;

    line-height:1.8;

}


/*=================================
        CTA
==================================*/

.about-cta{

    padding:100px 0;

    background:#f8fbf8;

}

.cta-box{

    background:linear-gradient(135deg,#1F7A3A,#2d9b4f);

    color:#fff;

    padding:80px 60px;

    border-radius:30px;

    text-align:center;

}

.cta-box h2{

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-box p{

    max-width:700px;

    margin:auto;

    opacity:.9;

    font-size:18px;

    line-height:1.8;

}


.product-box{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    border:1px solid #edf2ee;

    height:100%;

}

.product-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.product-img{
 
    display:flex;

    justify-content:center;

    align-items:center; 
    background:#f8fbf8;
    overflow: hidden;

}

.product-img img{

    width: 100%;

    transition:.4s;

}

.product-box:hover img{

    transform:scale(1.08);

}

.product-body{

    padding:30px;

}

.product-body span{

    display:inline-block;

    background:#eaf8ef;

    color:#1F7A3A;

    padding:6px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}

.product-body h4{

    font-weight:700;

    margin-bottom:15px;

}

.product-body p{

    color:#666;

    margin-bottom:20px;

}

.product-body a{

    color:#1F7A3A;

    font-weight:600;

}


/*==================================
        CONTACT PAGE
===================================*/

.office-section,
.contact-info-section,
.business-hours,
.social-section{
    padding:100px 0;
}

/*==================================
        Office Cards
===================================*/

.office-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:40px;
    height:100%;
    overflow:hidden;
    border:1px solid #edf2ee;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    transition:.35s;
}

.office-card::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(31,122,58,.05);
}

.office-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.office-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:#1F7A3A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
}

.office-card h3{
    font-size:26px;
    font-weight:700;
    color:#173B28;
    margin-bottom:18px;
}

.office-card p{
    color:#666;
    line-height:1.9;
    margin:0;
}

/*==================================
        Contact Info
===================================*/

.contact-info-section{
    background:#f8fbf8;
}

.info-card{
    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:45px 25px;
    border:1px solid #edf2ee;
    transition:.35s;
    height:100%;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.info-card i{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#eaf8ef;
    color:#1F7A3A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:0 auto 25px;
}

.info-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#173B28;
}

.info-card p{
    color:#666;
    margin:0;
    word-break:break-word;
}

/*==================================
        Business Hours
===================================*/

.hours-box{
    background:linear-gradient(135deg,#1F7A3A,#2E8B57);
    color:#fff;
    border-radius:30px;
    padding:60px;
}

.hours-box h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.hours-box p{
    opacity:.9;
    line-height:1.8;
}

.hours-box table{
    color:#fff;
    margin:0;
}

.hours-box table td{
    padding:15px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.hours-box table tr:last-child td{
    border:none;
}

.hours-box table td:last-child{
    text-align:right;
    font-weight:600;
}

/*==================================
        Social Section
===================================*/

.social-section{
    background:#fff;
}

.social-section .social-icons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.social-section .social-icons a{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#f4f8f5;
    color:#1F7A3A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.35s;
    text-decoration:none;
}

.social-section .social-icons a:hover{
    background:#1F7A3A;
    color:#fff;
    transform:translateY(-8px);
}

/*==================================
        CTA
===================================*/

.contact-cta{
    padding:100px 0;
    background:#f8fbf8;
}

.contact-cta .cta-box{
    background:linear-gradient(135deg,#1F7A3A,#2E8B57);
    padding:70px 50px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

.contact-cta .cta-box h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.contact-cta .cta-box p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    opacity:.9;
}

/*==================================
        Responsive
===================================*/

@media(max-width:991px){

    .office-section,
    .contact-info-section,
    .business-hours,
    .social-section,
    .contact-cta{
        padding:70px 0;
    }

    .hours-box{
        padding:40px 25px;
        text-align:center;
    }

    .hours-box h2{
        font-size:32px;
    }

    .hours-box table td{
        display:block;
        text-align:center !important;
        padding:8px 0;
    }

    .contact-cta .cta-box{
        padding:50px 30px;
    }

    .contact-cta .cta-box h2{
        font-size:34px;
    }

}



/*==============================
        LEGAL PAGE
==============================*/

.legal-section{

    padding:100px 0;

}

.legal-card{

    display:block;

    background:#fff;

    border:1px solid #edf2ee;

    border-radius:24px;

    padding:40px;

    text-decoration:none;

    color:inherit;

    transition:.35s;

    height:100%;

}

.legal-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.legal-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:#eaf8ef;

    color:#1F7A3A;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.legal-card h4{

    font-weight:700;

    margin-bottom:15px;

    color:#173B28;

}

.legal-card p{

    color:#666;

    line-height:1.8;

}

.legal-card span{

    display:inline-block;

    margin-top:20px;

    color:#1F7A3A;

    font-weight:600;

}

.compliance-section{

    padding:100px 0;

    background:#f8fbf8;

}

.compliance-box{

    background:linear-gradient(135deg,#1F7A3A,#2e8b57);

    color:#fff;

    border-radius:30px;

    padding:60px;

}

.compliance-box h2{

    font-weight:700;

    margin-bottom:20px;

}

.compliance-box p{

    opacity:.9;

    line-height:1.9;

}

.compliance-list{

    list-style:none;

    padding:0;

    margin:0;

}

.compliance-list li{

    margin-bottom:15px;

    position:relative;

    padding-left:28px;

}

.compliance-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#FFD54F;

    font-weight:700;

}

.contact-legal{

    padding:100px 0;

}

@media(max-width:991px){

    .legal-section,
    .compliance-section,
    .contact-legal{

        padding:70px 0;

    }

    .compliance-box{

        padding:40px 25px;

    }

}


.legal-documents{

    padding:100px 0;

}

.document-table{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.document-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 30px;

    border-radius:20px;

    background:#fff;

    border:1px solid #edf2ee;

    transition:.3s;

}

.document-item:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.document-left{

    display:flex;

    align-items:center;

    gap:20px;

}

.pdf-icon{

    width:65px;

    height:65px;

    border-radius:16px;

    background:#ffebee;

    color:#d32f2f;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

.document-item h5{

    margin-bottom:5px;

    font-weight:600;

}

.document-item small{

    color:#888;

}

@media(max-width:768px){

.document-item{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;

}

.document-item .btn{

    width:100%;

}

}