/* ============================
   Corporate Footer Styling
   ============================ */

.souharda-footer {
    background: #556C76;
    color: #fff;
    padding-top: 32px;
    padding-bottom: 40px;
    font-family: 'Mukta', 'Ubuntu', Arial, sans-serif;
    position: relative;
}

/* Wave */
.footer-wave {
    width: 100%;
    height: 80px;
    overflow: hidden;
}
.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* Title */
.footer-title {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Address */
.footer-address {
    color: #E8ECEF;
    font-size: 15px;
    line-height: 1.7;
}

.contact-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.contact-link:hover {
    text-decoration: underline;
    color: #FFD575;
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.10);
    margin: 24px 0;
}

/* Social Icons */
ul.footer-icon {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}
ul.footer-icon li {
    display: inline-block;
    margin: 0 8px;
}
ul.footer-icon li a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-align: center;
    padding-top: 12px;
    display: block;
    overflow: hidden;
    border: 2px solid #ffffff44;
    position: relative;
    transition: 0.4s ease;
}
ul.footer-icon li a i {
    font-size: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}
ul.footer-icon li a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: top 0.4s ease;
    z-index: 1;
}

/* Hover fill colors */
ul.footer-icon li:nth-child(1) a::before { background: #3b5999; } /* FB */
ul.footer-icon li:nth-child(2) a::before { background: #00acee; } /* Twitter */
ul.footer-icon li:nth-child(3) a::before { background: #0077b5; } /* LinkedIn */
ul.footer-icon li:nth-child(4) a::before { background: #dd4b39; } /* Instagram */
ul.footer-icon li:nth-child(5) a::before { background: #db4437; } /* Google Maps */

ul.footer-icon li a:hover::before {
    top: 0;
}
ul.footer-icon li a:hover i {
    transform: rotateY(360deg);
    color: #222;
}

/* Office Boxes */
.footer-offices {
    margin-top: 25px;
}
.office-col {
    padding: 12px;
}
.office-name {
    color: #FFD575;

}
.office-addr {
    color: #E7EBED;
    font-size: 14px;
    line-height: 1.6;
}

/* QR Code */
.qr-small {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 6px;
    margin-top: 8px;
    border: 2px solid #fff;
    object-fit: cover;
    transition: transform .25s ease, box-shadow .25s ease;
}
.qr-small:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Footer Copy */
.footer-copy {
    color: #ffffffcc;
    font-size: 13px;
    margin-top: 18px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(37,211,102,0.2);
    transition: 0.25s ease;
}
.whatsapp-float i {
    font-size: 22px;
}
.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(37,211,102,0.32);
}

/* =========================
   QR Code Visual Styling (Souharda Footer)
   ========================= */

.souharda-footer .qr-small {
  display: block;
  width: 100px;
  height: 100px;
  margin: 12px auto 4px;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 6px;
  transition: all 0.3s ease-in-out;
}

.souharda-footer .qr-small:hover {
  transform: scale(1.07);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.qr-caption {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  text-align: center;
  letter-spacing: 0.3px;
}

#footer a {
  text-decoration: none !important;
}

#footer a:hover {
  text-decoration: none !important;
}
@media (max-width: 576px) {
  .souharda-footer .qr-small {
    width: 80px;
    height: 80px;
    margin-top: 8px;
  }
}


/* Mobile */
@media (max-width: 767px) {
    ul.footer-icon li a { width: 48px; height: 48px; padding-top: 10px; }
    .qr-small { width: 54px; height: 54px; }
    .office-col { padding: 8px; }
    .whatsapp-float { width: 48px; height: 48px; right: 12px; bottom: 12px; }
}
