/* Home page specific styles */

/* Hero section */
.min-vh-75 {
  min-height: 75vh;
}

/* Background colors */
.bg-primary-light {
  background-color: var(--brand-blue-light);
}

/* Carousel styling */
.carousel {
  position: relative;
}

.carousel-container {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.carousel-slide {
  flex: 0 0 100%;
  transition: transform 0.5s ease;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
}

.carousel-indicator.active {
  background-color: var(--bs-primary);
}

/* Transitions */
.transition {
  transition: all 0.3s ease;
}

/* Hover effects */
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Rotating text animation */
.rotating-text {
  transition: opacity 0.5s ease;
}
