    .footer {
    background-color: #35424a; /* Dark background for the footer */
    color: white; /* Text color */
    padding: 40px 20px; /* Padding for the footer */
}

.footer-container {
    max-width: 12000px; /* Max width for the footer */
    margin: auto; /* Center the footer */
    display: flex; /* Flexbox layout */
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: space-between; /* Space between sections */
}

.footer-section {
    flex: 1; /* Flex-grow for equal distribution */
    min-width: 250px; /* Minimum width for sections */
    margin: 10px; /* Margin between sections */
}

.footer-section h4 {
    font-size: 1.5em; /* Heading size */
    margin-bottom: 15px; /* Space below headings */
    border-bottom: 2px solid #e74c3c; /* Underline effect */
    padding-bottom: 10px; /* Space below the heading */
}

.footer-section p,
.footer-section ul {
    font-size: 1em; /* Font size for text */
    margin-bottom: 10px; /* Space between paragraphs */
    line-height: 1.6; /* Line height for readability */
}

.footer-section a {
    color: #e74c3c; /* Link color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s; /* Smooth transition for link color */
}

.footer-section a:hover {
    color: #ffffff; /* Change color on hover */
    text-decoration: underline; /* Underline on hover */
}

.footer-section ul {
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove padding */
}

.footer-section ul li {
    margin: 5px 0; /* Space between list items */
}

.footer form {
    display: flex; /* Flexbox for the form */
    flex-direction: column; /* Stack elements vertically */
}

.footer input[type="email"] {
    padding: 10px; /* Padding for input */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 10px; /* Space below input */
}

.footer button {
    padding: 10px; /* Padding for button */
    background-color: #e74c3c; /* Button background color */
    color: white; /* Button text color */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth transition */
}

.footer button:hover {
    background-color: #35424a; /* Darken button on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack sections on small screens */
        align-items: center; /* Center align sections */
    }
    .footer-section {
        text-align: center; /* Center text on small screens */
    }
}

        body {
            
            background-color: #f4f4f4;
            margin: 0;
            padding: 20px;
        }
        .map-container,
        #contact {
            background: white;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        .contact-section {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            margin-top: 20px;
        }
        .map-container {
            flex: 1;
            margin-left: 20px; /* Space between form and map */
        }
        #contact {
            flex: 1;
        }
        h2, h3 {
            color: #35424a;
        }
        iframe {
            width: 100%;
            height: 300px;
            border: 0;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="subject"],
        textarea {
            margin-bottom: 10px;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        button {
            padding: 10px;
            background-color: #35424a;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: #2c3e50;
        }

        /* Specific styles for select element */
select {
    appearance: none; /* Remove default styling for better customization */
    background-color: #fff; /* White background */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Position the arrow */
    background-size: 12px; /* Size of the arrow */
}

/* Add focus styles */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: #007BFF; /* Change border color on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add a subtle shadow */
}

        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column; /* Stack on small screens */
            }
            .map-container {
                margin-left: 0; /* Remove margin on small screens */
                margin-top: 20px; /* Space above map */
            }
        }

    .company-history {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    position: relative; /* For pseudo-element positioning */
    overflow: hidden; /* To contain the pseudo-element */
}

.company-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.1); /* Light blue overlay */
    border-radius: 10px;
    z-index: 0; /* Behind the content */
    transition: opacity 0.5s;
}

.company-history:hover::before {
    opacity: 0.5; /* Fade effect on hover */
}

.company-history h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #007bff; /* Accent color */
    margin-bottom: 20px;
    position: relative; /* For text shadow */
    z-index: 1; /* Bring text above pseudo-element */
}

.company-history p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 10px 0;
    text-align: center;
    color: #333; /* Dark text for readability */
    position: relative; /* For text shadow */
    z-index: 1; /* Bring text above pseudo-element */
}

/* Adding a subtle animation for the text */
.company-history p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation delay for each paragraph */
.company-history p:nth-child(2) {
    animation-delay: 0.2s;
}

.company-history p:nth-child(3) {
    animation-delay: 0.4s;
}