.ltr-popover, input[type='email'], input[name='phone'] {
  direction: ltr !important;
}

.img-fit {
  width: 100% !important;
  height: 100% !important;
  max-height: 500px !important;
  /* object-fit: cover; */
}

.zoom img {
  transition: transform .2s;
  /* Animation */
  width: 100%;
  max-width: 120%;
  height: 100%;


}

.zoom img:hover {
  transform: scale(0.75);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* .hero .carousel-item img {
  width: 100% !important;
  min-height: 75vh;
  max-height: 75vh !important;
  object-fit: cover;
  // filter: opacity(15%); 

} */

/* .hero-caption {
  inset: 0 !important;
  width: 100% !important;
  height: 100%;
  padding-inline: 10%;
  background-color: color-mix(in srgb, var(--bs-light), transparent 20%);

} */

/* .hero-caption * {
  position: relative;
  top: 40%;
  transform: translateY(-50%);

} */

/* .hero-caption h1 {
  font-size: 5rem;
}

.hero-caption p {
  font-size: 3rem;
} */




/* .nav_menu a,
.nav_menu a:focus {
  color: var(--bs-primary);
}

.nav_menu a i,
.nav_menu a:focus i {
  color: var(--bs-primary);

} */

.nav_menu li:hover>a,
.nav_menu .active,
.nav_menu .active:focus {
  color: var(--bs-light-coral);
}

.nav_menu a:hover i {
  color: var(--bs-light-coral);
}


.navbar {
  .navbar-brand {
    color: var(--bs-secondary) !important;
    font-weight: 500;
    font-size: 1.8rem;

    span {
      color: var(--bs-dark);
    }
  }

}

#heroCarousel {
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 100%;
}

#heroCarousel .carousel-item img {
  object-fit: cover;
  height: 100%;
  filter: brightness(0.7);
}

#heroCarousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#heroCarousel .carousel-caption {
  /* right: 10%; */
  /* left: 10%; */
  bottom: 20%;
  z-index: 2;
  /* text-align: right; */
}



#heroCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
}

#heroCarousel .carousel-indicators button.active {
  background: var(--bs-secondary);
  border-color: var(--bs-secondary);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  z-index: 3;
  width: 5%;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  background-color: rgba(255, 111, 97, 0.7);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 60%;
}

@media (max-width: 768px) {
  #heroCarousel .carousel-caption {
    bottom: 10%;
  }

  #heroCarousel .display-4 {
    font-size: 2.5rem;
  }
}

.section-title {
  color: var(--bs-primary);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--bs-light-coral);
}


.service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--bs-secondary);
  margin-bottom: 20px;
}



.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  background-color: white;
}

.product-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img {
  height: 200px;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05) saturate(1.1);
}


footer {
  background-color: var(--bs-dark);
  color: white;
  padding: 50px 0 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--bs-secondary);
}

.social-icon {
  color: white;
  font-size: 1.5rem;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--bs-secondary);
}

.img-filter {
  filter: brightness(0.95) saturate(1.1) contrast(1.05);
  border-radius: 8px;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

.contact-info i {
  color: var(--bs-secondary);
  font-size: 1.5rem;
  margin-right: 10px;
}