/* Footer Responsive Styles */
@media (max-width: 768px) {
    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-item {
        text-align: center;
        margin-bottom: 20px;
    }

    .col-12.footer-item iframe {
        width: 100%;
        height: 200px;
    }

    .footer .col-md-4 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer .col-12 {
        text-align: center;
    }

    .footer-item h4 {
        font-size: 1.2rem;
    }

    .footer-item p {
        font-size: 0.9rem;
    }

    .footer-item a {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .footer .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer .col-xl-4 {
        margin-bottom: 0;
    }

    .footer .col-md-4 {
        padding: 15px;
    }

    .footer-item iframe {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .footer .col-xl-4 {
        padding: 0 20px;
    }
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    justify-content: center;
}

.marquee-text {
    display: inline-block;
    animation: marquee 15s linear infinite;
    font-size: small;
    color: black;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Footer Logo Styling */
.footer-logo {
    width: 150px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        width: 100px;
    }
}

/* Hero & Service Titles */
.hero-title {
    font-size: xx-large;
    text-align: left;
}

.service-title {
    font-size: 28px;
    text-align: left;
}

.services-heading {
    font-size: xx-large;
}

/* Icons */
.icon-mission,
.icon-vision {
    font-size: 24px;
    color: #16ca7c;
}

.footer-icon {
    margin-top: 10px;
}

/* Form Elements */
.message-textarea {
    height: 75px;
}

.website-link {
    font-style: italic;
}

/* Footer Map */
.footer-map {
    height: 200px;
    border: 0;
}

/* Spinner */
.spinner-size {
    width: 3rem;
    height: 3rem;
}

/* Services Container */
.services-container {
    max-width: 800px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}
