/* 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  */

/* Gold Rate Redesign */

.rate-section {
  /* background: url('../images/home-2.png') no-repeat center center; */
  background: linear-gradient(135deg, #cb152d, #a11927);
  background-size: cover;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.rate-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.rate-section .container {
  position: relative;
  z-index: 2;
}

.rate-title {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.rate-subtitle {
  font-size: 18px;
  color: #f3b234;
  font-weight: 500;
  margin-bottom: 25px;
}

.rate-divider {
  width: 80px;
  height: 4px;
  background: #cb152d;
  border-radius: 2px;
}

.rate-box {
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rate-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.rate-box h5 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.rate-box h3 {
  font-size: 32px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.rate-info {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 10px;
}

/* Gold Styling */
.gold-box {
  background: linear-gradient(135deg, #f3b234 0%, #d49a2a 100%);
  color: #1a1a1a;
}

/* Silver Styling */
.silver-box {
  background: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 100%);
  color: #1a1a1a;
}

@media (max-width: 991.98px) {
  .rate-title {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .rate-section {
    padding: 40px 0;
    text-align: center;
    min-height: auto;
  }

  .rate-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .rate-box {
    padding: 15px 10px !important;
  }

  .rate-box h3 {
    font-size: 20px !important;
  }

  .rate-box h5 {
    font-size: 22px !important;
  }

  .rate-info {
    font-size: 11px;
  }
}

@media (max-width: 575.98px) {
  .rate-title {
    font-size: 24px;
  }

  .rate-section {
    padding: 30px 0;
  }

  .rate-box h3 {
    font-size: 22px !important;
  }

  .rate-box {
    border-radius: 12px;
    padding: 12px 8px !important;
  }

  .rate-box h5 {
    font-size: 20px !important;
  }

  .rate-info {
    font-size: 10px;
    margin-top: 5px;
  }
}


.gallery-item {
  background-color: #ffffff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 330px;
}

.gallery-itemInner {
  width: 100%;
  height: 100%;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.footer-desc {
  font-size: 16px;
  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: 100px;
  gap: 10px !important;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

@media (min-width: 426px) and (max-width: 768px) {
  .footer-gallery-img {
    height: 100px;
  }
}

.footer-gallery-img:hover {
  transform: scale(1.05);
}

.footer-policy-links a {
  color: #e7e7e7;
  font-size: 16px;
  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: 25px !important;
  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;
  }

  /* Center align footer bottom on tablets - user request */
  .footer-bottom_nav .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .footer-bottom_nav .text-lg-end {
    text-align: center !important;
    margin-top: 15px !important;
  }

}

/* Tablet & Mobile */
@media (max-width: 991.98px) {
  .hiraola-footer_area .row>div {
    padding-top: 10px !important;
  }
}

.testimonial-head {
  color: var(--dt-platina-yshopify-com-pages-about-us-1920-x-1080-default-mine-shaft, #595959);
  font-family: 'Jost';
  font-size: 28px !important;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase !important;
}

/* Restore Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6,
.footer-heading,
.footer-menu-head {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !important;
  font-size: 30px !important;
}

p,
.footer-desc,
.footer-menu,
.copyright,
.footer-policy-links a,
.footer-contact-item span {
  font-family: 'Jost', sans-serif !important;
  font-size: 18px !important;
}

/* Exclusions for Hero Banners */
.about-hero h1,
.about-hero h2,
.about-hero h3,
.about-hero h4,
.about-hero h5,
.about-hero h6,
.about-hero p,
.laptop-hero,
.mobile-hero {
  width: 100%;
  overflow: hidden;
}

.laptop-hero .carousel-item img,
.mobile-hero .carousel-item img {
  width: 100%;
  height: auto;
}

/* Default: Show laptop-hero, Hide mobile-hero */
.laptop-hero {
  display: block;
}

.mobile-hero {
  display: none;
}

/* Tablet view */
@media (min-width: 769px) and (max-width: 1024px) {
  .laptop-hero .carousel-item img {
    height: 500px;
    /* object-fit: cover; */
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .laptop-hero {
    display: none;
  }

  .mobile-hero {
    display: block;
  }

  .mobile-hero .carousel-item img {
    height: 400px;
    object-fit: cover;
  }

  /* Hero Banner Title and Breadcrumb adjustments */
  .breadcrumb-area .breadcrumb-content h2 {
    font-size: 24px !important;
  }

  .breadcrumb-area .breadcrumb-content ul li,
  .breadcrumb-area .breadcrumb-content ul li a {
    font-size: 14px !important;
  }
}

/* Footer Gallery Gap Refinement */
.footer-gallery-grid .row {
  --bs-gutter-x: 10px !important;
  --bs-gutter-y: 10px !important;
}

/* Footer Gallery Lightbox Refinement */
.footer-gallery-grid a {
  display: block;
  text-decoration: none;
  outline: none;
}

/* Contact Page Map Responsiveness */
.google-map-section iframe {
  width: 100%;
  height: 450px;
}

@media (max-width: 768px) {
  .google-map-section iframe {
    height: 300px;
  }
}

/* Contact Info Icons Refinement */
.single-contact-block h4 i {
  color: #cb152d;
  font-size: 22px;
  margin-right: 12px;
  width: 25px;
  /* Ensures consistent alignment */
  text-align: start;
  transition: transform 0.3s ease;
}

.single-contact-block:hover h4 i {
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .single-contact-block h4 i {
    font-size: 18px;
    margin-right: 8px;
  }
}

/* Gallery Tab Styling */
.gallery-tab-btn {
  border: 1px solid #cb152d !important;
  color: #cb152d !important;
  padding: 10px 25px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  font-size: 14px !important;
  letter-spacing: 1px;
}

.gallery-tab-btn.active {
  background-color: #cb152d !important;
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(151, 22, 77, 0.3);
}

.gallery-tab-btn:hover:not(.active) {
  background-color: rgba(151, 22, 77, 0.05) !important;
  transform: translateY(-2px);
}

.gallery-filter-item {
  transition: all 0.4s ease;
}

/* Filter Item Hover */
.gallery-filter-item .gallery-item {
  border: 1px solid #eee;
  padding: 10px;
  background: #fff;
}

.gallery-filter-item .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.text-tc {
  font-size: 18px !important;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

.title-tc {
  font-size: 26px !important;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.footer-bottom-menu {
  font-size: 14px !important;
  font-family: 'Jost' !important;
  font-weight: 400 !important;
  color: #e7e7e7 !important;
}

.footer-bottom-menu a {
  font-size: 14px !important;
  font-family: 'Jost' !important;
  font-weight: 400 !important;
}


/* Mobile/Tablet Responsive Adjustments (Consolidated Fix) */
@media (max-width: 991px) {
  /* Policy Pages */
  .title-tc { font-size: 20px !important; }
  .text-tc { font-size: 16px !important; }

  /* Footer Description and Menus */
  .footer-desc,
  .footer-menu,
  .footer-menu span,
  .footer-contact-item,
  .footer-contact-item a,
  .footer-contact-item span {
    font-size: 16px !important;
  }
}