body {
    font-family: Verdana;
    margin: 0;
    padding: 5px;
}

.top-band {
 
    color: #333;
    padding: 3px 10px 3px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    background-color: rgba(255, 255, 255, 0.8);
}

.social-icons a {
    color: #4CAF50;
    margin-right: 15px;
}
 .phone-number {
    color: #333;
    margin-right: 5px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.enquire-button {
    background-color: #4CAF50;
    color: #fff;
    padding: 8px;
    border-radius: 5px;
    text-decoration: none;
}

header {
    color: #333;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo img {
    max-height: 60px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

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

nav a {
    text-decoration: none;
    color: #333;
	
}
nav a:hover {
    text-decoration: none;
    color: #4CAF50;
	
}

.fixed-header {
    width: 100%;
	top:40px;  
    background-color: rgba(255, 255, 255, 0.8);
  position: fixed;

}

.homecontent {
    padding-top: 0px;
}
.content {
    padding-top: 120px;
}
.slider {
    width: 100%;
	height: auto; 
    overflow: hidden;
	max-height:700px;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.product {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.details-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
/*
.client-slider-container {
    margin-top: 20px;
    overflow: hidden;
}

.client-slider {
    display: flex;
    width: max-content;
    transition: transform 0.5s ease; /* Smooth transition effect
}

.client-slider div {
    flex: 0 0 auto;
    margin-right: 20px;
}

.client-slider img {
    max-width: 100%;
    height: auto;
} */
.client-slider {
    display: flex;
}

.client-slider div {
    flex: 0 0 auto;
    margin-right: 20px;
}

.client-slider img {
    max-width: 100%;
    height: auto;
}

/* Update the CSS styles for the container */
.client-slider-container {
    width: 100%; /* Adjust the width as needed */
    margin: 0 auto; /* Center the container */
}

/* Add media queries for responsiveness */
@media screen and (max-width: 768px) {
    .client-slider-container {
        width: 100%;
        padding: 0 10px; /* Adjust padding as needed */
    }
}

/* Update the CSS styles for the footer */
footer {
    background-color: #333;
    color: #808080;
    text-align: center;
    padding: 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap to the next row on smaller screens */
    justify-content: space-between;
    align-items: flex-end; /* Align items to the bottom of the container */
}

.footer-columns {
    display: flex;
    justify-content: space-evenly;
    flex: 1; /* Occupy remaining space in the flex container */
}

.footer-column {
    text-align: left;
}

.footer-column h4 {
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 5px;
}

.footer-column a {
    color: #808080;
	text-decoration:none;
}

.footer-column a:hover {
    color: rgba(255, 255, 255, 0.8);
	text-decoration:none;
}
.copyright {

    text-align: left;
    margin-top: 10px; /* Add spacing between the columns and the copyright */
    flex: 1; /* Occupy remaining space in the flex container */
}


.contact-section {
    padding: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.contact-info {
    flex: 1;
    max-width: 240px;
}

.contact-info p {
    margin: 0;
}
.about-section {
    padding: 120px;

.about-section h2 {
    color: #333; /* Adjust text color as needed */
}

.about-section p {
    line-height: 1.5;
}

.enquiry-form {
    flex: 1;
    max-width: 400px;
}

.enquiry-form h2 {
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    padding: 120px;

}

.contact-container h2 {
	
    margin-bottom: 10px;
}

.address-column {
    flex: 1;
    max-width: 300px;
	font-family: 'Verdana';

}

.address-column h2 {
    margin-bottom: 10px;
}

.address-column p {
    margin-bottom: 5px;
	font-family: 'Verdana';
    font-style: normal;
    line-height: 10px;
}
.logo-column {
    flex: 1;
    max-width: 400px;
}

form {
    display: grid;
    grid-gap: 10px;
}

label {
    display: block;
}

input,
textarea {
    width: 100%;
    padding: 8px;
}

button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.map {
    flex: 1;
    max-width: 500px;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

@media only screen and (max-width: 768px) {
    /* Adjust the max-width based on when you want the hamburger menu to appear */
    .hamburger-menu {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust the top position as needed */
        left: 0;
        width: 100%;
        background-color: #333;
        z-index: 1000;
    }

    nav ul li {
        text-align: center;
        margin: 10px 0;
    }
}