/* --- Footer --- */
.site-footer {
    background-color: #121826; /* dark-color */
    color: #aeb8c4;
    padding: 60px 0 20px 0;
    margin-top: 40px;
}

/* Footer कंटेनर में दोनों तरफ बराबर गैप देने के लिए */
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px !important; 
    padding-right: 30px !important;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 बराबर कॉलम */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: #ffffff; /* white-color */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-widget p, .footer-widget ul {
    font-size: 0.95rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #aeb8c4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #ffffff; /* white-color */
}

.copyright-text {
    text-align: center;
    border-top: 1px solid #3e4a5e;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* --- Responsive for Footer --- */
@media (max-width: 768px) {
    .site-footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .footer-widgets {
        grid-template-columns: 1fr; /* मोबाइल में एक के नीचे एक */
    }
}