   :root {
            --primary-color: #0c3813;
            --secondary-color: #7cb342;
            --brand-green:#489925;
            --accent-green: #8bc34a;
            --text-dark: #222222;
            --text-muted: #666666;
            --bg-light: #ffffff;
            --bg-accent: #f8faf7;
            --white: #ffffff;
            --max-width: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Top Header Contact Info Bar */
        .top-bar {
            color: var(--white);
            font-size: 0.8rem;
            padding: 13px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-info {
            display: flex;
            gap: 30px;
        }

        .top-info span i {
            color: var(--accent-green);
            margin-right: 6px;
        }

        .top-socials a {
            margin-left: 18px;
            opacity: 0.8;
            transition: 0.3s;
        }

        .top-socials a:hover {
            color: var(--accent-green);
        }

        /* Navbar Navigation Line */
        .header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }

        .navbar {
            margin: 0 auto;
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-box .logo-graphic {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 10px 15px;
            border-radius: 6px;
            font-weight: 800;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .nav-menu {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-item {
            font-weight: 600;
            font-size: 1rem;
            color: #000;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 0px 10px;
            transition: 0.2s;
            letter-spacing: 1px;
        }

        .nav-item.active, .nav-item:hover {
            color: var(--brand-green);
        }

        .search-trigger {
            cursor: pointer;
            font-size: 1rem;
            color: #333;
        }

        /* --- INTERACTIVE HERO SLIDER --- */
        .hero-slider-wrapper {
            position: relative;
            height:75vh;
            min-height: 750px;
            overflow: hidden;
            background-color: #000;
        }

        .slide-instance {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: center;
            z-index: 1;
            background-position: center;
        }

        .slide-instance.active {
            opacity: 1;
            z-index: 2;
        }

        .slide-instance::before {
            content: '';
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background:rgba(0,0,0,0.3);
            z-index: 2;
        }

        .hero-container {
            margin: 0 auto;
            width: 100%;
            color: var(--white);
            position: relative;
            z-index: 3;
            padding:0 50px;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.15;
            margin-bottom: 15px;
            max-width: 800px;
            font-weight: 800;
        }

        .hero-title span {
            color: #73a53c;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.7rem;
            font-weight: 500;
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.5;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
        }

       .btn {
            padding: 18px 32px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.9em;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: none;
            transition: 0.3s ease;
            line-height: normal;
        }

        .btn-green {
            background-color: var(--brand-green);
            color: var(--white);
        }

        .btn-green:hover {
            background-color: #4a8b2c;
        }

        .btn-trans {
            background-color: rgba(0,0,0,0.4);
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-trans:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }

        .slide-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            cursor: pointer;
            background: rgba(0,0,0,0.2);
            z-index: 10;
            transition: 0.3s;
        }

        .slide-btn:hover {
            background: var(--brand-green);
            border-color: var(--brand-green);
        }

        .slide-left { left: 40px; }
        .slide-right { right: 40px; }

        .slider-dots {
            position: absolute;
            bottom: 70px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 8px; height: 8px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%; cursor: pointer;
        }

        .dot.active {
            background: var(--brand-green);
            width: 24px; border-radius: 4px;
        }

        /* Floating Overlapping Structural Grid */
        .floating-segment {
            margin: -50px auto 0;
            position: relative;
            z-index: 50;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border-radius: 6px;
            overflow: hidden;
            background: var(--white);
        }

        .segment-card {
            padding: 35px 20px;
            text-align: center;
            border-right: 1px solid #eeeeee;
            transition: 0.3s;
        }

        .segment-card:last-child { border-right: none; }
        .segment-card:hover { background-color: #fcfdfc; }

        .segment-icon {
            font-size: 2.4rem;
            color: var(--brand-green);
        }

        .segment-card h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .segment-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* About Block Structural Layout */
        

        .tagline {
            color: var(--brand-green);
            text-transform: uppercase;
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            display: block;
        }

        .block-title {
            font-size: 2.5rem;
            line-height: 1.4;
            margin-bottom: 22px;
            color: #000;
            font-weight: 700;
        }

        .about-desc {
            color: #000;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .perks-row {
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
        }

        .perk-pill {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 0.85rem;
        }

       .perk-pill i {
            color: var(--brand-green);
            border: solid #99d580 3px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .layout-images {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 15px;
            position: relative;
        }

        .img-main {
            width: 100%; height: 420px;
            object-fit: cover; border-radius: 4px;
        }

        .stacked-images {
            display: flex; flex-direction: column; gap: 15px;
        }

        .stacked-images img {
            height: 202px; width: 100%;
            object-fit: cover; border-radius: 4px;
        }

        .exp-badge {
            position: absolute; bottom: -20px; left: 20px;
            background: var(--brand-green); color: var(--white);
            padding: 22px 25px; border-radius: 4px; text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .exp-badge h4 { font-size: 2.4rem; line-height: 1; }
        .exp-badge p { font-size: 0.75rem; text-transform: uppercase; }

        /* --- THE SERVICES BLOCK SECTION (WITH EXACT MATCH EMBEDDED WATERMARK) --- */
        .services-section {
            background-color: var(--bg-accent);
            background-image: url("../images/service-bg.png");
            background-repeat: no-repeat;
            background-position: left center;
            text-align: center;
            position: relative;
        }

        .slider-wrapper {
            margin: 0 auto;
            position: relative;
        }

        .deck-carousel-view {
            overflow: hidden;
        }

        .deck-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s ease-out;
        }

        .deck-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            flex: 0 0 calc(25% - 18px);
            max-width: calc(25% - 18px);
            text-align: left;
            border: 1px solid #eef2ed;
        }

        .deck-card img {
            width: 100%; height: 280px;
            object-fit: cover;
        }

        .deck-footer {
            padding: 22px 20px;
            display: flex; justify-content: space-between; align-items: center;
            font-weight: 700; font-size: 1rem; color: #000000;
        }

        .deck-arrow {
            width: 26px; height: 26px;
            border-radius: 50%;
            background: var(--brand-green); color: var(--white);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.65rem;
        }

        .nav-trigger {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            width: 44px; height: 44px;
            background: var(--white);
            border: 1px solid #ccd5cb;
            color: var(--brand-green);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 10;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: 0.2s;
        }

        .nav-trigger:hover {
            background: var(--brand-green); color: var(--white);
            border-color: var(--brand-green);
        }

        .trigger-left { left: 0px; }
        .trigger-right { right: 0px; }

        /* Why Choose Us Analytics Block */
 

        .why-hero-img {
            width: 100%; height: 480px;
            object-fit: cover; border-radius: 6px;
        }

        .stats-lattice {
            display: flex;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }

       .lattice-node {
            border: 1px solid #eef3ee;
            padding: 20px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 15px;
            background: #f8faf7;
        }

        .lattice-icon { font-size: 2rem; color: var(--brand-green); }
        .lattice-info h5 { font-size: 1.7rem; color:var(--brand-green); }
        .lattice-info p {
            font-size: 0.9rem;
            color: #000;
            line-height: 1.5;
            font-weight: 500;
        }
        /* Dynamic Portfolio Mesh Grid */
        .showcase-block {
            padding: 90px 0;
            text-align: center;
        }

        .showcase-mesh {
            max-width: var(--max-width);
            margin: 40px auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            padding: 0 20px;
        }

        .mesh-item img {
            width: 100%; height: 210px;
            object-fit: cover; border-radius: 6px;
        }

        /* Testimonials Overlay Banner */
        .feedback-banner {
            background: linear-gradient(rgba(6, 28, 10, 0.94), rgba(6, 28, 10, 0.94)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: var(--white);
            text-align: center;
        }

        .feedback-tray {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feedback-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 35px 25px; border-radius: 6px; text-align: left;
        }

        .stars-row { color: #ffb300; margin-bottom: 15px; font-size: 0.9rem; }
        .feedback-card p { font-size: 0.9rem; font-style: italic; line-height: 1.6; margin-bottom: 20px; }
        .feedback-author { font-weight: 700; font-size: 0.95rem; color: #b2ff59; }

        /* Footer Element */
        .footer-hub {
            background-color: #030e04; color: #92aba3;
            padding: 80px 0 20px; font-size: 0.85rem;
        }

        .footer-matrix {
            max-width: var(--max-width); margin: 0 auto;
            display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 50px; padding: 0 20px;
        }

        .matrix-head { color: var(--white); font-size: 1.1rem; margin-bottom: 25px; font-weight: 700; }
        .matrix-links { list-style: none; }
        .matrix-links li { margin-bottom: 12px; }
        .matrix-links a:hover { color: var(--white); text-decoration: underline; }

        .contact-node { display: flex; gap: 12px; margin-bottom: 18px; }
        .contact-node i { color: var(--accent-green); margin-top: 4px; }

        .newsletter-box { display: flex; margin-top: 15px; }
        .newsletter-box input { padding: 12px; border: none; border-radius: 4px 0 0 4px; width: 100%; outline: none; }
        .newsletter-box button { background: var(--brand-green); color: var(--white); border: none; padding: 0 20px; border-radius: 0 4px 4px 0; font-weight: 700; cursor: pointer; }
        
        .footer-base {
            max-width: var(--max-width); margin: 60px auto 0;
            padding: 20px 20px 0; border-top: 1px solid rgba(255,255,255,0.05);
            display: flex; justify-content: space-between;
        }

        /* Responsive Viewports queries */
        @media (max-width: 1024px) {
            .deck-card { flex: 0 0 calc(50% - 12px); max-width: calc(50% - 12px); }
            .floating-segment { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
            .about-block, .why-us-block { grid-template-columns: 1fr; gap: 40px; }
            .showcase-mesh { grid-template-columns: repeat(3, 1fr); }
            .feedback-tray { grid-template-columns: 1fr; }
            .footer-matrix { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .top-bar, .nav-menu { display: none; }
            .hero-title { font-size: 2.5rem; }
            .floating-segment { grid-template-columns: 1fr; }
            .deck-card, .showcase-mesh { flex: 0 0 100%; max-width: 100%; grid-template-columns: 1fr; }
            .slider-wrapper { padding: 0 20px; }
            .nav-trigger { display: none; }
            .footer-matrix { grid-template-columns: 1fr; }
            .footer-base { flex-direction: column; gap: 15px; text-align: center; }
        }


    
    /****************** Home Page CSS ************************/

    .container-fluid {
        width: 1800px;
        margin: 0 auto;
        max-width: 100%;
        padding: 0 30px;
    }
    .top-header {
        background: #061c0a;
    }





    /**********************/
/* Full screen search */
/**********************/

#search {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0;
    background: rgba(0, 0, 0, 0.975);
    opacity: 0;
    transition: all 0.5s;
    will-change: transform, opacity;
    z-index: -1;
}

#search:target {
    width: 100vw !important;
    height: 100vh !important;
    opacity: 1;
    z-index: 2;
}

#search:target .close-btn {
    display: block;
}

#searchbox {
    flex: 1 0 auto;
    max-width: 50%;
    height: 2rem;
    padding: 2rem 1rem;
    font-size: 2rem;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
}

.close-btn {
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 2rem;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
}
.floating-segment .segment-icon img {
    max-width: 90px;
    width: 100%;
}
.heading-section {
    margin-bottom: 50px;
}
.services-section .heading-section .block-title span{
    color:var(--brand-green);
}

.about_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding:0 15px;
}
.common_pdng{
    padding:80px 0;
}
.feature_wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}


/******************** Gallery Section ******************/

.gallery-section {
    background: #f7f7f7;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

.gallery a{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    aspect-ratio: 1.1;
}

/* Dark Overlay */
.gallery a::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    transition:.4s;
    z-index:1;
}

/* Search Icon */
.gallery-icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%) scale(.5);
    width:65px;
    height:65px;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    opacity:0;
    transition:.4s;
    z-index:2;
}

/* Hover Effects */
.gallery a:hover img{
    transform:scale(1.08);
}

.gallery a:hover::before{
    opacity:1;
}

.gallery a:hover .gallery-icon{
    opacity:1;
    transform:translate(-50%,-50%) scale(1);
}
.text-center {
    text-align: center;
}
.gallery-btn{
    margin-top: 30px;
}



i.ri-twitter-x-line {
    font-size: 15px;
}


/************* Footer Section CSS ************/

.footer {
    background: #eef5f1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
    gap: 30px;
    padding: 50px 0 35px 0;
}
.footer h3{
    font-size:22px;
    color:#0d5d25;
    margin-bottom:25px;
    font-weight:700;
}

.footer-contact,
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}
.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: #000;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}
.footer-col p {
    font-weight: 500;
    font-size: 16px;
}
.footer-contact i {
    color: #0d8c3b;
    width: 20px;
    margin-top: 4px;
}

.footer-links li{
    margin-bottom:5px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    transition: .3s;
    font-size: 15px;
    font-weight: 500;
}
.footer-links a:hover {
    color: #0d8c3b;
    padding-left: 5px;
}
.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:40px;
    height:40px;
    border:1px solid #d6e5d4;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#0d8c3b;
    margin-right:10px;
    transition:.3s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#0d8c3b;
    color:#fff;
}

.newsletter p{
    color:#555;
    margin-bottom:18px;
}

.newsletter input{
    width:100%;
    height:52px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 15px;
    margin-bottom:15px;
    font-size:15px;
}

.newsletter button{
    width:100%;
    height:52px;
    background:#0d8c3b;
    border:none;
    color:#fff;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.newsletter button:hover{
    background:#0a6d2d;
}

.footer-logo{
    text-align:center;
}

.footer-logo img{
    max-width:100%;
    margin-bottom:20px;
}

.footer-logo p {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
.footer .footer-grid form.newsletter {
    margin-top: 30px;
}
.footer-bottom {
    padding: 12px 0;
    border-top: 1px solid #e4e4e4;
    background: #e1f5e0;
}

.footer-bottom p {
    margin: 0;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
    margin-left: 30px;
    transition: .3s;
    font-weight: 500;
}

.footer-bottom a:hover{
    color:#0d8c3b;
}
.copyright-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
@media(max-width:991px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-logo{
    grid-column:span 2;
}

}

@media(max-width:767px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-logo{
    grid-column:span 1;
}

.footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
}

.footer-bottom a{
    margin:0 10px;
}

}
