/* Global Styles */
body {
    zoom: 100%;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f5f7;
    color: #002244;
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    font-size: 17px;
    top: 0;
    z-index: 1000;
}


nav {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Allows the nav section to grow and align left */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    margin-left: 30px; /* Moves the nav links closer to the logo */
}

nav ul li a {
    text-decoration: none;
    color: #002244;
    font-weight: 600;
}

nav ul li a:hover,
nav ul li a.active {
    color: #007BFF;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    position: fixed; /* Use fixed positioning to make them stick to the right side */
    right: 20px; /* Align to the very right side of the screen */
    top: 20px; /* Adjust as needed to align vertically */
    transform: translateY(0); /* No vertical transform needed with fixed positioning */
    z-index: 1000; /* Ensure it appears above other elements */
}

.get-quote-button {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.get-quote-button:hover {
    background-color: #0056b3;
}

@media screen and (min-width: 769px) {
    .close-menu-button,
    .mobile-menu-button {
        display: none; /* Hide the close button and mobile menu button on screens wider than 768px */
    } 

    header .logo {
        display: flex;
        align-items: center;
    }
    
    header .logo img {
        width: 120px;
        margin-left: 20px;
        height: auto;
    }
    
    header .logo-text {
        margin-left: 5px;
        font-size: 23px;
        font-weight: bold;
        color: #002244;
    }
    
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.contact-hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-hero .hero-content p {
    font-size: 20px;
    margin: 0;
}

/* Contact Information Section */
.contact-info {
    padding: 70px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.info-container h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #002244;
    border-bottom: 3px solid #007BFF;
    padding-bottom: 10px;
    display: inline-block;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 30px;
    color: #007BFF;
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact-form {
    padding: 40px 30px;
    background-color: #ffffff;
    text-align: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #002244;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background-color: #001b36;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);
}

/* Location Section */
.location-section {
    padding: 30px 20px;
    background-color: #f4f6f9;
    margin: 0px 0;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.location-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.map-container {
    flex: 1 1 60%;
    min-width: 300px;
}

.contact-details {
    flex: 1 1 35%;
    min-width: 250px;
    background-color: #f4f5f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #002244;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 5px;
}

.contact-details p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.contact-details ul {
    list-style: none;
    padding: 0;
}

.contact-details ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.contact-details ul li a {
    color: #007BFF;
    text-decoration: none;
}

.contact-details ul li a:hover {
    color: #0056b3;
    text-decoration: underline;
}


/* Footer Section */
.footer {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #fff;
    padding: 50px 20px;
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-about {
    flex: 2; /* Increase flex-grow value for the About Us column */
}

.footer-newsletter {
    flex: 1.5; /* Increase flex-grow value for the Newsletter column */
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer p, .footer a {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    text-decoration: none;
}

.footer a:hover {
    color: #007BFF;
    text-decoration: underline;
}

.footer-links {
    margin-left: 100px; /* Adjust this value to move the section to the right */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
    font-size: 14px;
    margin-right: 0px;
}

.newsletter-form button {
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    margin-right: 70px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #0056b3;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: #ddd;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007BFF; /* Change to your preferred hover color */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #444;
    margin-top: 20px;
}




/* Styles for Mobile View (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Prevent Overflow on Mobile */
    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        width: 100%;
    }

    /* Header Redesign for Mobile */
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        background-color: #ffffff;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease; /* Smooth transition for header hiding */
    }

    .logo {
        display: flex;
        align-items: center;
        margin-right: auto; /* This ensures the logo aligns to the left */
    }

    .logo img {
        width: 45%;
        height: auto;
        margin-right: 0; /* Remove any right margin to ensure it’s flush with the left */
    }

    /* Header Buttons */
    .header-buttons {
        display: flex;
        align-items: center;
        gap: 10px;
        transition: top 0.3s ease; /* Ensure buttons also hide smoothly */
    }

    .mobile-menu-button {
        background-color: transparent;
        border: none;
        color: #002244;
        font-size: 30px;
        cursor: pointer;
        padding: 0;
        transition: color 0.3s ease;
    }

    .mobile-menu-button:hover {
        color: #0056b3; /* Subtle color change on hover for mobile button */
    }

    .get-quote-button {
        background-color: #002244;
        color: #ffffff;
        padding: 7px 15px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow to make the button pop */
    }

    .get-quote-button:hover {
        background-color: #0056b3; /* Slightly darker on hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Increase shadow on hover */
    }

    /* Mobile Navigation Menu */
    nav ul {
        display: none;
        flex-direction: column;
        width: 50%; /* Slightly wider for better touch targets */
        background-color: #ffffff;
        padding: 70px 20px;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        z-index: 1000;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1); /* Slightly more shadow for depth */
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }

    nav ul.menu-open {
        display: flex;
        transform: translateX(0); /* Slide in the menu smoothly */
    }

    nav ul li {
        margin-bottom: 20px; /* Add space between each menu item */
    }

    nav ul li a {
        text-decoration: none;
        font-size: 18px; /* Larger font for better readability */
        font-weight: 600;
        color: #002244;
        transition: color 0.3s ease; /* Add a color transition */
    }

    nav ul li a:hover {
        color: #0056b3; /* Slight color change on hover */
    }

    /* Close Button Styling */
    .close-menu-button {
        display: block;
        background-color: transparent;
        border: none;
        color: #002244;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        transition: color 0.3s ease; /* Smooth color transition on hover */
    }

    .close-menu-button:hover {
        color: #ff0000; /* Red color for a more visible close button hover */
    }

    /* Styling for Scrollable Menu */
    nav ul::-webkit-scrollbar {
        width: 6px;
    }

    nav ul::-webkit-scrollbar-thumb {
        background-color: rgba(0, 34, 68, 0.3);
        border-radius: 5px;
    }

    
    .hero {
        width: 100vw; /* Full viewport width */
        height: auto; /* Adjust height dynamically based on content */
        background-image: url('../images/background.png') !important; /* Use the provided image path */
        background-size: cover !important; /* Ensure the background image covers the entire area */
        background-position: center !important; /* Center the background image */
        background-repeat: no-repeat !important; /* Prevent the background from repeating */
        margin-top: 70px;
        display: flex;
        align-items: center; /* Vertically center content */
        justify-content: center; /* Horizontally center content */
        overflow: hidden; /* Prevent overflow */
        padding: 15px 10px; /* Add padding around the content */
        flex-direction: column; /* Stack items vertically */
        gap: 10px; /* Add space between elements */
    }

    .hero-content {
        text-align: center; /* Center text alignment */
        color: #ffffff; /* Use white text color for contrast */
        max-width: 90%; /* Limit the width for better readability */
        margin: 0 auto; /* Center content within the hero */
    }

    .hero-content h5 {
        font-size: 12px; /* Smaller font size for subheading */
        margin-bottom: 5px; /* Reduce margin below the subheading */
    }

    .hero-content h1 {
        font-size: 18px; /* Smaller font size for main heading */
        margin-bottom: 8px; /* Reduce margin below the main heading */
        line-height: 1.2; /* Adjust line height for better spacing */
    }

    .hero-buttons {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 8px; /* Space between buttons */
        margin-top: 10px; /* Adjust margin above buttons */
        width: 100%; /* Ensure buttons take full width */
        max-width: 200px; /* Limit the maximum width */
        align-items: center; /* Center-align buttons */
    }

    .hero-buttons {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 4px; /* Reduce space between buttons */
        margin-top: 10px; /* Adjust margin above buttons */
        width: 100%; /* Ensure buttons take full width */
        max-width: 200px; /* Limit the maximum width */
        align-items: center; /* Center-align buttons */
        margin: 0 auto; /* Center the button container */
    }
    
    .hero-buttons .cta:first-child {
        background-color: #002244; /* Button background color */
        color: #fff; /* Text color */
    }

    .hero-buttons .cta:first-child:hover {
        background-color: #0056b3; /* Change color on hover */
    }

    .hero-buttons .cta:last-child {
        background-color: #fff; /* Secondary button background */
        color: #002244; /* Text color */
        border: 1px solid #002244; /* Border for secondary button */
    }

    .hero-buttons .cta:last-child:hover {
        background-color: #f4f4f4; /* Light hover effect for secondary button */
    }

    .about-us-container {
        flex-direction: column; /* Stacks the text and image vertically on smaller screens */
        text-align: center;
        gap: 20px;
    }

    .about-us-content {
        padding-right: 0;
    }

    .about-us-image img {
        max-width: 100%;
    }

    .about-us-content h2 {
        font-size: 28px;
    }

    .about-us-content p {
        font-size: 15px;
    }

    .about-us-homepage {
        display: flex; /* Use flexbox for layout */
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center elements horizontally */
        justify-content: center; /* Center elements vertically */
        height: 70vh; /* Full viewport height to center vertically */
        text-align: center; /* Center-align text content */
        padding: 20px; /* Add padding for better spacing */
        position: relative; /* Establish a relative positioning context */
    }

    .about-us-homepage h2 {
        text-align: center; /* Center the "About" heading */
        margin: 0 auto; /* Center-align the heading horizontally */
    }

    .about-us-homepage p {
        text-align: justify; /* Justify the paragraph text */
        margin: 0 auto; /* Center paragraphs */
        max-width: 90%; /* Restrict width for readability */
    }

    .about-us-homepage img {
        display: none !important; /* Remove the image on mobile view */
    }

    .cta-button {
        display: flex; /* Use flexbox to center button container */
        justify-content: center; /* Center the button horizontally */
        margin: 20px auto; /* Center the container and add margin */
        width: 100%; /* Ensure full width for the container */
        text-align: center; /* Center-align button text */
    }

    .cta-button-container {
        display: flex; /* Use flexbox to center button container */
        justify-content: center; /* Center the button horizontally */
        align-items: center; /* Center the button vertically */
        margin: 20px auto; /* Center the container and add margin */
        width: 100%; /* Ensure full width for the container */
        text-align: center; /* Center-align button text */
    }

    .services-slider {
        padding: 5px 15px; /* Reduce top padding to lower space */
        background-color: #f8f9fa;
        position: relative;
    }

    .swiper-container {
        width: 100%; /* Full width for mobile */
        max-width: 100%; /* Remove max-width constraint for mobile */
        margin: 0 auto;
        padding-bottom: 50px; /* Adjust space for pagination and navigation */
        padding-top: 0; /* Remove any extra top padding */
    }

    .swiper-slide {
        display: flex;
        justify-content: center; /* Center the service card horizontally */
        align-items: center;
    }

    .service-feature-block {
        background-color: #ffffff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        max-width: 90%; /* Constrain the maximum width of the service block for mobile */
        width: auto; /* Adjust width to be responsive */
        height: auto; /* Adjust height for mobile view */
        text-align: center;
        display: flex; /* Use flexbox to align content */
        flex-direction: column;
        justify-content: space-between; /* Distribute space between content */
        align-items: center;
        padding: 10px; /* Reduce padding for smaller screens */
        box-sizing: border-box; /* Include padding in the height calculation */
        margin: 10px auto; /* Reduce top and bottom margin to lower space */
    }

    .service-feature-block img {
        width: 100%;
        height: 120px; /* Adjust height for mobile view */
        object-fit: cover; /* Ensures the image covers the block without stretching */
        margin-bottom: 10px; /* Adjust space between image and content */
    }

    .service-feature-block .service-content {
        text-align: center;
        flex-grow: 1; /* Allows the content to grow and occupy available space */
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Align content to the top */
    }

    .service-feature-block h3 {
        font-size: 18px; /* Adjust font size for mobile */
        margin-bottom: 8px; /* Adjust spacing for mobile */
        color: #002244;
        flex-shrink: 0; /* Prevents the title from shrinking */
    }

    .service-feature-block p {
        font-size: 14px; /* Adjust font size for mobile */
        color: #666;
        line-height: 1.4; /* Adjust line height for better spacing */
        flex-grow: 1; /* Allows the paragraph to take up available space */
        margin: 0; /* Remove default margins */
    }

    /* Adjust Swiper Pagination and Navigation for Mobile */
    .swiper-button-next,
    .swiper-button-prev {
        width: 25px; /* Smaller size for mobile */
        height: 25px; /* Smaller size for mobile */
        top: 90%; /* Position closer to the bottom for better reach */
    }

    .swiper-pagination {
        bottom: 5px; /* Position closer to the bottom of the slider */
    }

    .swiper-pagination-bullet {
        width: 8px; /* Smaller size for mobile */
        height: 8px; /* Smaller size for mobile */
        margin: 0 5px; /* Adjust spacing between dots */
    }

    .working-process {
        background-color: #fff;
        padding: 30px 15px; /* Reduce padding for smaller screens */
        text-align: center;
        position: relative;
    }

    .working-process h2 {
        font-size: 26px; /* Reduce font size for smaller screens */
        color: #002244;
        margin-bottom: 15px; /* Slightly increase bottom margin */
    }

    .working-process p {
        color: #8D99AE;
        font-size: 16px; /* Reduce font size for readability on mobile */
        max-width: 90%; /* Reduce maximum width for mobile */
        margin: 0 auto 30px;
        line-height: 1.6;
    }

    .steps {
        display: flex;
        flex-direction: column; /* Stack steps vertically for mobile */
        align-items: center; /* Center-align steps */
        gap: 20px; /* Reduce gap between steps */
        margin-top: 20px;
    }

    .step {
        background-color: #f8f9fa;
        padding: 15px; /* Increase padding for better touch targets */
        border-radius: 10px;
        width: 90%; /* Full width for mobile with some margin */
        max-width: 300px; /* Limit max width to fit well on smaller screens */
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        margin: 0 auto; /* Center-align each step block */
    }

    .step:hover {
        transform: translateY(-5px); /* Reduce hover effect for better UX on mobile */
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    .step-number {
        display: block;
        font-size: 24px; /* Reduce font size for smaller screens */
        color: #007BFF;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .step h3 {
        font-size: 18px; /* Reduce font size for mobile */
        color: #2B2D42;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .step p {
        font-size: 14px; /* Reduce font size for mobile */
        color: #2B2D42;
        line-height: 1.4; /* Slightly reduce line height for better spacing */
    }

    .partners-section {
        background-color: #002244; /* Dark background color */
        color: #ffffff; /* White text color */
        padding: 40px 15px; /* Reduce padding for smaller screens */
        text-align: center;
    }

    .partners-container {
        max-width: 90%; /* Reduce max-width for mobile */
        margin: 0 auto;
    }

    .partners-container h2 {
        font-size: 24px; /* Reduce font size for mobile */
        margin-bottom: 15px; /* Adjust margin for better spacing */
        color: #ffffff;
    }

    .partners-container p {
        font-size: 16px; /* Reduce font size for mobile */
        margin-bottom: 30px; /* Adjust margin for better spacing */
        color: #dcdcdc;
    }

    .partners-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Switch to 2 columns for smaller screens */
        gap: 15px; /* Reduce gap for smaller screens */
        align-items: center;
        justify-items: center;
    }

    .partner-logo {
        padding: 15px; /* Reduce padding for smaller screens */
        width: 80px; /* Adjust square size for smaller screens */
        height: 80px; /* Adjust square size for smaller screens */
        border-radius: 8px; /* Reduce corner radius for smaller size */
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15); /* Adjust shadow for smaller screens */
    }

    .partner-logo img {
        width: 140%; /* Set logo width to 100% */
        height: auto; /* Keep logos in their natural aspect ratio */
        display: block; /* Ensures logos are centered within the container */
    }

    .testimonials-section {
        background-color: #f4f6f9; /* Light background color */
        padding: 30px 15px; /* Reduce padding for smaller screens */
        text-align: center;
    }

    .testimonials-container {
        max-width: 90%; /* Reduce max-width for mobile */
        margin: 0 auto;
    }

    .testimonials-container h2 {
        font-size: 24px; /* Reduce font size for mobile */
        margin-bottom: 20px; /* Adjust margin for better spacing */
        color: #002244; /* Dark blue heading color */
    }

    .testimonials-grid {
        display: flex;
        flex-direction: column; /* Stack cards vertically for mobile */
        gap: 20px; /* Reduce gap between testimonial cards */
        align-items: center; /* Center-align cards */
    }

    .testimonial-card {
        background-color: #ffffff; /* White background for contrast */
        padding: 10px; /* Reduce padding for smaller screens */
        padding-bottom: 10px; /* Reduce padding at the bottom of the card */
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-width: 100%; /* Set maximum width to be responsive */
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
        margin: 0 auto; /* Center-align each testimonial card */
    }

    .testimonial-content p {
        font-size: 14px; /* Font size for mobile */
        color: #555;
        line-height: 1.4; /* Adjust for readability */
        margin-bottom: 15px; /* Reduce margin below the testimonial text */
        font-style: italic;
    }
    
    .testimonial-client {
        display: flex;
        align-items: center;
        margin-top: 5px; /* Reduce the top margin to bring it closer to the testimonial */
    }
    
    .testimonial-client h4 {
        font-size: 16px; /* Adjust font size */
        margin-bottom: 0; /* Ensure no bottom margin */
        color: #002244;
        font-weight: 600;
    }
    
    .testimonial-client span {
        font-size: 12px; /* Adjust font size */
        color: #999;
        margin-left: 5px; /* Add a small space between name and title */
    }

    .testimonial-card:hover {
        transform: translateY(-3px); /* Subtle lift on hover for mobile */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Slightly less shadow on hover for mobile */
    }

    .cta-section {
        background-color: #002244; /* Light grey background */
        color: #ffffff; /* Dark blue text color */
        padding: 30px 15px; /* Reduce padding for smaller screens */
        text-align: center;
    }

    .cta-container {
        max-width: 90%; /* Reduce max-width for mobile */
        margin: 0 auto;
    }

    .cta-button-container {
        text-align: center; /* Center the button container */
        margin: 0 auto; /* Center the container itself */
    }

    .cta-container h2 {
        font-size: 24px; /* Reduce font size for mobile */
        margin-bottom: 15px; /* Adjust margin for better spacing */
        color: #ffffff; /* Dark blue text color */
    }

    .cta-container p {
        font-size: 14px; /* Reduce font size for mobile */
        margin-bottom: 20px; /* Adjust margin for better spacing */
        color: #ffffff; /* Dark blue text color */
    }

    .cta-button {
        display: inline-block;
        padding: 12px 24px; /* Adjust button padding for smaller screens */
        font-size: 14px; /* Reduce font size for button */
        background-color: #ffffff; /* Dark blue background for button */
        color: #002244; /* White text color for button */
        text-decoration: none; /* Remove underline */
        border-radius: 5px; /* Rounded corners */
        font-weight: 600;
        transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
        margin: 10px auto; /* Center the button */
    }

    .location-wrapper {
        flex-direction: column-reverse; /* Stack elements vertically for mobile */
        align-items: center;
        gap: 0;
    }

    .map-container,
    .contact-details {
        width: 100%; /* Full width for mobile */
        min-width: unset; /* Remove minimum width restriction */
        margin-bottom: 0; /* Add space between elements */
        box-sizing: border-box; /* Ensure padding is included in width calculation */
        padding: 10px; /* Add padding inside the containers for better visual spacing */
        background-color: #ffffff; /* White background for a cleaner look */
        border-radius: 8px; /* Rounded corners for the containers */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    }

    .contact-details {
        text-align: center; /* Center-align text */
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .contact-details h3 {
        font-size: 20px; /* Reduce font size for mobile */
        margin-bottom: 10px; /* Adjust margin for better spacing */
    }

    .contact-details p,
    .contact-details ul li {
        font-size: 14px; /* Reduce font size for mobile */
    }

    .footer-container {
        flex-direction: column; /* Stack footer columns vertically */
        align-items: center; /* Center-align columns */
        text-align: center; /* Center-align text */
        gap: 20px; /* Reduce gap between footer columns */
    }

    .footer-column,
    .footer-newsletter {
        width: 100%; /* Full width for mobile */
        max-width: 90%; /* Restrict maximum width for readability */
        margin-bottom: 20px; /* Space between sections */
    }

    .footer h3 {
        font-size: 16px; /* Reduce font size for mobile */
        margin-bottom: 10px; /* Adjust margin for better spacing */
    }

    .footer p,
    .footer a {
        font-size: 13px; /* Reduce font size for mobile */
    }

    .footer-links {
        margin-left: 0; /* Remove left margin for centered alignment */
    }

    .footer-links h3 {
        font-size: 18px; /* Make the "Quick Links" heading slightly larger */
    }

    .footer-links ul li a {
        font-size: 16px; /* Make links below "Quick Links" slightly larger */
    }

    .newsletter-form {
        flex-direction: column; /* Stack email input and button vertically */
        align-items: center; /* Center-align form elements */
        margin-top: 10px;
    }

    .newsletter-form input[type="email"] {
        width: 80%; /* Full width for email input on mobile */
        margin-bottom: 10px; /* Space below the input */
        margin-right: 0; /* Reset margin */
        border-radius: 5px; /* Adjust border-radius */
    }

    .newsletter-form button {
        width: 50%; /* Adjust button width for mobile */
        margin-right: 0; /* Reset margin */
    }

    .social-icons {
        justify-content: center; /* Center-align social icons */
        gap: 40px; /* Reduce gap for better spacing on mobile */
    }

    .social-icons a {
        font-size: 24px; /* Increase the size of the social icons */
    }

    .footer-bottom {
        font-size: 12px; /* Keep small font size */
        padding-top: 15px; /* Adjust padding */
    }

    /* Remove About Us Section in Footer */
    .footer-about {
        display: none; /* Hide the "About Us" section */
    }
}

