/* Footer Styles */

.footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    background-color: #222;
    color: white;
    padding: 1.5rem 2.9rem;
    width: 100%;
    box-sizing: border-box;
    background-color: #176EA2;
    /* Moved from inline style */
    font-size: 12px;
}

a {
    text-decoration: none;
}



.footer img {
    margin-top: 0px;
    max-width: 110px;
    height: auto;
    padding-left: 9px;
}

.footer .company-info {
    flex: 1;
    padding: 0 20px;
    min-width: 350px;
    margin-bottom: 20px;
    /* Custom property to visually reduce the height */
    position: relative;
}

.footer .company-info::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5%;
    /* Adjust to center the reduced border */
    height: 70%;
    /* Reduced height */
    width: 1px;
    background-color: rgb(194, 194, 194);
}

.footer .services {
    flex: 1;
    padding: 0 20px;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer .company-info {
    text-align: left;
}

.footer .company-info p {
    font-size: 12px;
}

.footer .social-icons {
    margin-top: 0px;
    padding-top: 0px;
    display: flex;
    gap: 0px;
    margin-left: -5px;
    /* Adjust this value to control the space between icons */
}

.footer .social-icons a {
    display: inline-block;
}

.footer .social-icons img {
    width: 24px;
    /* Fixed width instead of percentage */
    height: 24px;
    /* Fixed height for consistency */
    margin: 0;
    /* Remove any default margins */
    padding: 0;
    /* Remove any default padding */
}

.footer .services {
    text-align: left;
}

.footer h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.desktop-services-heading {
    margin-bottom: 5px;
    font-size: 16px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 5px;
}

.footer ul li a {
    color: white;
    text-decoration: none;
}

/* Mobile Services Heading - Hidden by default */
.mobile-services-heading {
    display: none;
}

.myshadow {
    text-shadow: 1px 1px 1px rgba(42, 41, 41, 0.5)
}



/* Responsive Styles */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .company-info,
    .footer .services {
        text-align: center;
        padding: 0;
    }

    .footer .social-icons {
        justify-content: center;
    }

    .footer .logo {
        margin-bottom: 30px;
    }

    .mobile-services-heading {
        display: block;
        margin-bottom: 15px;
    }

    .footer .company-info p {
        font-size: 15px;
    }

    .desktop-services-heading {
        display: none;
    }
}

@media (max-width: 480px) {

    .footer .company-info,
    .footer .services {
        min-width: 100%;
    }

    .footer .social-icons a {
        font-size: 16px;
    }

    .mobile-services-heading {
        display: block;
        margin-bottom: 15px;
    }

    .desktop-services-heading {
        display: none;
    }
}