.hover-scale,.hover-scale-1 {
  transition: transform 0.3s ease !important;
}

.hover-scale:hover {
  transform: scale(2) !important;
}

.hover-scale-1:hover{
     transform: scale(1.1) !important;
}
/* ===== Base Ruby Display ===== */
.d-ruby {
  display: ruby;
  ruby-position: over;
}

/* Ruby text */
.d-ruby rt {
  display: ruby-text;
  font-size: 0.6em;
  color: #6c757d;
}

/* ===== Alignment Fix (IMPORTANT) ===== */
.ruby-center {
  display: inline-flex;
  align-items: center;
}

/* ===== Responsive Ruby Display ===== */

/* SM ≥576px */
@media (min-width: 576px) {
  .d-sm-ruby {
    display: ruby;
  }
}

/* MD ≥768px */
@media (min-width: 768px) {
  .d-md-ruby {
    display: ruby;
  }
}

/* LG ≥992px */
@media (min-width: 992px) {
  .d-lg-ruby {
    display: ruby;
  }
}

/* XL ≥1200px */
@media (min-width: 1200px) {
  .d-xl-ruby {
    display: ruby;
  }
}

/* XXL ≥1400px */
@media (min-width: 1400px) {
  .d-xxl-ruby {
    display: ruby;
  }
}


/* Footer Style */
.footer {
    background: linear-gradient(135deg, #83121a, #ff6a00);
    color: #fff;
    font-size: 15px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}

.footer ul li a:hover {
    opacity: 1;
    padding-left: 6px;
}

.footer .social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #fff;
    transition: 0.3s;
}

.footer .social a:hover {
    background: #fff;
    color: #ff6a00;
}

.map iframe {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 12px;
    font-size: 14px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

/* Title */
.reach-us-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Gradient underline (strong → light) */
.reach-us-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 140px;
    height: 3px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.7) 40%,
            rgba(255, 255, 255, 0.3) 70%,
            rgba(255, 255, 255, 0) 100%);
}