.carousel-container {
  width: 100%;
  background: linear-gradient(to bottom right, #f3f3f3, #f3f3f3);
  padding: 60px 20px;
}

.carousel-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.carousel-header {
  text-align: center;
  margin-bottom: 48px;
}

.carousel-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.carousel-header p {
  color: #666;
}

.carousel-content {
  position: relative;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.carousel-card {
  flex: 0 1 calc(25% - 18px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.carousel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.carousel-card-icon {
  background: linear-gradient(to bottom right, #ffcf5c, #ffd966);
  padding: 30px;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.carousel-card-title {
  padding: 24px;
  text-align: center;
  background: #fffbf0;
}

.carousel-card-title h3 {
  font-size: 18px;
  font-weight: bold;
  color: #764322;
  margin: 0;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f59e0b;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-nav:hover {
  background: #d97706;
}

.carousel-nav-prev {
  left: -80px;
}

.carousel-nav-next {
  right: -80px;
}

/* NEW: White Dots and Yellow Line Indicators */
.carousel-indicators-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  position: relative;
}

.carousel-line {
  height: 4px;
  background: #fbbf24;
  border-radius: 2px;
  transition: width 0.3s ease;
  flex: 1;
  max-width: 300px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 10;
}

.carousel-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  border-color: #fbbf24;
  transform: scale(1.2);
}

.carousel-dot.active {
  background: white;
  border-color: #fbbf24;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
}

.carousel-counter {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 20px;
}