/* General Footer Styles */
.footer {
    background-color: #086060;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

/* Footer Section Styling */
.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-section a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

/* Hover effect for links */
.footer-section a:hover {
    color: white;
}

/* Contact Links Styling */
.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 220px;
}

/* Icons Styling */
.social-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}



@media screen and (max-width: 1024px) {
    .footer-section a {
        font-size: 33px;
    }
    .contact-links {
        flex-direction: row;
        gap: 150px;
    }
}

@media screen and (max-width: 992px) {
    .contact-links {
        
        gap: 110px;

    }
    .footer-section a {
        font-size: 29px;
    }

}



/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 1.3rem;
    }

    .footer-section a {
        font-size: 23px;
        color: white;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
    .contact-links {
        gap: 120px;
    }
}
@media screen and (max-width: 600px) {
    .contact-links {
        flex-direction: row;
        gap: 45px;
    }
}

@media screen and (max-width: 580px) {
    .contact-links {
        flex-direction: row;
        gap: 45px;
    }
}

@media screen and (max-width: 540px) {
    .contact-links {
        flex-direction: row;
        gap: 45px;
    }
}
@media screen and (max-width: 500px) {
    .contact-links {
        flex-direction: row;
        gap: 35px;
    }
}

@media screen and (max-width: 480px) {
    .footer-section h4 {
        font-size: 1.2rem;
    }

    .contact-links {
        flex-direction: row;
        gap: 25px;
    }

    .footer-section a {
        font-size: 18px;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 391px) {
    .contact-links {
        flex-direction: row;
        gap: 14px;
    }

    .footer-section a {
        font-size: 18px;
    }
}

@media screen and (max-width: 361px) {
    .contact-links {
        flex-direction: row;
        gap: 20px;
    }

    .footer-section a {
        font-size: 13px;
    }
}

@media screen and (max-width: 320px) {
    .contact-links {
        flex-direction: row;
        gap: 16px;
    }

    .footer-section a {
        font-size: 13px;
    }
}




