body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: 'Poppins', sans-serif;
    background-color: white;
}
nav {
    background-color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav img {
    height: 40px;
    margin-right: 20px;
}
.nav-links {
    display: flex;
}
.nav-links a {
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}
.nav-links a:hover {
    background-color: #CA5697;
    color: white;
}
.hamburger-menu {
    display: none;
    cursor: pointer;
}
.hamburger-icon {
    height: 1.5rem;
    width: 1.5rem;
}
header {
position: relative; /* Ensure positioning context for overlay */
color: white;
text-align: center;
}

.banner-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #CA5697;
opacity: 0.5; /* Adjust opacity as needed */
z-index: 1; /* Ensure overlay is above the image */
}

.banner-img{
height: 20rem;
}
header img {
width: 100%;
height: auto;
z-index: 2; /* Ensure image is above overlay */
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px; /* Initially off-screen */
    width: 250px;
    height: 100%;
    background-color: #CA5697;
    color: white;
    padding-top: 20px;
    transition: left 0.3s ease;
    z-index: 1000; /* Ensure it's above other content */
}

.side-menu.active {
    left: 0; /* Slide in when active */
}

.side-menu a {
    display: block;
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.side-menu a:hover {
    background-color: #555;
}

header {
    color: white;
    text-align: center;
}

header img {
    width: 100%;
    height: auto;
}

.products, .services, .contact {
    padding: 20px;
    text-align: center;
}

.products h2, .services h2, .contact h2 {
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.product, .service {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    width: calc(33.33% - 40px); /* Adjusted width for better spacing */
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover, .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product img, .service img {
    max-width: 100%;
}

.buy-now {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #CA5697;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.see-more{
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #ddd;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.buy-now:hover {
    background-color: #a94b7f;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

.contact button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

.contact button:hover {
    background-color: #555;
}

footer {
    background-color: #CA5697;
    color: white;
    text-align: center;
    padding: 10px 0;
    bottom: 0;
    width: 100%;
}

/* Media query for screens up to 750px */
@media (max-width: 750px) {
    .nav-links {
        display: none; /* Hide the regular navigation links */
    }

    .hamburger-menu {
        display: block; /* Display the hamburger menu icon */
    }

    /* Adjust product and service cards to stack in one column */
    .product, .service {
        width: 100%;
        margin: 10px auto; /* Center align and add spacing */
    }

    .product-list, .services .product-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .banner-img{
        width: 100%; 
        height: 10rem;
    }
}

/* Add this at the end of your existing CSS */
footer {
    background-color: #CA5697;
    color: white;
    text-align: center;
    padding: 20px 0;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.footer-section {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ddd;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ddd;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
}
