/*footer section css*/
/* --- Global Footer Styles --- */
.main-footer {
    background-color: #001f3f; /* Dark Blue */
    color: #ecf0f1;
    padding: 80px 0 30px;
    border-top: 5px solid #C5A059; /* Gold Accent */
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 1;
}

.footer-heading {
    color: #C5A059;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #C5A059;
    transform: translateX(5px);
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #C5A059;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #ffffff;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.7;
    text-align: center;
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
        text-align: center;
    }
    .footer-links a:hover {
        transform: none;
    }
    .support-card {
        text-align: left; 
    }
}