* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-decoration: none;
    list-style: none;
}

.header {
    top: 0;
    width: 100%;
    box-shadow: 0 4px 20px hsla(207, 24%, 35%, 0.1);
    background-color: #000;
    z-index: 1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo a span {
    color: #8739fa;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu a {
    display: block;
    padding: 7px 15px;
    font-size: 17px;
    font-weight: 500;
    transition: 0.2s all ease-in-out;
    color: #fff;
}

.menu:hover a {
    opacity: 0.4;
}

.menu a:hover {
    opacity: 1;
    color: #fff;
}

.menu-icon {
    display: none;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked ~ .menu {
    transform: scale(1, 1);
}

@media only screen and (max-width: 950px) {
    .menu {
        flex-direction: column;
        background-color: #000;
        align-items: start;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 1;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .menu a {
        margin-left: 12px;
    }

    .menu li {
        margin-bottom: 10px;
        position: relative;
    }

    .menu-icon {
        display: block;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
    }
}

@media (max-width: 600px) {
    .menu {
        display: none; /* Hide menu by default on small screens */
    }
    #menu-toggle:checked + .menu {
        display: block; /* Show menu when checkbox is checked */
    }
    .menu-icon {
        display: block; /* Show hamburger icon on small screens */
    }
}

.footer {
    background-color: beige; /* Background color for the footer */
    color: #06781b; /* Text color */
    padding: 60px 20px; /* Increased padding for the footer */
    font-family: Arial, sans-serif; /* Font family */
    border-top-left-radius: 25px; /* Rounded corners */
    border-top-right-radius: 25px; /* Rounded corners */
    text-align: center; /* Center the text in the footer */
}

.footer-container {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}

.footer-section {
    margin: 10px 0; /* Add some margin between sections */
}

.footer-section h3 {
    border-bottom: 1px solid #fff; /* Underline for section headings */
    padding-bottom: 10px; /* Padding below heading */
}

.footer-section ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.footer-section ul li {
    margin: 10px 0; /* Margin for list items */
}

.footer-section a {
    color: #06781b; /* Link color */
    text-decoration: none; /* Remove underline from links */
}

.footer-section a:hover {
    text-decoration: underline; /* Underline on hover */
}

.footer-bottom {
    text-align: center; /* Center the copyright text */
    margin-top: 20px; /* Margin above copyright text */
    font-size: 0.9em; /* Smaller font size for copyright */
}

.section {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #000;
    color: whitesmoke;
    margin: 40px 0; /* Increased spacing between sections */
}

.text-contentleft {
    flex: 1;
    padding-right: 20px;
    text-align: justify;
    margin-left: 50px;
}

.image-contentleft img {
    display: flex;
    border-radius: 8px;
    margin-right: 150px;
}

.text-content {
    flex: 1;
    padding-left: 20px;
    text-align: justify;
    margin-right: 50px;
}

.image-content img {
    display: flex;
    border-radius: 8px;
    margin-left: 150px;
}

.hero {
    position: relative;
    background-image: url('/Assets/Products/a manufacturing unit.png'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    z-index: 1;
    overflow: hidden;
    background-attachment: fixed; /* Parallax Effect */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay to darken the background */
    z-index: -1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta-button {
    background-color: #00d4ff;
    color: #1a1a2e;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background-color: #fff;
    color: #00d4ff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}
