
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        :root {
            --primary-color: #2d6a4f;
            --secondary-color: #40916c;
            --light-green: #74c69d;
            --very-light-green: #95d5b2;
            --white: #ffffff;
        }
        
        section{
            margin-top:80px !important;
            margin-bottom: 80px !important;
        }

        .navbar {
            padding: 20px 0;
            background-color: transparent;
        }
        
        .hero-section {
            background: linear-gradient(rgba(45, 106, 79, 0.8), rgba(64, 145, 108, 0.8)), url('https://images.pexels.com/photos/7821684/pexels-photo-7821684.jpeg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            color: var(--primary-color);
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .counter-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .counter-text {
            font-size: 18px;
            color: var(--secondary-color);
        }
        
        .why-us-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .why-us-icon {
            font-size: 28px;
            color: var(--primary-color);
            margin-right: 15px;
        }
        
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .service-image {
            height: 200px;
            object-fit: cover;
        }
        
        .review-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .faq-item {
            border: none;
            border-bottom: 1px solid #eee;
        }
        
        .faq-button {
            font-weight: 500;
            color: var(--primary-color);
            text-decoration: none;
            display: block;
            width: 100%;
            text-align: left;
            padding: 15px 0;
        }
        
        .footer {
            background-color: #f8f9fa;
            padding: 60px 0 30px;
        }
        
        .footer-col h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .copyright {
            border-top: 1px solid #eee;
            padding-top: 20px;
            margin-top: 40px;
            color: #777;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        .py-101{
            padding:100px !important;
        }
        .nav-item{
            margin-left:25px
        }
