
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #10B981;
            --secondary-green: #059669;
            --dark-green: #047857;
            --light-green: #D1FAE5;
            --accent-gold: #D4A574;
            --accent-orange: #D4844A;
            --accent-purple: #8B5A9B;
            --dark-text: #111827;
            --light-text: #6B7280;
            --white: #FFFFFF;
            --light-bg: #F9FAFB;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-green);
        }

        .logo-subtitle {
            font-size: 0.8rem;
            color: var(--light-text);
            text-transform: uppercase;
            letter-spacing: 1px;
            max-width: 200px;
        }

        .nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav a {
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav a:hover {
            color: var(--primary-green);
        }

        .nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }

        .nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            padding: 120px 0 80px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
            padding-top: 10%;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text .subtitle {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .hero-text .tagline {
            font-size: 1rem;
            margin-bottom: 2rem;
            opacity: 0.8;
        }

        .cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--primary-green);
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
        }

        .hero-visual {
            border: none;
            text-align: center;
            box-shadow: none;
        }

        .hero-image {
            width: 100%;
            max-width: 400px;
          box-shadow: none;
            border-radius: 15px;
            padding-top: 10px;
        }

        /* Services Section */
      /* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/uploads/images/GREEN.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.50;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--dark-green);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-category {
            background: #107559a9 ;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-category:hover {
            transform: translateY(-5px);
        }

        .service-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--primary-green);
        }

        .service-category:nth-child(1)::before {
            background: var(--light-green);
        }

        .service-category:nth-child(2)::before {
            background: var(--dark-green);
        }

        .service-category:nth-child(3)::before {
            background: var(--dark-text);
        }

        .service-category h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--light-bg);
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 0.5rem 0;
            color: var(--white);
            border-bottom: 1px solid #fafafa;
            transition: color 0.3s ease;
        }

        .service-list li:hover {
            color: var(--dark-green);
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        /* Projects Section with Slideshow */
        .projects {
            padding: 80px 0;
        }

        .slideshow-container {
            position: relative;
            max-width: 100%;
            margin: 3rem auto 0;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            background-color: #03130e;
        }

        .slideshow-wrapper {
            position: relative;
            height: 700px;
            overflow: hidden;
        }

        .slide {
            display: none;
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide.active {
            display: block;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: var(--white);
            padding: 3rem 2rem 2rem;
        }

        .slide-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .slide-caption {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Navigation buttons */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            color: var(--primary-green);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .nav-btn:hover {
            background: var(--white);
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        /* Dots indicator */
        .dots-container {
            text-align: center;
            padding: 1.5rem;
            background: var(--light-bg);
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background-color: var(--primary-green);
        }

        /* Projects Grid (keeping the original) */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--dark-text);
        }

        .project-content p {
            color: var(--light-text);
            font-size: 0.9rem;
        }

        .project-category {
            display: inline-block;
            background: var(--light-green);
            color: var(--primary-green);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 0.5rem;
        }

        /* About Section */
        .about {
            padding: 80px 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--secondary-green);
            margin-bottom: 1rem;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--dark-green);
            margin-bottom: 1.5rem;
        }

        .brand-statement {
            background: linear-gradient(135deg, var(--accent-gold), #fab43c);
            color: var(--white);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            margin-top: 2rem;
        }

        .brand-statement h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            background: var(--primary-green);
            padding: 80px 0;
            color: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .office-info {
            background: var(--primary-green);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        .office-info h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .contact-details {
            text-align: center;
            background:  var(--secondary-green);
            padding: 2rem;
            border-radius: 10px;
        }

        .contact-details h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--white);
            color: var(--primary-green);
            border-radius: 50%;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .social-links a:hover {
            transform: scale(1.1);
        }

        /* Footer */
        .footer {
            background: var(--light-bg);
            color: var(--dark-text);
            padding: 2rem 0;
            text-align: center;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .nav {
                display: none;
            }

            .slideshow-wrapper {
                height: 300px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .prev-btn {
                left: 10px;
            }

            .next-btn {
                right: 10px;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-category:nth-child(1) {
            animation-delay: 0.1s;
        }

        .service-category:nth-child(2) {
            animation-delay: 0.2s;
        }

        .service-category:nth-child(3) {
            animation-delay: 0.3s;
        }
