/* style.css - सिर्फ फुटर का स्टाइल */

/* --- Footer --- */
.site-footer {
    background-color: #121826; /* dark-color */
    color: #aeb8c4;
    padding: 60px 0 20px 0;
    margin-top: 40px;
}
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    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) {
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}