* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: garamond;
}

body {
    background-color: #FAFAFA;
    color: #1F2E3C;
}

header {
    background-color: #7C989F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo {
    font-size: 1.5em;
    color: #FAFAFA;
    text-decoration: none;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    color: #FAFAFA;
    text-decoration: none;
    font-size: 1em;
}

.burger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #FAFAFA;
}

.hero {
    text-align: center;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-40%, -50%);
    color: #FAFAFA;
    font-size: 2em;
    padding: 50px;
}


@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    header .burger {
        display: block; /* Show burger menu */
    }

    header nav ul {
        display: none; /* Hide nav by default */
        flex-direction: column;
    }

    header nav ul.active {
        display: flex; /* Show menu when active */
    }

    .hero-text {
        font-size: 1.5em; /* Adjust text size for smaller screens */
        padding: 20px;
    }
}

/* --------Ka mes darome----- */

.activity-section {
    padding: 40px 5%;
    background-color: #FAFAFA; /* Or any other background color you want */
    text-align: center;
}

.activity-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1F2E3C; /* Optional: Dark color for the heading */
}

.activity-content div {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Space between columns */
    text-align: center;
}

.activity-content p {
    flex: 1; /* Make each paragraph take equal width */
    background-color: #FAFAFA; /* Optional: Background color for each column */
    padding: 20px;
}

/* For tablet screens */
@media (max-width: 768px) {
    .activity-section {
        padding: 30px 5%; /* Reduce padding for smaller screens */
    }

    .activity-content h2 {
        font-size: 1.8em; /* Adjust font size for tablets */
        margin-bottom: 15px;
    }

    .activity-content div {
        flex-direction: column; /* Stack columns vertically on tablet screens */
        gap: 15px; /* Reduce space between columns */
    }

    .activity-content p {
        width: 100%; /* Make each paragraph take up the full width */
        background-color: #FAFAFA;
        padding: 15px; /* Adjust padding */
        border-radius: 8px;
    }
}

/* For phone screens */
@media (max-width: 480px) {
    .activity-section {
        padding: 20px 5%; /* Further reduce padding for mobile */
    }

    .activity-content h2 {
        font-size: 1.6em; /* Smaller font size for mobile */
        margin-bottom: 10px;
    }

    .activity-content div {
        flex-direction: column; /* Stack columns vertically */
        gap: 10px; /* Smaller space between columns */
    }

    .activity-content p {
        width: 100%; /* Full width for paragraphs */
        background-color: #FAFAFA;
        padding: 12px; /* Adjust padding for smaller screens */
        border-radius: 8px;
    }
}


/* ---------Manufacturing proces------- */

.manufacturing-section {
    background-color: #D0E4FA; /* Light blue background */
    padding: 40px 5%; /* Padding for space around the section */
    text-align: center; /* Center-align the title */
}

.manufacturing-section h2 {
    font-size: 2em;
    color: #1F2E3C; /* Dark color for the title */
    margin-bottom: 20px;
}

.manufacturing-images {
    display: flex;
    justify-content: center; /* Center the image */
    padding: 20px; /* Space between the image and section edges */
}

.manufacturing-images img {
    max-width: 80%; /* Resize the image to fit within the section */
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners for the image */
}


/* --------Technology-------- */

.technology-section {
    background-color: #FAFAFA;
    padding: 40px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.technology-content {
    flex: 1;
    max-width: 50%;
}

.technology-content h2 {
    font-size: 1.8em;
    color: #1F2E3C;
    margin-top: 0;
    margin-bottom: 20px;
}

.technology-content ul {
    padding-left: 20px; /* Indent for bullet points */
    margin: 0;
    line-height: 1.6em;
    font-size: 1.2em;
}

.technology-content li {
    list-style-type: disc; /* Adds bullet points */
    margin-bottom: 10px;
}

.services-image-wrapper {
    flex: 1;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-image-wrapper img {
    width: 100%; /* Makes the image take up the full width of the container */
    max-width: 100%; /* Ensures it doesn't exceed the container's width */
    height: auto; /* Maintains the original aspect ratio */
    object-fit: contain; /* Ensures the image is scaled down without distortion */
    border-radius: 8px;
}

@media (max-width: 768px) {
    .technology-section {
        flex-direction: column;
        padding: 20px;
    }

    .technology-content, .services-image-wrapper {
        max-width: 100%;
    }

    .services-image-wrapper {
        flex-direction: column;
    }

    .services-image-wrapper img {
        width: 100%;
        height: auto; /* Ensure images maintain their aspect ratio on smaller screens */
    }
}




/* -------footer--------- */


.footer {
    background-color: #8DAAB1; /* Blue-gray background */
    color: #FAFAFA;
    padding: 20px 5%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px; /* Reduced gap between columns */
}

.footer-logo h3 {
    color: #FAFAFA;
    font-size: 1.8em;
    margin: 0;
    text-decoration: none;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-nav ul li {
    margin-bottom: 5px;
}

.footer-nav ul li a {
    color: #FAFAFA;
    text-decoration: underline;
    font-size: 1.1em;
}

.footer-contact h4 {
    font-size: 1.3em;
    margin-bottom: 5px;
    color: #FAFAFA;
}

.footer-contact form {
    display: flex;
    flex-direction: column;
}

.footer-contact input,
.footer-contact textarea {
    margin-bottom: 5px;
    padding: 10px;
    font-size: 1.1em;
    border-radius: 5px;
    border: 1px solid #8DAAB1;
    resize: none;
}

.footer-contact button {
    padding: 10px 20px;
    font-size: 1.1em;
    background-color: #2A3A49;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer Bottom Line Section */
.footer-bottom {
    background-color: #2A3A49; /* Dark blue line color */
    text-align: center;
    padding: 15px 0; /* Thick line appearance */
    color: #FAFAFA;
    margin: 0;
}


@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center-align content */
        gap: 15px; /* Add more gap for clarity */
    }

    .footer-logo h3 {
        font-size: 1.5em; /* Reduce logo size on smaller screens */
        text-align: center;
    }

    .footer-nav ul {
        text-align: center; /* Center align navigation links */
    }

    .footer-nav ul li a {
        font-size: 1em; /* Slightly smaller font for links */
    }

    .footer-contact h4 {
        text-align: center;
        font-size: 1.2em; /* Slightly smaller headline */
    }

    .footer-contact input,
    .footer-contact textarea {
        font-size: 1em; /* Adjust input size */
        width: 100%; /* Ensure inputs stretch across available space */
    }

    .footer-contact button {
        font-size: 1em;
        width: 100%; /* Button spans full width */
    }
}




/* -------wiggle----- */

@keyframes wiggle {
    0% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}

.wiggle {
    animation: wiggle 0.5s ease-in-out;
}