* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-slider {
  position: relative;
  background: #000;
  align-items: center;
  justify-content: center;
  height: 400px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  display: flex;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  z-index: 1;
  pointer-events: none;
}

.slide.active {
  z-index: 2;
}

.tile {
  background-size: 600% 400%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.4) rotate(30deg);
}

/* Shine Effect */
.shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: rotate(25deg);
  animation: shineMove 6s infinite linear;
  pointer-events: none;
  z-index: 3;
}

@keyframes shineMove {
  0% { transform: translateX(-100%) rotate(25deg); }
  100% { transform: translateX(100%) rotate(25deg); }
}

/* Falling Elements (Flowers + Leaves) */
.hero-slider .falling {
  position: absolute;
  top: -10%;
  font-size: 20px;
  animation: fall linear forwards;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
  pointer-events: none;
  z-index: 10;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

/* For tablets and smaller screens */
@media (max-width: 1024px) {
  .hero-slider {
    height: 80vh;
  }

  .slider {
    border-radius: 10px;
  }

  .tile {
    background-size: 400% 300%;
  }

  .hero-slider .falling {
    font-size: 16px;
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .hero-slider {
    height: 22vh;
  }

  
  .slider {
    border-radius: 8px;
    
    background-color: #000;
  }


  .slide {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .tile {
    background-size: 300% 200%;
  }

  .hero-slider .falling {
    font-size: 14px;
  }
}

/* For very small screens (e.g., 480px and below) */
@media (max-width: 480px) {
  .hero-slider {
    height:22vh;
  }

  .slider {
    border-radius: 6px;
   
    background-color: #000;
  }

  .slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .tile {
    background-size: 200% 150%;
  }

  .hero-slider .falling {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .responsive-container {
    padding: 0px 8px;
  }
}
 @media (max-width: 768px) {
  .contact-info {
    display: none !important;
  }
}

  .responsive-padding2 {
    padding: 10px;
  }

  @media (max-width: 768px) {
    .responsive-padding2 {
      padding: 0px !important;
    }
  }




/*--------------------------------------------------------------
  # End
  --------------------------------------------------------------*/
