﻿/* 1. Footer Main Style */
.footer {
    background: linear-gradient(145deg, #0056b3 0%, #002d5f 100%); 
    padding: 50px 0 20px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-radius: 40px 40px 0 0;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
}

/* 2. Grid Layout */
.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

/* --- Left Side: Logo & Address --- */
.footer-left {
    flex: 1 1 300px;
}

.footer-left img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-left address {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-style: normal;
}

/* --- Center: Quick Links --- */
.footer-center {
    flex: 1 1 200px;
    text-align: center;
}

.footer-center h4 {
    color: #fcfa05; /* Yellow Title */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin-bottom: 10px;
}

.footer-center ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-center ul li a:hover {
    color: #fcfa05;
    padding-left: 5px;
}

/* --- Right Side: Contact & Social --- */
.footer-right {
    flex: 1 1 300px;
    text-align: right;
}

.footer-right h4 {
    color: #fcfa05;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-contact-item {
    margin-bottom: 10px;
    display: block;
}

.footer-contact-item i {
    color: #fcfa05;
    margin-left: 10px;
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    background: #ffffff;
    color: #0056b3;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    background: #fcfa05;
    transform: translateY(-3px);
}

/* --- Copyright --- */
.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .footer-info { text-align: center; justify-content: center; }
    .footer-right { text-align: center; }
    .footer-social-icons { justify-content: center; }
}