/* RESET & LAYOUT */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.souharda-footer {
    background-color: #556C76 !important;
    color: #ffffff;
    padding-bottom: 40px;
    font-family: 'Mukta', sans-serif;
}

.souharda-footer .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.gold-accent {
    color: #FFD575 !important;
}

.footer-address {
    font-size: 15px;
    opacity: 0.9;
}

/* CONTACT LINKS (Forced White & Readable) */
.contact-link {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-link:hover {
    color: #FFD575 !important;
}

.contact-link i {
    margin-right: 5px;
}

/* SOCIAL ICONS (No Bullets, Horizontal Row) */
ul.footer-social-box {
    list-style: none !important;
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 30px 0 0 0 !important;
}

ul.footer-social-box li {
    list-style-type: none !important;
    display: inline-block !important;
    margin: 0 12px !important;
    padding: 0 !important;
}

ul.footer-social-box li a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden; /* For the MecIndia Slide Effect */
    z-index: 1;
}

ul.footer-social-box li a i {
    position: relative;
    z-index: 3;
    font-size: 18px;
}

/* MecIndia Slide Effect */
ul.footer-social-box li a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s ease;
    z-index: 2;
}

ul.footer-social-box li a:hover::before {
    top: 0;
}

/* Social Hover Colors */
.fb:hover::before { background: #3b5998; }
.tw:hover::before { background: #1da1f2; }
.ig:hover::before { background: #e1306c; }
.loc:hover::before { background: #FFD575; }
.loc:hover i { color: #556C76 !important; }

/* QR CODES */
.qr-footer {
    width: 80px;
    height: 80px;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
    margin-top: 10px;
    display: inline-block;
}

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 30px 0;
}