:root {

    /* ===== PRIMARY COLORS (FROM LOGO) ===== */
    --primary-green: #0c6b3f;
    --secondary-green: #4caf50;
    --dark-green: #064d2b;

    /* ===== ACCENT COLORS ===== */
    --blue: #3f51b5;
    --light-blue: #5c6bc0;
    --yellow: #ffc107;
    --red: #f44336;

    /* ===== BACKGROUND ===== */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #0b2e1f;

    /* ===== TEXT COLORS ===== */
    --text-dark: #222;
    --text-light: #777;
    --text-white: #fff;

    /* ===== FONT ===== */
    --font-primary: 'Poppins', sans-serif;

    /* ===== SPACING ===== */
    --section-padding: 80px;
    --container-width: 1200px;

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 20px;

    /* ===== SHADOW ===== */
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);

    /* ===== TRANSITION ===== */
    --transition: all 0.3s ease;

}

.btn-main {
    background: var(--primary-green);
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-main:hover {
    background: var(--dark-green);
}

.btn-outline-main {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline-main:hover {
    background: var(--primary-green);
    color: var(--text-white);
}






/* ================= TOP HEADER ================= */
.top-header {
    background: var(--primary-green);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

/* ================= NAVBAR ================= */
.main-navbar {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* LOGO TEXT */
.brand-text {
    font-weight: 600;
    color: var(--primary-green);
}

/* NAV LINKS */
.nav-link {
    position: relative;
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
}

/* UNDERLINE EFFECT */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary-green);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ACTIVE COLOR */
.nav-link.active {
    color: var(--primary-green) !important;
}

/* BUTTON */
.btn-main {
    background: var(--primary-green);
    color: #fff;
    border-radius: 6px;
    padding: 8px 18px;
}

.btn-main:hover {
    background: var(--dark-green);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: var(--shadow-light);
    }

    .nav-link {
        padding: 10px 0;
    }
}


/* ================= HERO ================= */
#hero {
    position: relative;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6));
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

/* TEXT STYLE */
.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-top: 10px;
}

.tagline {
    color: #00ffcc;
    font-weight: 600;
}

/* BUTTON */
.btn-main {
    background: var(--primary-green);
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 80px 0;
    background: #f9fdfb;
}

/* IMAGE */
.about-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.about-img:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.about-content h6 {
    color: #0c6b3f;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.about-content p {
    color: #020202 !important; 
    line-height: 1.7;
}

/* FEATURES */
.about-features {
    margin-top: 20px;
     color: #020202 !important; 
}

.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-box i {
    color: #0c6b3f;
    margin-right: 10px;
    font-size: 18px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    background: #0c6b3f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #064d2b;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .about-section {
        padding: 50px 15px;
        text-align: left;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-img {
        margin-bottom: 20px;
    }

    .feature-box {
        justify-content: center;
    }

    /* FEATURES */
    .about-features {
        margin-top: 20px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

    }

}


/* ================= MARQUEE ================= */
.marquee {
    width: 100%;
    overflow: hidden;
    background: #0c6b3f;
    padding: 12px 0;
    position: relative;
}

/* TRACK */
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 18s linear infinite;
}

/* TEXT */
.marquee-track span {
    white-space: nowrap;
    font-size: 18px;
    font-weight: 600;
    color: #fff;

    /* IMPORTANT: no margin gap */
    padding-right: 0;
}

/* ANIMATION */
@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}


/* ================= SERVICES ================= */
.services-section {
    padding: 80px 0;
    background: #f8fbf9;
}

/* TITLE */
.services-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c6b3f;
}

.services-title p {
    color: #666;
    margin-bottom: 40px;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s;
}

/* CONTENT */
.service-content {
    padding: 20px;
    text-align: center;
}

.service-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover img {
    transform: scale(1.08);
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .service-card img {
        height: 200px;
    }

}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .services-section {
        padding: 50px 30px;
    }

    .services-title h2 {
        font-size: 24px;
    }

    .service-card img {
        height: 180px;
    }

    .service-content h5 {
        font-size: 15px;
    }

}

/* ================= WHY SECTION ================= */
.why-section {
    padding: 80px 0;
    background: #ffffff;
}

/* LEFT */
.why-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c6b3f;
}

.why-content p {
    color: #666;
    margin: 15px 0 25px;
    line-height: 1.7;
}

/* LIST */
.why-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.why-item i {
    color: #0c6b3f;
    margin-right: 10px;
}

/* RIGHT GRID */
.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* CARD */
.why-card {
    background: #f8fbf9;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

/* ICON */
.why-card i {
    font-size: 35px;
    color: #0c6b3f;
    margin-bottom: 10px;
}

/* HOVER */
.why-card:hover {
    background: #0c6b3f;
    color: #fff;
    transform: translateY(-8px);
}

.why-card:hover i {
    color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .why-section {
        padding: 50px 15px;
        text-align: left;
    }

    .why-content h2 {
        font-size: 24px;
    }

    .why-cards {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

}

/* ================= PARALLAX ================= */
.parallax-section {
    position: relative;
    height: 400px;

    background: url('./img/bg.jpg') center/cover no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.parallax-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* CONTENT */
.parallax-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* TITLE */
.parallax-content h2 {
    font-size: 36px;
    font-weight: 700;
}

/* TEXT */
.parallax-content p {
    margin: 15px 0 20px;
    font-size: 16px;
}

/* BUTTON */
.parallax-btn {
    background: #0c6b3f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.parallax-btn:hover {
    background: #064d2b;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .parallax-section {
        height: auto;
        padding: 60px 15px;

 
    }

    .parallax-content h2 {
        font-size: 24px;
    }

}


/* ================= GALLERY ================= */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

/* TITLE */
.gallery-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c6b3f;
}

.gallery-title p {
    color: #666;
    margin-bottom: 40px;
}

/* ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* OVERLAY ICON */
.gallery-item::after {
    content: "\f52a"; /* bootstrap icon */
    font-family: "bootstrap-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 30px;
    color: #fff;
    transition: 0.3s;
}

.gallery-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(12,107,63,0.6);
    opacity: 0;
    transition: 0.3s;
}

/* HOVER SHOW */
.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .gallery-section {
        padding: 50px 15px;
    }

    .gallery-title h2 {
        font-size: 24px;
    }

    .gallery-item img {
        height: 160px;
    }

}/* ================= TESTIMONIAL ================= */
.testi-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbf9, #ffffff);
}

/* HEADER */
.testi-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0c6b3f;
}

.testi-header p {
    color: #666;
    margin-bottom: 10px;
}

/* GOOGLE RATING */
.testi-rating {
    margin-top: 10px;
    font-weight: 600;
    color: #444;
}

.testi-rating i {
    color: #ea4335;
}

/* CARD */
.testi-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.4s;
}

/* HOVER EFFECT */
.testi-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* TOP */
.testi-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* AVATAR */
.testi-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #0c6b3f, #4caf50);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
}

/* STARS */
.stars {
    color: #ffc107;
}

/* TEXT */
.testi-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* BUTTON */
.testi-btn {
    padding: 12px 28px;
    border-radius: 6px;
    border: 2px solid #0c6b3f;
    color: #0c6b3f;
    text-decoration: none;
    font-weight: 600;
}

.testi-btn:hover {
    background: #0c6b3f;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .testi-header h2 {
        font-size: 24px;
    }
}

/* ================= FIX SAME HEIGHT ================= */

/* Make swiper wrapper stretch */
.testi-slider .swiper-wrapper {
    align-items: stretch;
}

/* Make slide full height */
.testi-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* Make card fill full height */
.testi-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ================= FAQ ULTRA ================= */
.faq-ultra {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbf9, #ffffff);
}

/* HEADER */
.faq-head h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c6b3f;
}

.faq-head p {
    color: #666;
    margin-bottom: 40px;
}

/* BOX */
.faq-box {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

/* HOVER EFFECT */
.faq-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* QUESTION */
.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* ICON */
.faq-q i {
    font-size: 18px;
    color: #0c6b3f;
    transition: 0.4s;
}

/* ANSWER (ANIMATION MAGIC) */
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-a p {
    color: #555;
    line-height: 1.7;
}

/* ACTIVE STATE */
.faq-box.active {
    border-left: 4px solid #0c6b3f;
}

.faq-box.active .faq-a {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-box.active i {
    transform: rotate(45deg);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .faq-head h2 {
        font-size: 24px;
    }

    .faq-q {
        font-size: 14px;
        padding: 15px;
    }

}


/* ================= CONTACT ================= */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f8fbf9, #ffffff);
}

/* HEADER */
.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c6b3f;
}

.contact-header p {
    color: #666;
    margin-bottom: 40px;
}

/* LEFT BOX */
.contact-info {
    background: #0c6b3f;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
}

.contact-info h4 {
    margin-bottom: 15px;
}

.info-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.info-box i {
    margin-right: 10px;
}

/* GOOGLE BTN */
.google-profile-btn {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #0c6b3f;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.contact-form button {
    width: 100%;
    background: #25D366;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .contact-section {
        padding: 50px 15px;
    }

    .contact-header h2 {
        font-size: 24px;
    }

}

/* ================= FOOTER ================= */
.footer-section {
    background: #0c6b3f;
    color: #fff;
    
    padding: 60px 0 0;
}

/* BOX */
.footer-box {
    margin-bottom: 30px;
}

/* LOGO */
.footer-logo {
    height: 110px;
    margin-bottom: 15px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
}

/* TEXT */
.footer-box p {
    font-size: 14px;
    color: #ddd;
}

/* TITLE */
.footer-box h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* LINKS */
.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* CONTACT ICON */
.footer-box i {
    margin-right: 8px;
}

/* BOTTOM */
.footer-bottom {
    background: #064d2b;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .footer-section {
        text-align: center;
    }

}

/* ================= WHATSAPP FLOAT ================= */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 58px;
    height: 58px;

    background: #25D366;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 26px;

    text-decoration: none;
    z-index: 999;

    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* HOVER */
.wa-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    background: #1ebe5d;
}

/* OPTIONAL RING (SUBTLE) */
.wa-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wa-ring 2.5s infinite;
    opacity: 0.4;
}

@keyframes wa-ring {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* MOBILE SAFE */
@media (max-width: 768px) {
    .wa-float {
        bottom: 15px;
        right: 15px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}

/* ================= SCROLL TOP ================= */
.scroll-top {
    position: fixed;
    bottom: 90px; /* above WhatsApp */
    right: 20px;

    width: 50px;
    height: 50px;

    background: #0c6b3f;
    color: #fff;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
    z-index: 999;

    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* SHOW BUTTON */
.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

/* HOVER */
.scroll-top:hover {
    transform: translateY(-4px);
    background: #064d2b;
}

/* MOBILE */
@media (max-width: 768px) {
    .scroll-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}


/* ================= ABOUT HEADER ================= */
.about-header {
    position: relative;
    height: 350px;

    background: url('./img/bg1.jpg') center/cover no-repeat;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.about-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    );
}

/* CONTENT */
.about-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* TITLE */
.about-content h1 {
    font-size: 42px;
    font-weight: 700;
}

/* TEXT */
.about-content p {
    margin-top: 10px;
    font-size: 16px;
    color: #ddd;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .about-header {
        height: auto;
        padding: 80px 15px;

    }

    .about-content h1 {
        font-size: 26px;
    }

}

/* ================= ABOUT DETAILS ================= */
.about-details {
    padding: 80px 0;
    background: #ffffff;
}

/* IMAGE */
.about-img {
    overflow: hidden;
    border-radius: 15px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.about-img:hover img {
    transform: scale(1.08);
}

/* TEXT */
.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c6b3f;
}

.about-text p {
    margin: 15px 0;
    color: #666;
    line-height: 1.7;
}

/* POINTS */
.about-points {
    margin-top: 20px;
}

.point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.point i {
    color: #0c6b3f;
    margin-right: 10px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    background: #0c6b3f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: #064d2b;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .about-details {
        padding: 50px 15px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .point {
        justify-content: center;
    }

}

/* ================= MISSION VISION ================= */
.mv-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f8fbf9, #ffffff);
}

/* HEADER */
.mv-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c6b3f;
}

.mv-header p {
    color: #666;
    margin-bottom: 40px;
}

/* CARD */
.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ICON */
.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #0c6b3f, #4caf50);
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* TITLE */
.mv-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* TEXT */
.mv-card p {
    color: #555;
    line-height: 1.7;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .mv-section {
        padding: 50px 15px;
    }

    .mv-header h2 {
        font-size: 24px;
    }

}



.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-link:hover {
    text-decoration: none;
}

/* ================= SERVICE DETAILS ================= */
.service-details {
    padding: 80px 0;
    background: #ffffff;
}

/* IMAGE */
.service-img {
    overflow: hidden;
    border-radius: 15px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-img:hover img {
    transform: scale(1.08);
}

/* TEXT */
.service-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c6b3f;
}

.service-text p {
    margin: 15px 0;
    color: #666;
    line-height: 1.7;
}

/* BUTTON */
.service-btn {
    display: inline-block;
    margin-top: 20px;
    background: #0c6b3f;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
}

.service-btn:hover {
    background: #064d2b;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .service-details {
        padding: 50px 15px;
        text-align: center;
    }

    .service-text h2 {
        font-size: 24px;
    }

}

.service-benefits {
    padding: 60px 0;
    background: #f8fbf9;
}

.benefit-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-box i {
    color: #0c6b3f;
    font-size: 24px;
    margin-bottom: 10px;
}   


.hd p{
    color: #fff !important;
}

/* ================= CONDITIONS ================= */
.service-benefits {
    padding: 70px 0;
    background: linear-gradient(to right, #f8fbf9, #ffffff);
}

/* TITLE */
.service-benefits h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0c6b3f;
}

/* CARD */
.benefit-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;

    height: 100%;
    position: relative;
    overflow: hidden;
}

/* TEXT */
.benefit-box p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* HOVER EFFECT */
.benefit-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* HOVER COLOR */
.benefit-box:hover p {
    color: #0c6b3f;
}

/* TOP BORDER ANIMATION */
.benefit-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 0%;
    height: 4px;
    background: #0c6b3f;

    transition: 0.4s;
}

.benefit-box:hover::before {
    width: 100%;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .service-benefits {
        padding: 50px 15px;
    }

    .service-benefits h3 {
        font-size: 22px;
    }

    .benefit-box {
        padding: 18px;
    }

    .benefit-box p {
        font-size: 14px;
    }

}