@charset "utf-8";
/* CSS Document */

/*
.image-container {
    position: relative;
    width: 100%;
    max-width: 600px; 
  }

  .image-container img {
    width: 100%;
    height: auto;
    display: block;
  }
*/

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease; /* smooth zoom */ border-radius: 10px;
}

.image-container:hover img {
  transform: scale(1.01); /* very subtle zoom */
}

.overlay-text {
  position: absolute;
  bottom: 10%;
  width: 100%;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  opacity: 0.9;
  transition: opacity 0.4s ease;

  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  padding: 1rem; /* Optional: adds spacing inside the background */
  border-radius: 8px; /* Optional: rounds the corners */
}

.overlay-text a.overlay-link {
  color: white;           /* match your text color */
  text-decoration: none;  /* remove underline */
  font-size: inherit;
  font-weight: inherit;
  display: inline-block;
  transition: color 0.3s ease;
}

.overlay-text a.overlay-link:hover {
  color: #ffeb3b; /* optional hover color */
}
.image-container:hover .overlay-text {
  opacity: 1;
}

.overlay-text i {
  transition: transform 0.3s ease;
}

.image-container:hover .overlay-text i {
  transform: translateX(5px);
}

  .arrow-circle {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem; font-weight: 600; line-height: 2;
    animation: bounce 1s infinite;
  }
.image-container-01 img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease; /* smooth zoom */ border-radius: 10px; border: 3px solid #FDAB05;
}

.image-container-01:hover img {
  transform: scale(1.01); /* very subtle zoom */
}
.overlay-text-01 {
  position: absolute;
  bottom: 10%;
  left: 40%;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.overlay-text-01 a.overlay-link {
  color: white;           /* match your text color */
  text-decoration: none;  /* remove underline */
  font-size: inherit;
  font-weight: inherit;
  display: inline-block;
  transition: color 0.3s ease;
}

.overlay-text a.overlay-link:hover {
  color: #ffeb3b; /* optional hover color */
}
.image-container:hover .overlay-text-01 {
  opacity: 1;
}

.overlay-text-01 i {
  transition: transform 0.3s ease;
}

.image-container:hover .overlay-text-01 i {
  transform: translateX(5px);
}

  /* Arrow bounce animation */
  @keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
  }

.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider .slide {
  position: relative;
}

.slider .slide img {
  width: 100%;
  height: 80vh; /* adjust as needed */
  object-fit: cover;
  display: block; 
  position: relative;
  top: 40px; /* move image down by 20px */
}

/* Text content center */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  border-radius: 8px;
  opacity: 0; /* hidden initially for animation */
  transition: all 0.8s ease;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.btn-banner {
  background: #ff6600;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-banner:hover {
  background: #ff4400;
}

.slider .slide {
  margin: 0 !important;
  padding: 0 !important;
}
.slick-slide {
  margin: 0 !important;
}

/* Slick default arrows override */
.slick-prev, .slick-next {
  z-index: 99;
  width: 50px;
  height: 50px;
}
.slick-prev:before, .slick-next:before {
  font-size: 40px;
  color: #fff;
}

/* When active slide appears, show text */
.slick-active .banner-content {
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0); /* slide in */
}
/* remove default slick dots */
.slick-dots {
  display: none !important;
}

/* slick arrows */
.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slick-prev {
  left: 15px;
}
.slick-next {
  right: 15px;
}

.slick-prev:before, .slick-next:before {
  font-family: 'slick';
  font-size: 30px;
  line-height: 1;
  opacity: 1;
  color: #fff;
}

.slick-prev:hover, .slick-next:hover {
  background: rgba(0,0,0,0.6);
}
/* remove slick dots */
.slick-dots {
  display: none !important;
}

/* slick arrows with Font Awesome */
.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slick-prev {
  left: 15px;
}
.slick-next {
  right: 15px;
}

.slick-prev i, .slick-next i {
  font-size: 24px;
  color: #fff;
}

.slick-prev:hover, .slick-next:hover {
  background: rgba(0,0,0,0.6);
}

/* remove any unwanted gap */
.slider .slide,
.slick-slide {
  margin: 0 !important;
  padding: 0 !important;
}

