
        :root {
            --primary-green: #006400;
            --light-green: #4CAF50;
            --dark-green: #004d00;
            --primary-blue: #1e3a8a;
            --light-blue: #3498db;
            --dark-blue: #0d1b2a;
            --black: #121212;
            --gray: #f5f5f5;
            --white: #ffffff;
            --gold: #FFD700;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--gray);
            color: var(--black);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
            color: white;
            padding: 2px 0;
            font-size: 14px;
        }
        
        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .contact-info a {
            color: white;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            padding: 4px 0;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        .social-icons a {
            color: white;
            margin-left: 12px;
            font-size: 18px;
        }
        
        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-image {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            background: linear-gradient(45deg, var(--primary-green), var(--primary-blue));
            color: white;
            padding: 10px;
            border-radius: 8px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo h1 {
            color: var(--primary-green);
            font-size: 28px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .logo .slogan {
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        
        nav ul li {
            margin-left: 15px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--black);
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
            padding: 10px 5px;
        }
        
        nav ul li a:hover {
            color: var(--primary-green);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary-green);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-green);
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }
        
        .slider-container {
            position: relative;
            height: 100%;
            width: 100%;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-1 {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
        }
        
        .slide-2 {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522071901873-411886a10004?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
        }
        
        .slide-3 {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
        }
        
        .slide-4 {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
        }
        
        .hero-content {
            max-width: 800px;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        
        .hero-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background 0.3s;
        }
        
        .slider-arrow:hover {
            background: rgba(0,0,0,0.8);
        }
        
        .slider-arrow.prev {
            left: 20px;
        }
        
        .slider-arrow.next {
            right: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
            padding: 30px 20px;
            border-top: 4px solid var(--primary-green);
        }
        
        .service-card:nth-child(2) {
            border-top-color: var(--primary-blue);
        }
        
        .service-card:nth-child(3) {
            border-top-color: var(--light-green);
        }
        
        .service-card:nth-child(4) {
            border-top-color: var(--light-blue);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: var(--primary-green);
        }
        
        .service-card:nth-child(2) .service-icon {
            color: var(--primary-blue);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }
        
        .service-card p {
            color: #666;
        }
        
        /* Equipment Booking Section */
        .equipment-booking {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f9f9f9, var(--gray));
        }
        
        .booking-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
        }
        
        .booking-image {
            flex: 1;
            min-width: 300px;
            background: url('https://images.unsplash.com/photo-1603732551681-2e91159b9dc2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .booking-form {
            flex: 1;
            min-width: 300px;
            padding: 40px;
        }
        
        .booking-form h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 30px;
            position: relative;
        }
        
        .booking-form h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-green);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 100, 0, 0.1);
        }
        
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--light-green);
        }
        
        .footer-logo .slogan {
            color: var(--light-blue);
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .footer-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--light-green);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #aaa;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h2 {
                font-size: 2.8rem;
            }
            
            .booking-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .header-top-content {
                flex-direction: column;
                gap: 10px;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-content h2 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h2 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .logo h1 {
                font-size: 22px;
            }
        }
/* Services Section Enhancements */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 30px;
    border-top: 4px solid var(--primary-green);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-green);
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Detail Page Styles */
.service-detail {
    padding: 80px 0;
}

.service-header {
    margin-bottom: 40px;
}

.service-hero-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
}

.service-sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-quick-facts h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-quick-facts ul {
    list-style: none;
    padding: 0;
}

.service-quick-facts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.service-quick-facts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-quick-facts strong {
    color: var(--dark-blue);
}

.service-contact-cta {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: white;
    border-radius: 8px;
    text-align: center;
}

.service-contact-cta h3 {
    margin-bottom: 15px;
}

.related-services {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related-services h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-content .row {
        flex-direction: column;
    }
    
    .service-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px;
    }
}
  /* Properties Gallery Styles */
    .properties-gallery {
        padding: 80px 0;
        background-color: #f9f9f9;
    }
    
    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
        color: #1e3a8a;
        margin-bottom: 10px;
    }
    
    .section-title p {
        color: #666;
        font-size: 1.1rem;
    }
    
    .view-all {
        color: #006400;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color 0.3s;
    }
    
    .view-all:hover {
        color: #004d00;
    }
    
    .view-all i {
        transition: transform 0.3s;
    }
    
    .view-all:hover i {
        transform: translateX(5px);
    }
    
    /* Property Filter */
    .property-filter {
        margin-bottom: 30px;
    }
    
    .filter-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .filter-list a {
        display: block;
        padding: 8px 20px;
        background-color: #fff;
        border-radius: 30px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        border: 1px solid #ddd;
        transition: all 0.3s;
    }
    
    .filter-list a:hover,
    .filter-list a.active {
        background-color: #006400;
        color: white;
        border-color: #006400;
    }
    
    /* Properties Grid */
    .properties-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .property-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .property-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .property-card.featured {
        border: 2px solid #006400;
    }
    
    .property-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .property-card:hover .property-image img {
        transform: scale(1.05);
    }
    
    .featured-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #006400;
        color: white;
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        z-index: 2;
    }
    
    .property-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        opacity: 0;
        transition: opacity 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    
    .property-card:hover .property-overlay {
        opacity: 1;
    }
    
    .overlay-content {
        padding: 20px;
        text-align: center;
        color: white;
    }
    
    .overlay-content h3 {
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    
    .property-meta {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .property-meta i {
        margin-right: 5px;
    }
    
    .property-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }
    
    .property-info {
        padding: 20px;
    }
    
    .property-info h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        color: #333;
    }
    
    .property-location {
        color: #666;
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .property-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .property-type {
        background-color: #f0f0f0;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 13px;
        color: #555;
    }
    
    .property-price {
        color: #006400;
        font-weight: 600;
    }
    
    .no-properties {
        grid-column: 1 / -1;
        text-align: center;
        padding: 50px 20px;
    }
    
    .no-properties i {
        font-size: 50px;
        color: #ddd;
        margin-bottom: 20px;
    }
    
    .no-properties p {
        color: #666;
        font-size: 1.1rem;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .properties-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .section-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .property-image {
            height: 200px;
        }
    }
    
    @media (max-width: 576px) {
        .properties-grid {
            grid-template-columns: 1fr;
        }
        
        .filter-list {
            justify-content: center;
        }
    }