/* Footer Styles */
.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #1d1d1d;
    color: #ffffff;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://images.pexels.com/photos/416405/pexels-photo-416405.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.footer-border {
    height: 2px;
    background-color: #0056d2;
    width: 100%;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-section {
    flex: 1;
    padding: 0 15px;
    max-width: 350px;
}

/* Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #0056d2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
    background: transparent;
}

.logo-img {
    width: 200px;
    height: 60px;
}

.logo-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ff9800;
    border-radius: 50%;
    top: 0;
    right: 0;
    transform: translate(0, -25%);
}

.company-name {
    font-size: 18px;
    font-weight: bold;
}

.footer-description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #0056d2;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #004bb9;
}

.social-icon i {
    font-size: 14px;
}

/* Footer Headings */
.footer-heading {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.location-heading {
    margin-top: 30px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0056d2;
}

/* Contact Info */
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-info i {
    margin-right: 10px;
    color: #0056d2;
}

.location-info,
.landmark-info {
    font-size: 14px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

/* Copyright Bar */
.copyright-bar {
    position: relative;
    z-index: 1;
    background-color: #1a1a1a;
    text-align: center;
    padding: 15px 0;
    width: 100%;
}

.copyright-bar p {
    font-size: 14px;
    color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}
