/* Marquee text  */

.topbar-section {
  background: #97164d;
  overflow: hidden;
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10px;
  position: relative;
}

.topbar-marquee-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.topbar-marquee {
  white-space: nowrap;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  position: absolute;
  right: -100%;
  animation: scrollRightToLeft 15s linear infinite;
}

.silver-text {
  color: #ffffff;
  margin-left: 40px;
}

@keyframes scrollRightToLeft {
  0% {
    right: -100%;
  }

  100% {
    right: 100%;
  }
}

.topbar-social {
  display: flex;
  gap: 15px;
}

.topbar-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.topbar-social a:hover {
  background: #ffffff;
  color: #97164d;
}

@media (max-width: 768px) {
  .topbar-marquee {
    font-size: 14px;
  }

  .topbar-social {
    gap: 10px;
  }
}


/* Marquee text end  */

/* Menues */
.menu-main li a:hover {
  color: #d2142d !important;
  /* Gold hover color */
}

/* Gold underline animation */
.menu-main li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ffcc66;
  transition: width 0.3s ease;
}

.menu-main li a:hover::after {
  width: 100%;
}

/* ===== Active Menu ===== */
.menu-main li a.active {
  color: #cb152d !important;
  /* Red color */
}

.menu-main li a.active::after {
  width: 100%;
  background: #cb152d !important;
  /* Red underline */
}

/* Menues end  */

/* Mobile icon  */
.contact-box {
  /* display: flex; */
  align-items: center;
}

.phone-link {
  color: black !important;
  display: flex;
  gap: 8px;
  text-decoration: none;
  padding: 0px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.phone-link i {
  font-size: 16px;
  color: #ffffff;
  background-color: #cb152d;
  border-radius: 20px !important;
  padding: 8px;
}

.phone-link:hover {
  color: #cb152d !important;
}

/* Hide number on mobile */
@media (max-width: 768px) {

  .phone-link {
    padding: 5px 10px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
  }

  .phone-number {
    display: none;
  }

}

/* Mobile icon end  */

/* Marquee Centering */
.gold-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.marquee-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.gold-rate {
  width: 60%;
  /* Center the marquee area */
  margin: 0 auto;
  color: #fff;
  font-weight: 500;
}

@media (min-width: 992px) {

  .gold-rate {
    margin: 0;
    /* Remove center */
    max-width: 100%;
    /* Keep your width */
    width: 100%;
    /* Let it size naturally */
    float: left;
    /* Align properly */
  }

}

.img-footer {
  border-radius: 5px;
}

/* Gold Rate */

.rate-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.rate-box:hover {
  transform: translateY(-6px);
}

.rate-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #cb152d;
  margin-bottom: 15px;
}

.rate-main {
  font-size: 26px;
  font-weight: 700;
  color: #ffba53;
  margin-bottom: 5px;
}

.rate-sub {
  font-size: 14px;
  color: #777;
}

/* Gold rate end  */

.rate-section {
  background: url('../images/home-2.png') no-repeat bottom center;
  background-size: cover;
  min-height: 200px;
  position: relative;
  display: flex;
  align-items: center;
}

.rate-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.rate-section .container {
  position: relative;
  z-index: 2;
}

.rate-box {
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: 0.4s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.rate-box:hover {
  transform: translateY(-8px);
}

/* Gold Styling */
.gold-box {
  background: linear-gradient(135deg, #F4B73E, #E6A429);
  color: #222;
}

/* Silver Styling */
.silver-box {
  background: linear-gradient(135deg, #D6D6D6, #AFAFAF);
  color: #222;
}

/* Footer Redesign Styles */
.footer-desc {
  font-size: 16.691px;
  color: #e7e7e7;
  line-height: 24px;
}

.footer-contact-item a {
  color: #e7e7e7;
  font-size: 16.691px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact-item a:hover {
  color: #e7e7e7;
  padding-left: 5px;
}

.footer-gallery-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.footer-gallery-img:hover {
  transform: scale(1.05);
}

.footer-policy-links a {
  color: #e7e7e7;
  font-size: 16.691px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-policy-links a:hover {
  color: #e7e7e7;
}

.hiraola-footer_area .footer-widgets_title h6.footer-menu-head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e7e7e7;
  position: relative;
  padding-bottom: 10px;
}

.hiraola-footer_area .footer-widgets_title h6.footer-menu-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #e7e7e7;
}

/* Adjust social icons in new column */
.hiraola-social_link ul {
  justify-content: flex-start;
  padding: 0;
}

.hiraola-social_link li {
  margin-right: 10px;
}

/* Tablet only (Bootstrap md range) */
@media (min-width: 768px) and (max-width: 991.98px) {

  .footer-bottom_nav,
  .footer-bottom_nav a,
  .footer-bottom_nav span,
  .footer-bottom_nav .copyright,
  .footer-policy-links {
    font-size: 14px !important;
  }

}