/* Footer Styling */
       @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
        @font-face {
            font-family: 'RobotFlex';
            src: url('/Assets/font/RobotoFlex-VariableFont_GRAD\,XOPQ\,XTRA\,YOPQ\,YTAS\,YTDE\,YTFI\,YTLC\,YTUC\,opsz\,slnt\,wdth\,wght.ttf');
            font-weight: normal;
            font-style: normal;
        }
.footer {
    background-color: #1F2235;
    color: #000;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}
.footer-row{
    display: flex;
    justify-content: space-between;
    padding: 40px;
}
.footer .footer-logo img {
    max-width: 200px;
    max-height: 100px;
    margin-bottom: 15px;
}

.footer .footer-section h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.footer .footer-section p {
    font-size: 20px;
    margin: 5px 0;
    color: #fff;
    font-family: 'RobotoFlex';
}

.footer .footer-section a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.footer .footer-section a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    margin-right: 15px;
    font-size: 30px;
    color: #fff;
}

.footer .social-icons a:hover {
    color: #FFA132;
}

.footer .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 10px;
}
.bottom-footer {
    background-color: #1F2235;
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-family: 'RobotoFlex';
}
.footer .social-icons {
    display: flex;
    justify-content: center;
}

/* Responsive Layout Tweaks */
@media (max-width: 992px) {
    .footer .footer-logo img {
        max-width: 180px;
    }

    .footer .footer-section {
        margin-bottom: 30px;
    }

    .footer .social-icons a {
        font-size: 24px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .footer .footer-logo img {
        max-width: 150px;
    }

    .footer .footer-section {
        text-align: center;
    }

    .footer .social-icons {
        margin-top: 15px;
    }

    .footer .social-icons a {
        font-size: 22px;
    }
}
/* conatct list */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #FFF;

}

.contact-list li {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-list li strong {
    font-weight: bold;
    font-size: 15px;
}
.contact-list li a:hover {
    color: #FFA132;
    text-decoration: underline; 
}
@media (max-width: 576px) {
    .footer .footer-section h5 {
        font-size: 16px;
    }

    .footer .footer-section p {
        font-size: 13px;
    }

    .footer .social-icons a {
        font-size: 18px;
        margin-right: 10px;
    }
}