body {
  overflow-x: hidden;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
}
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8rem 4rem;
  background-color: #f9f9f9;
}
.hero-text {
  max-width: 50%;
}
.hero-images {
  position: relative;
  width: 600px;
  height: 500px;
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
  .hero-text,
  .hero-images {
    max-width: 100%;
    align-items: center;
  }
  .hero-images {
    flex-direction: column;
  }
}
.hero-bg {
  background-image: url("imgs/home/hero.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay to increase opacity */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  font-family: "poppins";
}
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Optional: adds a blur effect */
  z-index: 10; /* Ensure the navbar is on top of other content */
}
.slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.slider-track {
  display: flex;
  animation: scroll 40s linear infinite;
}
.slider-track img {
  width: 400px; /* Increased image width */
  height: 300px;
  margin: 10px;
  border-radius: 1rem; /* tailwind's rounded-xl */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .slider-track img {
    width: 200px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .slider-track img {
    width: 150px;
    height: 112.5px;
  }
}
.translate-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  background-color: #3d74ff;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  z-index: 1000; /* Ensure it's above other content */
}
.translate-toggle-btn:hover {
  background-color: #0004ec;
  transition: 0.15s;
}
.translate-container {
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 1000; /* Ensure it's above other content */
}
.translate-toggle-btn {
  padding: 10px;
  background-color: #3d74ff;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}
.translate-toggle-btn:hover {
  background-color: #0004ec;
  transition: 0.15s;
}
.custom-translate-dropdown {
  display: none; 
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.custom-translate-option {
  padding: 5px 10px;
  cursor: pointer;
}
.custom-translate-option:hover {
  background-color: #f0f0f0;
}
.translate-container:hover .custom-translate-dropdown {
  display: block;
}

