
        :root {
            --primary: #2c6e49;
            --primary-light: #4c9a6e;
            --secondary: #e9c46a;
            --accent: #d62828;
            --dark: #1d3c34;
            --light: #f8f9fa;
            --text: #333;
            --text-light: #666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--dark);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background: var(--secondary);
            color: var(--dark);
        }
        
        .btn-secondary:hover {
            background: #f1b83a;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 15px 0;
            transition: var(--transition);
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 24px;
            font-weight: 700;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .logo h1 {
                font-size: 20px;
            }
        }
        
        /* Hero Section */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('homepageImages/image1.jpg') no-repeat center center/cover;
            text-align: center;
            opacity: 1; /* 50% transparent */
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero .tagline {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 30px;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            color: #000;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            color: var(--text-light);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
            text-align: center;
        }
        
        .vision-mission {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }
        
        .vision, .mission {
            flex: 1;
            padding: 25px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .vision h3, .mission h3 {
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .vision h3 i, .mission h3 i {
            margin-right: 10px;
        }
        
        .core-values {
            margin-top: 60px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .value-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
        }
        
        .value-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .value-card h3 {
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 columns */
            gap: 20px;
        }

        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Make cards with images (service-slider) take the full row */
        .services-grid .service-card:has(.service-slider) {
            grid-column: 1 / -1;
        }

        
        .service-card {
            background: var(--light);
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .service-images {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
        }

        .service-images img {
            width: 50%;
            height: 150px;
            object-fit: cover;
            border-radius: 6px;
        }

        /* Responsive: Stack images vertically on small screens */
        @media (max-width: 768px) {
            .service-images {
                flex-direction: column;
            }

            .service-images img {
                width: 100%;
            }
        }

        .service-slider {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
            border-radius: 8px;
            margin-top: 15px;
        }

        .service-slider img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            height: 140%;
            object-fit: contain;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }


        .service-slider img.active {
            opacity: 1;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .service-slider {
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .service-slider {
                height: 150px;
            }
        }


        .service-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: var(--text-light);
        }

        .approach {
            margin-top: 60px;
            text-align: center;
        }
        
        .clients {
            margin-top: 80px;
        }
        
        .clients-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .client-logo {
            background: white;
            padding: 20px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            font-weight: 600;
            color: var(--dark);
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(rgba(44, 110, 73, 0.4), rgba(44, 110, 73, 0.4)), url('homepageImages/contactUs.jpg') no-repeat center center/cover;
            opacity: 1; /* 50% transparent */
            color: white;
        }

        .contact .section-title h2 {
            color:  #fed16a; /* dark gray, readable on light backgrounds */
        }

        
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            color: white;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary);
        }
        
        .contact-details {
            margin-top: 40px;
            
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            
        }
        
        .contact-icon {
            font-size: 24px;
            color: #fed16a;
            margin-right: 15px;
            margin-top: 5px;
        }

        .contact-icon i {
            color: #fed16a !important;
        }

        .contact-icon h4 {
            font-size: 2rem;
            margin-bottom: 5px;
            color: #386641;
        }

        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h3 {
            color: #fed16a;
            margin-bottom: 30px;
            text-align: center;
        }

        .contact-form button,
        .contact-form input[type="submit"] {
            background: #fed16a;   /* your desired background color */
            color: white;          /* text color */
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }

        .contact-form button:hover,
        .contact-form input[type="submit"]:hover {
            background: #fed16a; /* hover color */
        }

        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: #386641;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-col h4 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: #ccc;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 18px;
            transition: all 0.3s;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a i {
            color: #fed16a !important;
            width: 20px;
        }
        
        .footer-links a:hover {
            color: #fed16a !important;
            padding-left: 5px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-info i {
            color: #fed16a !important;
            font-size: 20px;
            margin-right: 10px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-item i {
            color: #fed16a !important;
            font-size: 18px;
            min-width: 20px;
        }

        .contact-item a {
            color: #fed16a !important;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 0.9rem;
        }
        
        .business-hours {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px dashed rgba(255, 255, 255, 0.1);
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            color: #ccc;
        }
        
        .map-container {
            margin-top: 20px;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            background: #386641;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-container i{
            font-size: 50px;
            color: #fed16a !important;
        }
        
        .map-placeholder {
            text-align: center;
            padding: 20px;
        }
        
        .map-placeholder i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-col {
                min-width: 100%;
            }
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            color: var(--dark);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: #fed16a 1px solid;
            color: #fff;
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .tagline {
                font-size: 1.5rem;
            }
            
            .vision-mission {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }

            
            .hero .tagline {
                font-size: 1.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }

        

        }
    