:root {
            --primary-green: #27ae60;
            --dark-green: #219653;
            --black: #222222;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: var(--black);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Loading Animation */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(39, 174, 96, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary-green);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Quote Popup - Reduced height */
        .quote-popup {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background-color: var(--white);
            padding: 1.2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            z-index: 1001;
            max-width: 350px;
            width: 90%;
            max-height: 80vh; /* Added max-height */
            overflow-y: auto; /* Added scroll for overflow */
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            border: 2px solid var(--primary-green);
        }

        .quote-popup.active {
            opacity: 1;
            visibility: visible;
        }

        .quote-popup h3 {
            font-size: 1.2rem;
            color: var(--black);
            margin-bottom: 0.8rem;
            text-align: center;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .quote-popup h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background-color: var(--primary-green);
        }

        .close-popup {
            position: absolute;
            top: 8px;
            right: 8px;
            font-size: 1.2rem;
            color: var(--black);
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-popup:hover {
            color: var(--primary-green);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Top Contact Bar - Modified layout */
        .contact-bar {
            background-color: var(--black);
            color: var(--white);
            padding: 0.5rem 5%;
            font-size: 0.9rem;
            position: relative;
            z-index: 1001;
        }

        .contact-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            gap: 1.5rem;
        }

        .contact-info span {
            color: var(--primary-green);
            margin: 0 0.5rem;
        }

        .contact-social {
            display: flex;
            gap: 1rem;
        }

        .contact-social a {
            color: var(--white);
            transition: color 0.3s;
        }

        .contact-social a:hover {
            color: var(--primary-green);
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .logo-text {
            line-height: 1.2;
        }
        
        .logo-text h1 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 0;
        }
        
        .logo-text p {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--black);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--black);
            font-weight: 500;
            font-size: 0.9rem;
            transition: color 0.3s;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        nav ul li a:hover {
            color: var(--primary-green);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
		nav ul li a.active {
			color: var(--primary-green);
		}

		nav ul li a.active::after {
			width: 100%;
		}
		
        .cta-button {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
            display: inline-flex;
            align-items: center;
        }
        
        .cta-button:hover {
            background-color: var(--dark-green);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
        }
        
        .cta-button i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .cta-button:hover i {
            transform: translateX(5px);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--black);
            cursor: pointer;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: var(--shadow);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background-color: var(--dark-green);
            transform: translateY(-3px);
        }
        
        /* Hero Section with Slider */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slides {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .hero-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .hero-slide:nth-child(1) {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg-1.png');
        }

        .hero-slide:nth-child(2) {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg-10.jpg');
        }

        .hero-slide:nth-child(3) {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg-9.jpg');
        }

        .hero-slide:nth-child(4) {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg-7.jpg');
        }

        .hero-slide:nth-child(5) {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg-8.jpg');
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 600px;
            padding: 0 5%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--white);
        }
        
        .hero h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            font-weight: 300;
            opacity: 0.9;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
        }
        
        .secondary-button {
            background-color: transparent;
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--white);
            cursor: pointer;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .secondary-button:hover {
            background-color: var(--white);
            color: var(--black);
            transform: translateY(-3px);
        }

        /* Section Styling */
        .section {
            padding: 5rem 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--black);
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title p {
            font-size: 1rem;
            color: var(--black);
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.8;
        }

        /* Recent Works Section */
        .recent-works {
            background-color: var(--white);
        }

        .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .work-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .work-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }

        .work-image {
            height: 200px;
            overflow: hidden;
        }

        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .work-card:hover .work-image img {
            transform: scale(1.1);
        }

        .work-content {
            padding: 1.5rem;
        }

        .work-content h3 {
            font-size: 1.3rem;
            color: var(--black);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .work-content p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .work-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--primary-green);
            font-weight: 500;
        }
        
        /* About Section */
        .about {
            background-color: var(--light-gray);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.5rem;
            color: var(--black);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .values {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 2rem;
        }
        
        .value-item {
            background-color: var(--white);
            padding: 1.5rem;
            border-radius: 8px;
            flex: 1 1 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .value-item:hover {
            transform: translateY(-10px);
        }
        
        .value-item i {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-green);
        }
        
        .value-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--black);
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background-color: var(--light-gray);
        }
        
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .reason-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .reason-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        
        .reason-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--white);
            font-size: 1.5rem;
        }
        
        .reason-card h3 {
            font-size: 1.3rem;
            color: var(--black);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .reason-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Services Section */
        .services {
            background-color: var(--white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 1.5rem;
        }
        
        .service-content h3 {
            font-size: 1.3rem;
            color: var(--black);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .service-content p {
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .learn-more {
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .learn-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .learn-more:hover i {
            transform: translateX(5px);
        }
        
                
        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 4rem 5% 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            margin-bottom: 1.5rem;
        }
        
        .footer-logo img {
            height: 35px;
            margin-bottom: 1rem;
        }
        
        .footer-logo p {
            font-size: 0.8rem;
            opacity: 0.7;
        }
        
        .footer-links h3 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.7;
            transition: opacity 0.3s;
            font-size: 0.9rem;
        }
        
        .footer-links ul li a:hover {
            opacity: 1;
        }
        
        .footer-newsletter p {
            margin-bottom: 1.5rem;
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 5px 0 0 5px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
        }
        
        .newsletter-form button {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: var(--dark-green);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.8rem;
            opacity: 0.7;
        }
        
        .footer-social-links {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }
        
        .footer-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .footer-social-links a:hover {
            background-color: var(--primary-green);
            transform: translateY(-3px);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h2 {
                font-size: 2rem;
            }

            .contact-bar .contact-container {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .contact-info {
                justify-content: center;
            }

            .quote-popup {
                right: 50%;
                transform: translate(50%, -50%);
                max-width: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 1rem 5%;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 120px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 1rem 5%;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease-in-out;
                z-index: 999;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .contact-bar {
                padding: 0.5rem 5%;
                font-size: 0.8rem;
            }

            .contact-info {
                flex-wrap: wrap;
            }

            .contact-social {
                justify-content: center;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h2 {
                font-size: 1.5rem;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

            .scroll-to-top {
                width: 40px;
                height: 40px;
                bottom: 1rem;
                right: 1rem;
            }

            .contact-bar {
                display: none;
            }

            .quote-popup {
                padding: 1rem;
                width: 95%;
            }

            .quote-popup h3 {
                font-size: 1.1rem;
            }

            .contact-detail {
                flex-direction: column;
                align-items: flex-start;
            }

            .contact-detail i {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }