/* CSS Variables */
        :root {
            --primary-color: #1e90ff;
            --secondary-color: #0056b3;
            --bg-light: #f8f9fa;
            --text-dark: #2d3436;
            --text-light: #ffffff;
            --accent-color: #ff6b6b;
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            padding-top: 50px; /* Height of the header */
            background: #fff;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        html {
            scroll-behavior: smooth;
        }
        .section-bg {
            background: var(--bg-light);
            padding: 60px 20px;
        }
        h1, h2, h3 {
            font-weight: 700;
        }

        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-color);
            color: var(--text-light);
            padding: 10px;
            z-index: 1000;
        }
        .skip-link:focus {
            top: 0;
        }

        /* Header */
        header {
            background: #2d3436;
            color: var(--text-light);
            height: 50px;  /* Hight of the Menu */
            padding: 15px 40px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        header h1 {
            font-size: 1.8em;
            font-weight: 900;
        }
        nav ul {
            display: flex;
            gap: 30px;
        }
        nav ul li a {
            color: var(--text-light);
            font-weight: 500;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: var(--primary-color);
        }
        #menu-toggle {
            display: none;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8em;
            cursor: pointer;
            color: var(--text-light);
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: #2d3436;
                padding: 20px;
                text-align: center;
            }
            #menu-toggle:checked ~ nav ul {
                display: flex;
            }
        }

        /* Hero Section */
        #home {
            position: relative;
            height: 15vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            overflow: hidden;
        }
        #home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
            filter: blur(2px);
        }
        .hero h2 {
            font-size: 3.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out;
        }
        .hero h6 {
            font-size: 2.5em;
            margin-bottom: 5px;
         	color:#00A5E3;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.6em;
            margin-bottom: 30px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1.2s ease-out;
        }
        .cta-button {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1.2em;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, background 0.3s;
            animation: fadeInUp 1.4s ease-out;
        }
        .cta-button:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        #about {
            padding: 60px 40px;
            text-align: center;
        }
        #about h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: var(--primary-color);
            animation: fadeIn 1s ease-out;
        }
        #about p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1em;
            animation: fadeIn 1.2s ease-out;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Women-owned Business Section */
        #women-owned {
            text-align: center;
        }
        #women-owned h3 {
            font-size: 2em;
            margin-bottom: 20px;
            color: var(--primary-color);
            animation: fadeIn 1s ease-out;
        }
        #women-owned p {
            font-size: 1.1em;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            animation: fadeIn 1.2s ease-out;
        }

        /* Services Section */
        #services {
            text-align: center;
        }
        #services h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
            color: var(--primary-color);
            animation: fadeIn 1s ease-out;
        }
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .service {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            animation: fadeInUp 1s ease-out;
        }
        .service:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .service h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        /* Testimonials Section (CSS Carousel) */
        #testimonials {
            padding: 60px 40px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-light);
        }
        #testimonials h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
            animation: fadeIn 1s ease-out;
        }
        .testimonials-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
            overflow: hidden;
        }
        .testimonial {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            display: none;
            animation: fadeIn 1s ease-out;
        }
        .testimonial p {
            font-style: italic;
        }
        .testimonial h4 {
            margin-top: 10px;
            font-size: 1.1em;
        }
        .testimonial-radio {
            display: none;
        }
        .testimonial-radio:checked + .testimonial {
            display: block;
        }
        .testimonial-nav {
            margin-top: 20px;
        }
        .testimonial-nav label {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .testimonial-radio:checked + .testimonial + .testimonial-nav label {
            background: var(--text-light);
        }

        /* Projects Section */
        #projects {
            padding: 60px 40px;
            text-align: center;
        }
        #projects h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
            color: var(--primary-color);
            animation: fadeIn 1s ease-out;
        }
        .project-filter {
            margin-bottom: 20px;
        }
        .project-filter label {
            margin: 0 10px;
            padding: 8px 16px;
            background: var(--bg-light);
            border-radius: 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .project-filter input {
            display: none;
        }
        .project-filter input:checked + label {
            background: var(--primary-color);
            color: var(--text-light);
        }
        .project-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .project {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            animation: fadeInUp 1s ease-out;
        }
        .project:hover {
            transform: translateY(-10px);
        }
        .project img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .project h3 {
            font-size: 1.3em;
            margin: 10px 0;
        }
        .project p {
            font-size: 0.9em;
            padding: 0 10px 20px;
        }
        /* Project Filter */
        .project:not(.show) {
            display: none;
        }
        #filter-all:checked ~ .project-gallery .project,
        #filter-residential:checked ~ .project-gallery .project.residential,
        #filter-commercial:checked ~ .project-gallery .project.commercial {
            display: block;
        }

        /* Contact Section */
        #contact {
            text-align: center;
        }
        #contact h2 {
            font-size: 2.5em;
            margin-bottom: 40px;
            color: var(--primary-color);
            animation: fadeIn 1s ease-out;
        }
        form {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        input, textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1em;
        }
        button {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }
        button:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        #contact p {
            margin-top: 20px;
            font-size: 1.1em;
            animation: fadeIn 1s ease-out;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-color);
            color: var(--text-light);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            transition: transform 0.3s;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: #2d3436;
            color: var(--text-light);
            text-align: center;
            padding: 40px 20px;
        	height: auto; /* Not sure if auto fit will work */
        	
        }
        .social-links {
            margin-bottom: 40px;  /* Edit for arrow */
        	
        	
        }
        .social-links a {
            color: var(--text-light);
            font-size: 1.5em;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--primary-color);
        }
    .contact-image {
    display: block;
    margin: 0 auto 20px auto; /* center image and add spacing below */
    max-width: 500px;         /* limit width */
    height: auto;             /* keep aspect ratio */
}

/* Default navigation styles ##################################### ADDONS */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    padding: 10px;
    transition: background-color 0.3s ease;
}

/* Active link styles */
nav ul li a.active {
    background-color: green; /* Highlight color */
    color: white; /* Change text color to white */
    border-radius: 5px;
}

/* Hover effect (optional) */
nav ul li a:hover {
    background-color: #ddd;
}
