@tailwind base;
@tailwind components;
@tailwind utilities;

/* globals.css */
body {
  font-family: 'Inter', sans-serif;
}

.carousel-item {
  position: relative;
}

.image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-item-text {
  background-color: #ffffff;
  padding: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* You can add more global styles as needed */


.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}



@layer utilities {
  .animate-slide-down {
      animation: slideDown 0.3s ease-in-out;
  }

  @keyframes slideDown {
      0% {
          transform: translateY(-100%);
          opacity: 0;
      }
      100% {
          transform: translateY(0);
          opacity: 1;
      }
  }
}

/* styles.css */
.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 1rem;
  width: 1rem;
  background-color: #abadae; /* Tailwind's bg-gray-200 */
  border-radius: 0.25rem; /* Tailwind's rounded */
  display: inline-block;
  position: relative;
  border: 1px solid #abadae; /* Tailwind's border-gray-300 */
  cursor: pointer;
}

.custom-checkbox:checked {
  background-color: #E16C18; /* Tailwind's text-indigo-600 */
  border: none;
}

.custom-checkbox:checked::before {
  content: '✔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.75rem;
}

/* slider.css */
.custom-slider .slick-list {
  padding: 0px; /* Adjust the padding as needed */
}

.custom-slide {
  padding: 0 10px; /* Adjust the padding to control the gap between images */
  box-sizing: border-box;
}




.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  object-fit: cover;
}

.mySwiper3 {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper3 .swiper-slide {
  width: 25%;
  height: 100%;
}

.mySwiper3 .swiper-slide-thumb-active {
  opacity: 1;
}
