﻿.nav-link:hover {
    color: red !important;
}

#navbarSupportedContent a {
    color: black;
    font-size: 10px;
}

body {
    background-color: white;
}

.btn-login {
    background-color: sandybrown;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
form-group
    .btn-login:hover {
        background-color: #e69500;
        color: white;
    }

.navbar-brand {
    color: sandybrown !important;
}

.nav-link.active {
    font-weight: bold;
}

/* Footer */
.footer-container-wrapper {
    background-color: #f8f9fa;
    padding: 5px 10px;
    font-size: 14px;
    color: black;
}

.footer-nav h4, .updated h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-nav ul, .bottom-pane-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-nav ul li a,
    .bottom-pane-links li a,
    .footer-link a,
    ul a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-nav ul li a:hover,
        .bottom-pane-links li a:hover,
        .footer-link a:hover,
        ul a:hover {
            color: blue;
            text-decoration: underline;
        }

.updated a {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    color: #000;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

/* Social links */
.social-links img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

    .social-links img:hover {
        transform: scale(1.1);
    }

.social-links i {
    font-size: 20px;
    color: #730218;
    padding: 0px;
    transition: 0.3s;
}

    .social-links i:hover {
        color: #f0c040;
    }

.social-links.list-inline {
    display: flex !important;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap; /* mobile पर wrap हो सके */
}

    .social-links.list-inline li {
        display: inline-block !important;
        margin: 0 5px;
    }

/* Footer link cleanup */
.footer-link {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px 0;
}

/* Mobile responsive reset */
@media (max-width: 767px) {
    .col-md-2 ul {
        display: block !important;
        padding-left: 20px;
    }

        .col-md-2 ul li {
            display: block !important;
        }
}
/* Footer Social Icons Always in Row */
footer .social-links,
footer .social-links.list-inline {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    justify-content: center; /* center में रखना हो तो */
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

    footer .social-links li {
        display: inline-block !important;
        margin: 0 5px !important;
    }
