/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* SLIDE */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1.2s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* OVERLAY */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* CONTENT */
.slide-content {
    position: relative;
    max-width: 800px;
    color: #fff;
    padding-top: 160px;

       /* 🔥 CENTER FIX */
   margin: 0 auto;
    text-align: center;
}

.slide-content h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content p {
      font-size: 18px;              /* 🔥 thora readable */
    max-width: 680px;             /* 🔥 lines controlled */
    margin: 0 auto 35px auto;     /* 🔥 proper centering */
    line-height: 1.7;             /* 🔥 better spacing */
    color: rgba(255,255,255,0.9);
    
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
      justify-content: center;
}

.btn {
    padding: 14px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
}

.btn-green {
    background: #7dbb1e;
    color: #fff;
}

.btn-green:hover {
    background: #6aa916;
}

.btn-white {
    background: #fff;
    color: #222;
}

.btn-white:hover {
    background: #f2f2f2;
}

/* ARROWS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background .3s ease;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.15);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* RESPONSIVE */
@media(max-width: 991px){
    .hero-slider { height: 80vh; }
    .slide-content { padding-top: 120px; }
    .slide-content h1 { font-size: 38px; }
}

@media(max-width: 576px){
    .hero-slider { height: 75vh; }
      .slide-content {
        padding-top: 110px;
    }
      .slider-arrow {
    display: none;
  }
    .slide-content h1 { font-size: 28px; }
    .hero-buttons { flex-direction: column; }
}









/* FEATURE SERVICES */
.feature-services {
    padding: 50px 0;
    background: #fff;
}

.feature-box {
    border: 1px solid #8cc63f;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    transition: all .35s ease;
    height: 100%;
}

.feature-icon img {
    width: 48px;
    height: auto;
}

.feature-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

/* HOVER EFFECT (IMPORTANT) */
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-color: #7dbb1e;
}

.feature-box:hover h4 {
    color: #7dbb1e;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .feature-services {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
}










/* ABOUT SECTION */
.about-green-village {
    padding: 90px 0;
    background: #fff;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    line-height: 1.25;
}

.text-green {
    color: #7dbb1e;
}

.green-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #7dbb1e;
    margin: 18px 0 25px;
}

.about-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
}

.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* BUTTON */
.btn-green {
    display: inline-block;
    background: #7dbb1e;
    color: #fff;
    padding: 14px 28px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: background .3s ease;
}

.btn-green:hover {
    background: #6aa916;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-green-village {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .about-content h2 {
        font-size: 28px;
    }
}

.about-video {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}











/* SECTION */
.services-section {
    padding: 10px 0;
    background: #fff;

    margin-bottom: 50px;
}

/* TITLE */
.services-title h2 {
    font-size: 36px;
    font-weight: 800;
}
.services-title span {
    color: #7dbb1e;
}
.title-line {
    width: 60px;
    height: 3px;
    background: #7dbb1e;
    display: block;
    margin: 12px auto 45px;
}

/* SLIDER */
.services-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.services-slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* CARD OUTER */
.service-card {
    flex: 0 0 25%;
    padding: 0 15px;          /* ✅ SPACE BETWEEN CARDS */
    box-sizing: border-box;
}

/* CARD INNER */
.service-card-inner {
    border: 1px solid #8cc63f;
    background: #fff;
    height: 100%;
    transition: all .35s ease;
}

/* IMAGE */
.service-card-inner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.service-content {
    padding: 25px;
    text-align: center;
}

.service-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.service-content a {
    font-weight: 600;
    text-decoration: none;
    color: #222;
}

.service-content a:hover {
    color: #7dbb1e;
}

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

/* RESPONSIVE */
@media (max-width: 1199px) {
    .service-card { flex: 0 0 33.3333%; }
}
@media (max-width: 991px) {
    .service-card { flex: 0 0 50%; }
}
@media (max-width: 575px) {
    .service-card { flex: 0 0 100%; }
}











/* SECTION */
.counter-section {
    position: relative;
    padding: 50px 0;
    background: url('../images/counter-bg.jpg') center center / cover no-repeat fixed;
    color: #fff;
}

/* DARK OVERLAY */
.counter-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}

/* CONTENT */
.counter-section .container {
    position: relative;
    z-index: 2;
}

/* GRID */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

/* BOX */
.counter-box i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #7dbb1e;
}

.counter-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #eee;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 60px;
    }
}

@media (max-width: 575px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }
}






/* CTA SECTION */
.cta-section {
    background: #7dbb1e;
    padding: 50px 0;
    color: #fff;
}

/* WRAPPER */
.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* TEXT */
.cta-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 720px;
}

/* BUTTON */
.cta-btn a {
    background: #fff;
    color: #222;
    padding: 16px 36px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
}

.cta-btn a:hover {
    background: #222;
    color: #fff;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 991px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .cta-text h2 {
        font-size: 26px;
    }

    .cta-btn a {
        width: 100%;
        text-align: center;
    }
}









/* SECTION */
.why-choose-section {
    padding: 50px 0;
    background: #fff;
}

/* WRAPPER */
.why-choose-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */
.why-left {
    flex: 1;
}

/* TITLE */
.section-title h2 {
    font-size: 36px;
    font-weight: 800;
}

.section-title h2 span {
    color: #7dbb1e;
}

.title-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #7dbb1e;
    margin: 12px 0 20px;
}

.section-title p {
    max-width: 520px;
    color: #666;
    margin-bottom: 35px;
}

/* FEATURES GRID */
.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* BOX */
.why-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border: 1px solid #eee;
    transition: .35s ease;
}

.why-box i {
    font-size: 28px;
    color: #7dbb1e;
    margin-top: 5px;
}

.why-box h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.why-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* HOVER */
.why-box:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    transform: translateY(-5px);
}

/* RIGHT IMAGE */
.why-right {
    flex: 1;
    text-align: center;
}

.why-right img {
    max-width: 100%;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 991px) {
    .why-choose-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .section-title p {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
    }
}








   /* ===== HOME BLOG SLIDER FIX ===== */

    .home-blog-slider {
        padding: 50px 0;
        background: #fff;
    }

    .section-title h2 {
        font-size: 36px;
        font-weight: 800;
    }

    .section-title span {
        color: #7fbf2a;
    }

    .title-line {
        width: 60px;
        height: 3px;
        background: #7fbf2a;
        display: block;
        margin: 10px auto 40px;
    }

    /* CARD */
    .blog-card {
        background: #fff;
        border: 1px solid #e6e6e6;
        height: 100%;
        transition: 0.3s;
    }

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    /* IMAGE FIX */
    .blog-image {
        width: 100%;
        height: 220px;
        /* 🔥 KEY FIX */
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* 🔥 NO STRETCH */
    }

    /* CONTENT */
    .blog-content {
        padding: 20px;
    }

    .blog-meta {
        font-size: 14px;
        color: #7fbf2a;
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }

    .blog-content h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .blog-content h3 a {
        color: #222;
        text-decoration: none;
    }

    .blog-content h3 a:hover {
        color: #7fbf2a;
    }

    .blog-content p {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
    }

    /* SWIPER FIX */
    .swiper {
        padding-bottom: 10px;
    }

    .swiper-slide {
        height: auto !important;
    }







    .about-expert-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-expert-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-tagline {
    display: inline-block;
    font-weight: 700;
    color: #1cab3e;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.about-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-title span {
    color: #1cab3e;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f2f9f0;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    color: #333;
}

.highlight-item i {
    color: #1cab3e;
    font-size: 18px;
}

.about-expert-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-expert-grid {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 32px;
    }
}






/* FOUNDER SECTION */
.founder-section {
    padding: 80px 0;
    background: #f8fbf6;
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.founder-tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7dbb1e;
    margin-bottom: 10px;
}

.founder-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.founder-title span {
    color: #7dbb1e;
}

.founder-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}



.founder-image {
    width: 100%;
    height: 520px;          /* increase height */
    overflow: hidden;
    border-radius: 18px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* 🔥 IMPORTANT */
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}



/* RESPONSIVE */
@media (max-width: 991px) {
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .founder-title {
        font-size: 26px;
    }
}
