﻿/* Footer Styles */
.footer {
    background-color: #0f419b; /* Footer background color */
    color: #fff;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-right {
    flex: 1;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stack the address and logo vertically */
    padding-right: 20px;
    align-items: flex-start; /* Align items to the start by default */
}

    .footer-left .address {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .footer-left .logo {
        margin-top: 10px; /* Add some spacing between address and logo */
        align-self: flex-start; /* Keep it left-aligned on larger screens */
    }

        .footer-left .logo img {
            height: 60px; /* Adjust the logo size as necessary */
            width: auto;
        }

    .footer-left .footer-links {
        list-style: none;
        padding: 0;
    }

        .footer-left .footer-links li {
            margin-bottom: 10px;
        }

        .footer-left .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

            .footer-left .footer-links a:hover {
                color: #ffc107; /* Highlight color on hover */
            }

.footer-right iframe {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

    .footer-bottom p {
        margin: 0;
    }

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-left {
        align-items: center; /* Center the content in mobile view */
    }

        .footer-left .logo {
            margin-top: 0; /* Remove extra spacing on mobile */
            margin-bottom: 10px; /* Add some space below the logo */
            align-items: center;
            display: none; /* Hide the logo in mobile view */
        }

            .footer-left .logo img {
                height: 50px; /* Adjust logo size for mobile */
                align-items: center;
            }

    .footer-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-right iframe {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }

    .footer-center {
        margin-bottom: 20px;
    }

    .footer-left {
        text-align: center;
    }
}

.footer-center {
    flex: 1;
    text-align: left; /* Left-align the list */
}

.footer-links {
    list-style-type: disc; /* Use default bullet style */
    padding-left: 20px; /* Add some left padding for the list */
    color: #ffc107; /* Yellow text color */
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ffc107; /* Yellow text color for the links */
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #fff; /* Change text color to white on hover */
        }
