
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 1100px;
            margin: auto;
            overflow: hidden; /* Clear floats */
        }

        h1, h2, h3 {
            margin-bottom: 1rem;
            color: #2c3e50; /* Dark Blue */
        }

        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        h3 { font-size: 1.5rem; }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: #3498db; /* Primary Blue */
        }

        a:hover {
            color: #2980b9; /* Darker Blue */
        }

        section {
            padding: 40px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        section:last-of-type {
            border-bottom: none;
        }

        /* Header & Navigation */
        header {
            background: #2c3e50; /* Dark Blue */
            color: #fff;
            /* padding: 1rem 0; */
            position: sticky; /* Makes header stick to top */
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header .logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
        }
        /* If using an image logo:
        header .logo img {
            height: 50px;
        }
        */

        header nav ul {
            list-style: none;
            display: flex;
        }

        header nav ul li {
            margin-left: 20px;
        }

        header nav ul li a {
            color: #fff;
            padding: 5px 10px;
            transition: background-color 0.3s ease;
        }

        header nav ul li a:hover,
        header nav ul li a.active {
            background-color: #3498db; /* Primary Blue */
            border-radius: 4px;
        }

        /* Hero Section */
        .hero {
            background: url('./images/image.png') no-repeat center center/cover; /* Replace with your image */
            color: #fff;
            height: 70vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative; /* For overlay */
        }
        .hero::before { /* Optional overlay for better text readability */
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
        }

        .hero-content {
            position: relative; /* To sit on top of the overlay */
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            background: #e67e22; /* Orange */
            color: #fff;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background: #d35400; /* Darker Orange */
            color: #fff;
        }

        /* Services Section */
        #services {
            background-color: #fff;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .service-item {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .service-item i {
            font-size: 2.5rem;
            color: #3498db; /* Primary Blue */
            margin-bottom: 1rem;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-grid1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border: px solid #ddd;
            border-radius: 5px;
            overflow: hidden; /* Ensures image fits */
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            text-align: center;
        }

        .gallery-item1 {
            border: 0px solid #ddd;
            border-radius: 0px;
            overflow: hidden; /* Ensures image fits */
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            text-align: center;
        }

        .gallery-item1 img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .gallery-item1 img:hover {
            transform: scale(1.05);
        }

        .gallery-item1 p {
            padding: 5px;
            background-color: #f1f1f1;
            margin: 5%;
            font-size: 0.9rem;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        .gallery-item p {
            padding: 10px;
            background-color: #f1f1f1;
            margin: 0;
            font-size: 0.9rem;
        }

        /* Contact Section */
        #contact {
            background-color: #ecf0f1; /* Light Gray */
        }
        .contact-container {
            display: flex;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
            gap: 30px;
        }
        .contact-form {
            flex: 2; /* Takes up more space */
            min-width: 300px;
        }
        .contact-details {
            flex: 1; /* Takes up less space */
            min-width: 250px;
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .contact-details h3 {
            color: #3498db;
            margin-bottom: 15px;
        }
        .contact-details p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .contact-details i {
            margin-right: 10px;
            color: #3498db;
            width: 20px; /* Align icons */
        }


        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form input[type="tel"],
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }

        .contact-form textarea {
            resize: vertical;
        }

        .contact-form button[type="submit"] {
            display: inline-block; /* To respect padding etc. */
        }


        /* Footer */
        footer {
            background: #2c3e50; /* Dark Blue */
            color: #bdc3c7; /* Light Grayish Blue */
            text-align: center;
            padding: 20px 0;
        }

        footer a {
            color: #ecf0f1; /* Lighter Gray for links */
        }
        footer a:hover {
            color: #3498db;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header .container {
                flex-direction: column;
                text-align: center;
            }

            header nav ul {
                flex-direction: column;
                margin-top: 1rem;
            }

            header nav ul li {
                margin: 5px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }

            .services-grid, .gallery-grid {
                grid-template-columns: 1fr; /* Stack items on smaller screens */
            }
            
            .contact-container {
                flex-direction: column;
            }
        }
      