/* Custom styles for this template*/

body {
  font-size: 1rem;
}

.text-bronze {
  color: #c59d5f;
}

.text-silver {
  color: #c0c0c0;
}

.text-gold {
  color: #d4af37;
}

.text-platinum {
  color: #e5e4e2;
}

.bg-bronze {
  background-color: #c59d5f;
}

.bg-silver {
  background-color: #c0c0c0;
}

.bg-gold {
  background-color: #d4af37;
}

.bg-platinum {
  background-color: #e5e4e2;
}
 
.btn-bronze {
  background-color: #c59d5f;
  border-color: #c59d5f;
  color: white;
}

/* Video Background Styles */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.bg-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-holder.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.header-text {
  position: relative;
  z-index: 2;
}

/* Header Indicator Styles (Botón de bajar) - LIMPIO */
.header-indicator-down {
  position: absolute;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.indicator {
  display: inline-block;
  text-decoration: none !important;
  transition: all 0.3s ease;
  color: white;
}

.indicator:hover {
  opacity: 1 !important;
  color: white;
  text-decoration: none !important;
}

.indicator-down {
  position: relative;
}
h1{
    text-transform:uppercase;
}

/* Button Styles (Botón "our services") */
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-light:hover {
  color: #000;
  background: white;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline-light.hvr-sweep-top {
  position: relative;
  transition: all 0.3s ease;
}

.btn-outline-light.hvr-sweep-top:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-outline-light.hvr-sweep-top:hover:before {
  top: 0;
}

.btn-outline-light.hvr-sweep-top:hover {
  color: #000;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ARREGLO PARA EL DESPLAZAMIENTO HORIZONTAL EN MÓVIL */
html,
body {
  max-width: 100vw;
  position: relative;
}

* {
  box-sizing: border-box;
}

.container-fluid {
  padding: 0;
  width: 100%;
}

/* Específico para el home - eliminar cualquier padding/margin extra */
section {
  margin: 0 !important;
  padding: 0 !important;
  max-width:100%;
}   

/* Asegurar que el texto no cause overflow */
.header-text {
  max-width: 100%;
  padding:15px;
}

.header-text h1,
.header-text p {
  max-width: 100%;
  word-wrap: break-word;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .min-vh-100 {
    min-height: 70vh;
  }

  .display-3 {
    font-size: 2.5rem !important;
  }

  .bg-video {
    object-position: center center;
  }

  .header-indicator-down {
    bottom: 20px;
  }

  .ls-3 {
    letter-spacing: 0.1em !important;
  }

  /* Flecha responsive */
  .indicator-arrow-one {
    width: 20px;
    height: 20px;
  }

  .indicator-arrow-one::before {
    font-size: 20px;
    line-height: 20px;
  }

  /* Asegurar que no haya overflow en tablet */
  .header-text {
    padding:20px;
  }
}

@media (max-width: 576px) {
  .min-vh-100 {
    min-height: 60vh;
  }

  .display-3 {
    font-size: 2rem !important;
  }

  .header-indicator-down {
    bottom: 15px;
  }

  .text-400 {
    font-size: 0.9rem;
  }

  /* Flecha más pequeña en móvil */
  .indicator-arrow-one {
    width: 18px;
    height: 18px;
  }

  .indicator-arrow-one::before {
    font-size: 18px;
    line-height: 18px;
  }

  .btn-sm {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  /* Padding extra para móvil */
  .header-text {
    padding:25px;
  }

  /* Asegurar que el letter-spacing no cause overflow */
  .ls-2 {
    letter-spacing: 0.05em !important;
  }
}

/* Ensure no overflow on small screens */
@media (max-width: 480px) {
  .ls-2,
  .ls-3 {
    letter-spacing: 0.05em !important;
  }

  .text-uppercase {
    word-break: break-word;
  }

  .header-text { 
    padding:20px;
  } 

  /* Flecha aún más pequeña en pantallas muy pequeñas */
  .indicator-arrow-one {
    width: 16px;
    height: 16px;
  }

  .indicator-arrow-one::before {
    font-size: 16px;
    line-height: 16px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Viewport específico para evitar zoom en iOS */
@media screen and (max-width: 480px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
}

/* Modal Map custom width */
.custom-modal-width {
  max-width: 75%;
}

/*  custom about page styles */
/* === Efecto hover botones hvr-sweep-top === */
.hvr-sweep-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-top::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-top:hover::before,
.hvr-sweep-top:focus::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* === Parallax Background === */
.bg-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Custom styles for image containers with overlay */
.image-with-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  height: 350px; /* Ajusta según necesites */
}

/* Widget styles */
.widget-chart {
  text-align: center;
  padding: 1rem;
  position: relative;
}
.widget-chart .widget-chart-content {
  position: relative;
  z-index: 5;
}
.widget-chart .widget-chart-content-lg {
  padding: 2rem 0 1rem 2rem;
}
.widget-chart .widget-chart-content-lg .widget-numbers {
  margin-bottom: 0;
}
.widget-chart .widget-chart-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.25;
  z-index: 6;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  overflow: hidden;
}
.widget-chart .widget-numbers {
  font-weight: bold;
  font-size: 2.5rem;
  display: block;
  line-height: 1;
  margin: 1rem auto;
}
.widget-chart .widget-numbers + .widget-description,
.widget-chart .widget-numbers + .widget-subheading {
  margin-top: -0.5rem;
}
.widget-chart .widget-subheading {
  margin: -0.5rem 0 0;
  display: block;
  opacity: 0.6;
}
.widget-chart .widget-subheading:first-child {
  margin-top: 0;
}
.widget-chart .widget-subheading + .widget-numbers {
  margin-top: 0.5rem;
}
.widget-chart .widget-description {
  margin: 1rem 0 0;
}
.widget-chart .widget-chart-actions {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 12;
}
.widget-chart .widget-chart-actions .btn-link {
  font-size: 1.1rem;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0.6;
}
.widget-chart .chart-wrapper-relative {
  position: relative;
  opacity: 1;
  margin-top: 1rem;
}

.widget-chart-actions {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 12;
}
.widget-chart-actions .btn-link {
  font-size: 1.1rem;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0.6;
}

.widget-chart:hover .widget-chart-actions .btn-link,
.widget-content:hover .widget-chart-actions .btn-link {
  opacity: 1;
}

.widget-content .widget-content-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1;
  flex: 1 1;
  position: relative;
  -ms-flex-align: center;
  align-items: center;
}

.icon-wrapper {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.icon-wrapper[class*="border-"] {
  border-width: 1px;
  border-style: solid;
}
.icon-wrapper .icon-wrapper-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 3;
  opacity: 0.2;
}
.icon-wrapper .icon-wrapper-bg.bg-light {
  opacity: 0.08;
}
.icon-wrapper i {
  margin: 0 auto;
  font-size: 1.7rem;
  position: relative;
  z-index: 5;
}
.icon-wrapper i:before {
  margin-top: -3px;
}

.card-btm-border {
  border-bottom: transparent solid 4px;
}

.widget-numbers-sm {
  font-size: 1.5rem;
}

/* Post Card image Styles */

.post-card img {
  width: 100%;
  height: 200px; /* Ajusta esta altura según necesites */
  object-fit: cover; /* Esto hace que la imagen cubra el espacio sin deformarse */
  object-position: center; /* Centra la imagen */
  border: 1px solid #ccc;
}

.post-featured-image {
  height: 400px;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.navbar-theme::before {
  display: none !important;
}

/* === GLOBAL BUTTON SIZE FIX === */
.btn,
a.btn {
  height: 45px !important;
  padding: 0 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

/* outline buttons */
.btn-outline-dark,
.btn-outline-light {
  height: 45px !important;
  padding: 0 32px !important;
}



.Main__H1 {
  font-weight: 300 !important;
  letter-spacing:5px !important;
}

.Subh1 {
  font-size: 18px !important;
  margin-bottom: 20px !important;
}
.min-vh-50{
    min-height:50vh;
}   
.H2__upd {
  font-size: 40px !important;
  line-height: 130% !important;
}

.black__hero {
  margin-bottom: 400px !important;
  padding-top: 60px;
  position: relative;
}
 
 
/* FIX SVG LOGO COLOR */
.navbar-brand svg,
.navbar-brand img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.play-btn {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.head__label {
  color: #c59d5f !important;
}

.hr-short {
  background-color: #c59d5f !important;
  color: #c59d5f !important;
}

.list-title {
  color: #c59d5f !important;
}

.list-padding {
  padding-left: 16px !important;
}

.style-check li::before {
  filter: invert(69%) sepia(29%) saturate(463%) hue-rotate(7deg) brightness(93%) contrast(90%) !important;
}


.bg__light-gray {
  background: #FCFCFC !important;
}

.overlay-low {
  background-blend-mode: normal !important;
}

.image-height {
  height: 400px !important;
}

.gold__accent {
  color: #c59d5f !important;
}

.img__about {
  max-width: 530px;
}

/* ===== Vision & Mission ===== */

.vision-mission {
  background-color: #f7f7f7;
}

/* Title */
.vision-title {
  font-size: 40px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Subtitle */
.vision-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #6c757d;
  max-width: 620px;
}

/* Card */
.vision-card {
  background: #ffffff;
  padding: 20px;
  padding-bottom: 12px;
  height: 100%;
  border: 1px solid #e5e4e2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Icon */
.vision-icon {
  font-size: 36px;
  color: #C59D5F; /* gold */
  margin-bottom: 8px;
}

/* Card title */
.vision-card-title {
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* Card text */
.vision-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #6c757d;
}


/* ===== MAP LEGEND ===== */

.map-legend-section {
  padding: 120px 0;
  background: #ffffff;
}

/* Header */
.map-legend-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.map-legend-title {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 400;
}

.map-legend-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #6c757d;
}

/* Grid */
.map-legend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.map-legend-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  padding: 20px;
  border: 1px solid #eee;
}

/* Left icon */
.map-legend-left {
  flex-shrink: 0;
}

.map-legend-icon {
  width: 42px;
  height: 42px;
}


/* Content */
.map-legend-content h4 {
  font-size: 22px;
  letter-spacing: -3%;
  margin-bottom: 10px;
}

.map-legend-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 18px;
}

/* Tag */
.map-legend-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  border: 1px solid #C59D5F;
  color: #C59D5F;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 991px) {
  .map-legend-grid {
      grid-template-columns: 1fr;
  }
}

.network__img {
  height: 400px !important;
}

.network__title {
  color: #000 !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}

/* === COVERAGE BY REGION === */

.coverage-region-section {
  background-color: #ffffff;
}

.coverage-map-wrapper {
  background-image: url('/templates/reing/assets/img/backgrounds/bg__map.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1200px auto;
  padding-top: 100px;
}


.coverage-item {
  max-width: 320px;
  margin: 0 auto;
}

.coverage-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.coverage-title {
  justify-content: center;
  justify-self: center;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-wrap: nowrap;
}

.coverage-text {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* Mobile fix */
@media (max-width: 767px) {
  .coverage-map-wrapper {
      background-size: cover;
      padding-top: 40px;
  }
  .paragraph-line{
    width:100% !important;
} 

.H2__upd {
    font-size: 26px !important;
}

}


.coverage-map-wrapper {
  padding-bottom: 110px !important;
}

.contact-card {
  background: #fff;
  padding: 16px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid #ededed;
  height: 180px !important;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.contact-card h6 {
  margin-top: 12px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: .04em;
}

.contact-card p {
  font-size: 14px;
  color: #6c757d;
}

.contact-icon {
  font-size: 24px;
  color: #C59D5F;
}

 
.contact__title_card {
  font-size: 16px;
}

.svg-inline--fa {
  color: #001b3d !important;
}

.blog-image-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;

}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-blog {
  padding: 4px 8px !important;
  background-color: #ECEDEE !important;
  margin-right: 8px;
  border-radius: 2px;
  color: #1e1e1e;
}

.blog-card__meta {
  font-size: 14px;
}

.footer-emblems {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-emblems img {
  height: 40px; 
  width: auto;
}


.footer-emblems {
  margin-top:30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap:wrap;
}
.custom_whtie .svg-inline--fa,
svg.svg-inline--fa.fa-search.fa-w-16{
    color: #fff !important;
}

/*NEW CSS START*/

.li-bullet{
   width:5px;
   height:5px;
   margin-bottom:2px;
   background:#f7f8f9;
   border-radius:50%;
   display:inline-block;
   margin-right:8px;
}
.title-line {
    display: flex;
    align-items: center;
    justify-content: center; 
}
.fw-semibold{
    font-weight:600;
}  
.paragraph-line{
    width:79%;
    margin:0 auto;  
}

.title-line::before,
.title-line::after {
    content: "";  
    width: 200px;
    height: 1px;
    background-color: #dee2e6; 
    margin: 0 16px;
}
 .service-card-body{
     display:flex;
 }
 
 @media (max-width:576px) {
     .display-3 ,.H2__upd{
        font-size:22px !important;
        line-height:30px !important; 
    }
     .fs-1 ,.lead{
    font-size:15px !important;
}

.title-line{
    width: max-content;
    margin: 0 auto;
}
.title-line::before, .title-line::after {
    width: 60px;
}
 .footer-emblems img {
    height: 30px;
 }
} 
     
      @media (max-width:498px) {
          
          .col-auto .btn,.col-auto{
              width:100%; 
          }
          .navbar-brand img{
              height:30px!important;
          }
      }