/* ========== फूटर ========== */
.footer {
    background-color: #232f3e;
    color: white;
    margin-top: 50px;
}

.back-to-top {
    background-color: #37475a;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: #485b6e;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 40px;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-col a {
    color: #dddddd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    background-color: #131921;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #3a4a5c;
    font-size: 13px;
    color: #cccccc;
}