/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu div {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 6px 0;
}

/* Show hamburger menu on small screens */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    nav ul {
        display: none;
    }

    .nav-active {
        display: block;
    }
}




body, html {
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    color: #000;
    background-color: #fff;
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


main {
    flex: 1;
}

header {
    position: fixed; /* or 'sticky' */
    top: 0;
    left: 0; /* Ensures it stretches across the screen */
    width: 100%;
    background: #fff;
    z-index: 1000; /* Ensures the header is above other content */
    /* Add box-shadow or border for better visual separation if needed */
    text-align: center; /* Centers the content of the header */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Optional: adds a subtle shadow for depth */
}


nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    padding: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}


.section {
    display: none; /* Hide all sections by default */
    padding: 20px;
    text-align: center;
}

.hidden {
    display: none;
}

/* To show a section */
.active {
    display: block;
}


.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.product-card {
    width: 30%;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 10px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .product-card {
        width: 100%;
    }
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    margin: 10px;
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 15px;
}

.footer-section p, .footer-section form {
    margin-bottom: 10px;
}

input[type="email"] {
    padding: 8px;
    margin-right: 10px;
    border: none;
    width: calc(100% - 100px);
}

button[type="submit"] {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

iframe {
    width: 100%;
    max-width: 600px; /* Adjust based on your design */
    height: 300px; /* Adjust based on your design */
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    input[type="email"], button[type="submit"] {
        width: auto;
        margin-top: 5px;
    }
}


.services-intro {
    text-align: center;
    margin-bottom: 30px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-item {
    width: 45%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 10px 0;
    padding: 20px;
    text-align: center;
}

.service-item h2 {
    color: #007bff; /* Gives a bit of color to service titles */
}

@media (max-width: 768px) {
    .service-item {
        width: 100%;
    }
}

