/* Footer Styles */

.footer-section {

    background-color: #001538;

    color: #fff;

    padding: 80px 0 0;

    position: relative;

}



.footer-logo img {

    max-height: 100px;

    height: 100px;

    filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(2%) hue-rotate(300deg) brightness(116%) contrast(100%);

    width: 210px;

    object-fit: cover;

}



.footer-section h3 {

    color: #fff;

    font-size: 16px;

    margin-bottom: 25px;

    letter-spacing: 1px;

}



.footer-section p {

    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 20px;

    line-height: 1.6;

}



/* Social Links */

.social-links {

    display: flex;

    gap: 15px;

}



.social-links a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    color: #fff;

    font-size: 20px;

    transition: all 0.3s ease;

}



.social-links a:hover {

    background: var(--primary-color);

    transform: translateY(-3px);

}



/* Footer Links */

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li {

    margin-bottom: 12px;

}



.footer-links li a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: all 0.3s ease;

}



.footer-links li a:hover {

    color: #fff;

    padding-left: 5px;

}



/* Contact Info */

.contact-info {

    list-style: none;

    padding: 0;

    margin: 0;

}



.contact-info li {

    display: flex;

    gap: 15px;

    /* margin-bottom: 20px; */

}



.contact-info li i {

    font-size: 22px;

    color: #fff;

    line-height: normal;

    height: 36px;

    min-height: 36px;

    width: 36px;

    min-width: 36px;

    background: rgb(255 255 255 / 10%);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

}



.contact-details {

    flex: 1;

}



.contact-details span {

    display: block;

    color: var(--primary-color);

    margin-bottom: 5px;

    font-size: 14px;

    color: rgb(255 255 255 / 70%);

}



.contact-details a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: color 0.3s ease;

}



.contact-details a:hover {

    color: #fff;

}



.contact-details p {

    margin: 0;

}



/* Copyright Bar */

.copyright-bar {

    background: rgba(0, 0, 0, 0.2);

    padding: 20px 0;

    margin-top: 60px;

}



.copyright-bar p {

    margin: 0;

    font-size: 14px;

}



.copyright-bar a {

    color: #fff;

    text-decoration: none;

    transition: color 0.3s ease;

    font-size: 14px;

}



.copyright-bar a:hover {

    color: var(--primary-color);

}



/* Responsive Styles */

@media (max-width: 991px) {

    .footer-section {

        padding: 60px 0 0;

    }

}



@media (max-width: 767px) {

    .copyright-bar .text-md-end {

        text-align: left !important;

        margin-top: 15px;

    }

}