/* General body and font styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* -------------------------------------------------------- Header and Footer Styles --------------------------------------------------- */

/* Footer */
.footer {
    background-color: white;
    color: #606060;
    padding: 5px 10px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.footer-logo img {
    width: 100px;
}

.footer-social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social-icons a img {
    width: 25px;
    height: 25px;
}

.footer-content {
    flex: 2;
    text-align: center;
    font-size: 14px;
    color: #606060;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo img {
        width: 80px;
    }
    .footer-social-icons a img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 5px;
    }
    .footer-logo img {
        width: 70px;
    }
    .footer-social-icons a img {
        width: 18px;
        height: 18px;
    }
    .footer-content {
        font-size: 12px;
    }
}

/* -------------------------------------------------------- Contact Us Section --------------------------------------------------- */

.contact-us-section {
    padding: 40px;
    background-color: #f2f2f2;
    text-align: center;
}

.contact-us-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-us-section p {
    font-size: 16px;
    color: #606060;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-image {
    flex: 1;
    margin-right: 20px;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.contact-form {
    flex: 1;
    padding-left: 0;
    text-align: left;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 10px;
    font-size: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 10px;
    margin-top: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: transparent;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #45a049;
}

/* Responsive Contact Us Section */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }
    .contact-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .contact-form {
        text-align: center;
        padding: 0 15px;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 12px;
        width: 100%;
        padding: 15px;
    }
    .contact-form button {
        font-size: 14px;
        padding: 18px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-us-section h1 {
        font-size: 24px;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 10px;
        padding: 8px;
    }
    .contact-form button {
        font-size: 12px;
        padding: 8px;
    }
}

/* -------------------------------------------------------- Modal & Overlay --------------------------------------------------- */

.overlay,
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

.overlay-content,
.modal-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    text-align: center;
}

.modal-content {
    margin: auto;
    width: 300px;
}

.modal-button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-button:hover {
    background-color: #45a049;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: black;
    cursor: pointer;
}

.close-button:hover {
    color: red;
}

/* -------------------------------------------------------- Loader --------------------------------------------------- */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-left-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* -------------------------------------------------------- Reach Us Section --------------------------------------------------- */

.reach-us-section {
    background: linear-gradient(135deg, #0A3B74, #1F6699);
    color: white;
    padding: 70px;
    position: relative;
    border-radius: 20px;
    margin: 30px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 550px;
    box-sizing: border-box;
}

.reach-us-section img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    opacity: 0.3;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

.reach-us-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.reach-us-text {
    flex: 1;
    padding-right: 40px;
}

.reach-us-text h2 {
    font-size: 58px;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reach-us-text p {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
}

.reach-us-text p i {
    margin-right: 15px;
    font-size: 24px;
}

@media (max-width: 768px) {
    .reach-us-section {
        flex-direction: column;
        height: auto;
        padding: 40px;
    }
    .reach-us-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .reach-us-text {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .reach-us-text h2 {
        font-size: 36px;
    }
    .reach-us-section img {
        width: 100%;
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .reach-us-text h2 {
        font-size: 30px;
    }
    .reach-us-text p {
        font-size: 14px;
    }
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Above other content */
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
/* Initially hide the nav menu on mobile */
.nav-links {
    display: none;
}

/* Show the menu when the 'active' class is added */
.nav-links.active {
    display: block;
}

/* For desktop, show the nav menu by default */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}
/* General Contact Form Styling */
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 10px; /* Base padding */
    font-size: 14px; /* Base font size */
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: transparent;
    width: 100%; /* Ensure full width for all screens */
    box-sizing: border-box; /* Include padding in width */
}

/* Mobile-Specific Adjustments */
@media (max-width: 768px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px; /* Increase padding for better touch usability */
        font-size: 16px; /* Slightly larger font for readability */
        width: 100%; /* Ensure full width */
    }
    .contact-form button {
        font-size: 16px; /* Larger button text */
        padding: 12px 20px; /* Enhance padding for easier tapping */
        width: 100%; /* Full-width button */
    }
}

@media (max-width: 480px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px; /* Compact but touch-friendly */
        font-size: 14px; /* Adjust font for smaller screens */
    }
    .contact-form button {
        font-size: 14px; /* Adjust button text size */
        padding: 10px; /* Compact button padding */
    }
}

