        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a7d3b;
            --secondary-color: #c8e6c9;
            --accent-color: #ff9800;
            --dark-color: #1a3a2a;
            --light-color: #f5f5f5;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* header */
        header {
            position: unset;
            left: 0;
            right: 0;
            top: 0;
            z-index: 99;
        }

        header #myHeader {
            padding: 10px 0;
        }

        header .header-top {
            background-color: #009136;
            padding: 3px 0px;
        }

        header .header-top .top-info li,
        header .header-top .top-info li a {
            color: #fff;
            font-size: 14px;
        }

        header .header-top .top-info li:last-child a {
            display: inline-block;
            height: 35px;
            width: 35px;
            border-radius: 50px;
            line-height: 35px;
            text-align: center;
            background-color: #fff;
            color: #000;
            border: 1px solid #009136;
            transition: .5s;
        }

        header .headermn .navbar .navbar-brand {
            width: 5%;
        }

        header .nav-link {
            color: #000;
            font-size: 13px;
            font-weight: 500;
            transition: .5s;
            position: relative;
            padding: 0px 0px !important;
            text-transform: uppercase;
        }

        header .nav-link::after {
            content: '';
            background-color: #009136;
            width: 0%;
            height: 2px;
            position: absolute;
            bottom: -5px;
            left: 0;
            transition: .5s;
        }

        header .nav-link:hover::after {
            width: 100%;
        }

        header .nav-link:hover,
        header .nav-link:focus {
            color: #009136;
        }

        header .navbar-nav {
            gap: 45px;
        }

        header .navbar-toggler {
            border: none;
            color: #009136;
            font-size: 28px;
            border-radius: 0;
        }

        header .navbar-toggler:focus {
            box-shadow: none;
        }

        header .offcanvas-title img {
            width: 34%;
        }

        header .navbar-nav {
            position: relative;
            align-items: center;
        }

        .sticky {
            left: 0;
            right: 0;
            z-index: 999;
            position: fixed !important;
            top: 0px;
            animation: slideDown .5s ease-out;
            background-color: #fff;
            box-shadow: 0 0 10px #00000021;
        }

        .sticky .headermn .navbar .navbar-brand {
            width: 5%;
        }

        header .dropdown-menu {
            border-radius: 0;
            border: 0;
            padding: 15px 0;
            box-shadow: 0 0 5px #0000002f;
        }

        header .dropdown-menu li .dropdown-item {
            padding: 6px 20px;
            font-size: 18px;
            font-weight: 500;
            font-family: initial;
        }

        header .dropdown-menu li .dropdown-item:hover {
            background-color: #009136;
            color: #fff;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(10);
            }
        }

        header .navbar .whatsapp li a {
            display: inline-block;
            padding: 10px 20px;
            background-color: transparent;
            color: #009136;
            border-radius: 3px;
            transition: .5s;
            border: 1px solid #009136;
            position: relative;
            transition: .5s;
            z-index: 1;
        }

        header .navbar .whatsapp li a::before {
            position: absolute;
            content: '';
            top: 0px;
            left: 0px;
            width: 0px;
            height: 100%;
            transition: .5s;
            background-color: #009136;
            z-index: -1;
        }

        header .navbar .whatsapp li a:hover:before {
            width: 100%;
        }

        header .navbar .whatsapp li a:hover {
            color: #ffffff;
        }





        /* Stats Section */
       .stats-section{
    background:linear-gradient(rgba(33,73,33,.92),
    rgba(33,73,33,.92)),
    url('images/garden-bg.jpg');
    background-size:cover;
    background-position:center;
    padding:80px 0;
}

.stats-section .container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.stat-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:20px;
    padding:35px 20px;
    text-align:center;
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.12);
}

.icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    color:#3d6b36;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:20px;
}

.stat-card h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-card span{
    color:#e8e8e8;
    font-size:17px;
    text-transform:uppercase;
    letter-spacing:1px;
    display:block;
}

@media(max-width:991px){
    .stats-section .container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .stats-section .container{
        grid-template-columns:1fr;
    }
}

        /* About Section */
        .about {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .about-text p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            gap: 1rem;
            align-items: start;
            animation: slideInLeft 0.8s ease-out;
        }

        .feature-icon {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-top: 0.3rem;
            flex-shrink: 0;
        }

        .feature-text {
            flex: 1;
        }

        .feature-text strong {
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.3rem;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeInRight 0.8s ease-out;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Services Section */
        .services {
            background: var(--light-color);
            padding: 80px 20px;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeInUp 0.8s ease-out;
            border-top: 4px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-top-color: var(--accent-color);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: var(--accent-color);
            transform: scale(1.2) rotate(5deg);
        }

        .service-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.7;
        }

        /* Projects Section */
      .projects-section{
    padding:90px 0;
    background:#f8faf7;
}

.section-title span{
    color:#4d7c3f;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-top:10px;
    color:#222;
}

.section-title p{
    max-width:650px;
    margin:15px auto 0;
    color:#666;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:350px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.project-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:25px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
}

.project-overlay h4{
    color:#fff;
    font-size:22px;
    margin:0;
    font-weight:600;
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-card:hover{
    transform:translateY(-5px);
    transition:.4s;
}






.gallery-section{
    padding:100px 0;
    background:#f8faf7;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#4b7d3c;
    font-size:40px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:300px;
    display:block;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s;
}

.gallery-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(47,93,37,0.65);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:0.4s;
}

.gallery-overlay i{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    color:#4b7d3c;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:scale(0);
    transition:0.4s;
}

.gallery-item:hover img{
    transform:scale(1.15);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
}

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-item{
        height:260px;
    }

    .section-title h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item{
        height:250px;
    }

    .section-title h2{
        font-size:28px;
    }
}




        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            color: white;
            padding: 80px 20px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
            animation: slideInLeft 0.8s ease-out;
        }

        .contact-icon {
            font-size: 2rem;
            color: var(--accent-color);
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .contact-text h4 {
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .contact-text p {
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            animation: slideInRight 0.8s ease-out;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.8rem;
            border: none;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.3);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            background: var(--accent-color);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: #e68900;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 2rem;
            }
        }







        /* FOOTER */
        footer {
            background: #000;
            padding: 4rem 5rem 2rem
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
            margin-bottom: 2rem
        }

        .footer-logo {
            font-weight: 800;
            font-size: 1.5rem;
            color: #fff;
            display: block;
            margin-bottom: .9rem;
            letter-spacing: -.5px
        }

        .footer-logo span {
            color: var(--orange)
        }

        .footer-tagline {
            font-size: .83rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.8;
            max-width: 255px;
            margin-bottom: 1.5rem
        }

        .social-row {
            display: flex;
            gap: .5rem
        }

        .social-btn {
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, .08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .45);
            font-size: .82rem;
            text-decoration: none;
            transition: background .2s, color .2s
        }

        .social-btn:hover {
            background: var(--orange);
            color: #fff
        }

        .footer-col-title {
            font-size: .72rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .88);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 1.1rem
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: .65rem;
            padding: 0;
        }

        .footer-links a {
            text-decoration: none;
            font-size: .83rem;
            color: rgba(255, 255, 255, .42);
            transition: color .2s
        }

        .footer-links a:hover {
            color: var(--orange)
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .footer-copy {
            font-size: .76rem;
            color: rgba(255, 255, 255, .28)
        }

        .footer-toll {
            font-size: .83rem;
            font-weight: 600;
            color: var(--orange);
            display: flex;
            align-items: center;
            gap: .4rem
        }


        @media(max-width:960px){
  footer{padding:3rem 1.5rem 1.5rem}
  .footer-top{grid-template-columns:1fr;gap:2rem}
  .form-row{grid-template-columns:1fr}
  .hero-stats{gap:1.5rem}
  .feature-item{display: inline-block;}
}





        /* Modal Box */
        .modal-content {
            border-radius: 16px;
            border: none;
            padding: 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        /* Header */
        .modal-header {
            border-bottom: none;
            text-align: center;
            justify-content: center;
            position: relative;
            padding: 20px 20px 10px;
        }

        .modal-title {
            font-size: 22px;
            font-weight: 700;
            color: #222;
        }

        /* Close Button */
        .btn-close {
            position: absolute;
            right: 20px;
            top: 20px;
            opacity: 0.7;
        }

        .btn-close:hover {
            opacity: 1;
        }

        /* Body */
        .modal-body {
            padding: 20px;
        }

        /* Inputs */
        .form-control {
            border-radius: 10px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            margin-bottom: 15px;
            font-size: 14px;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: #ff7a00;
            box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
        }

        /* Textarea */
        textarea.form-control {
            resize: none;
        }

        /* Button */
        .submit {
            background: #3b1805;
            border: none;
            padding: 12px;
            border-radius: 30px;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            transition: 0.3s;
        }

        .submit:hover {
            background: #000;
            transform: translateY(-2px);
        }

        /* Grid spacing fix */
        form .col-12,
        form .col-md-12 {
            padding: 0;
        }

        /* Responsive */
        @media (max-width: 576px) {
            .modal-content {
                border-radius: 12px;
            }

            .modal-title {
                font-size: 18px;
            }
        }






        /* whatapp */
        .quickcontact {
            width: 40px;
            position: fixed;
            top: 77%;
            right: 30px;
            z-index: 9999;
        }

        .quickcontact img {
            width: 100%;
            height: 100%;

        }