  html {
    scroll-behavior: smooth;
}
	  
	  

	    /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		  /* WhatsApp Chat Button Style */
        .whatsapp-button {
            position: fixed; /* Make it fixed to the viewport */
            bottom: 20px; /* Distance from bottom */
            right: 20px; /* Distance from right */
            /* background-color: #25D366; /* WhatsApp color */
            /* border-radius: 50%; /* Circular button */
            /* padding: 15px; /* Padding around the icon */
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Shadow for effect */
            z-index: 100; /* Make sure it’s above other elements */
        }

        .whatsapp-button img {
            width: 160px; /* Icon size */
            height: 40px; /* Icon size */
        }
        body {
            background-color: #deefae; /* Changed background color */
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }
		
        /* Header and Banner */
        header {
            position: relative;
            overflow: hidden; /* Ensure banner doesn't overflow */
            height: 300px; /* Fixed height for header */
			margin: 0;
            padding: 0;
        }

        .banner {
            
            background-size: cover;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2em;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }

        /* Main Content */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0px auto;
        }
		
		.services {
    width: 100%; /* Takes the full width of the screen */
    display: flex; /* Ensures proper layout alignment */
    flex-direction: column; /* Stacks child elements vertically */
    align-items: center; /* Centers all child elements horizontally */
    justify-content: center; /* Centers the content vertically (if needed) */
    background-color: #f9f9f9; /* Optional: Add a light background to distinguish the section */
    padding: 40px 20px; /* Adds spacing around the content */
}

/* Ensure .recent-projects fits within .services */
.services .recent-projects {
    width: 100%; /* Ensures the content stretches within the services container */
    max-width: 1200px; /* Prevents the content from being too wide */
    margin: 0 auto; /* Centers the section horizontally */
    text-align: center; /* Centers the text inside */
}
 /* Center-align the heading */
        h2 {
            color: #000000;
			text-align: center; /* Center align "Main Categories" */
            margin: 20px 0; /* Margin for spacing */
        }
        .categories {
            color: #000000;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px 0;
        }

        .category {
            flex: 1 0 21%;
            background: #f9f9f9;
            padding: 15px;
            margin: 8px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .category:hover {
            background-color: #a3ca33; /* Hover effect for categories */
            transform: scale(1.05); /* Scale effect on hover */
			cursor: grab;
        }

        /* Feedback Form */
        .feedback-form {
            color: #000000;
            background: #c3d887;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .feedback-form label {
            display: block;
            margin-top: 10px;
        }

        .feedback-form input,
        .feedback-form textarea {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .feedback-form button {
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #0f4e02;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease; /* Transition for button hover */
        }

        .feedback-form button:hover {
			background-color: #1e9d04; /* Changed button hover color */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            
            .category {
                flex: 1 0 45%;
            }
            .banner {
                height: 200px;
                font-size: 1.5em;
            }
        }

        @media (max-width: 480px) {
            .category {
                flex: 1 0 100%;
            }
            .banner {
                height: 150px;
                font-size: 1.2em;
            }
        }

		 /* Responsive image section */
        .responsive-image {
            width: 100%; /* Make the div take the full width */
            max-width: 2560px; /* Limit the maximum width of the image */
            margin: 0px auto; /* Center the image and give it some margin */
        }

        .responsive-image img {
            width: 100%; /* Ensure the image is responsive */
            height: auto; /* Maintain aspect ratio */
            display: block; /* Remove extra space below the image */
        }
		/* Basic reset */
/* Hide the mobile menu by default */
 /* Desktop Navigation Menu */
        nav {
            background: #0f4e02;
            color: white;
            padding: 10px 0;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 15px;
            transition: background-color 0.3s ease;
        }
        nav ul li a:hover {
            color: #000000;
			background-color: #a3ca33;
            border-radius: 5px;
        }

        /* Mobile Menu (hidden on desktop) */
        .menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 250px;
            height: 100%;
            background-color: #333;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }
        .menu ul {
            list-style: none;
            padding: 20px;
        }
        .menu ul li {
            margin: 15px 0;
        }
        .menu ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            display: block;
            padding: 10px 20px;
            transition: background-color 0.3s;
        }
        .menu ul li a:hover {
            background-color: #444;
            border-radius: 5px;
        }
        .menu-open {
            transform: translateX(0);
        }
        /* Hamburger/Close Icon styling */
        .menu-icon {
            display: none;
            cursor: pointer;
            padding: 10px;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1100;
        }
        .menu-icon .bar {
            width: 30px;
            height: 3px;
            background-color: #333;
            margin: 6px 0;
            transition: all 0.3s ease;
        }

        /* Change icon to X when menu is open */
        .menu-icon.menu-open .bar {
            background-color: #fff;
        }
        .menu-icon.menu-open .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .menu-icon.menu-open .bar:nth-child(2) {
            opacity: 0;
        }
        .menu-icon.menu-open .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        /* Responsive adjustments for mobile */
        @media (max-width: 768px) {
            /* Show hamburger menu icon */
            .menu-icon {
                display: block;
            }
            /* Hide desktop nav and show mobile menu */
            nav {
                display: none;
            }
            .menu {
                display: block;
            }
        }
		/* The "space" div provides a fixed space between items */
.space {
    height: 30px; /* Adjust width for desired spacing */
}
.company-profile {
    color: #000000;
    background: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.company-profile ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}

.company-profile ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.company-profile h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

/* Styles for recent projects section */
        .recent-projects {
            text-align: center;
            padding: 20px;
        }

        .recent-projects h2 {
            color: #000000;
            margin-bottom: 20px;
        }

/* Gallery styling */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
	justify-items: center;
	align-items: center; /* Centers all child elements horizontally */
    justify-content: center; /* Centers the content vertically (if needed) */
    padding: 10px;
}

.gallery img {
    width: 22%;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

.popup .close {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 99999;
}

@media (max-width: 768px) {
    .gallery img {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 100%;
    }
}
