.dr1015carouselhome2 {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  background: #fdf6f0; /* Light cream background for elegance */
  color: #333;
  font-family: 'Segoe UI', 'Poppins', sans-serif;
}

.dr1015carouselhome2 .carousel-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #c1440e;
  background: linear-gradient(135deg, #d35400, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 4px rgba(200, 100, 50, 0.2);
  margin-bottom: 30px;
}

.dr1015carouselhome2 .carousel {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fffaf3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dr1015carouselhome2 .carousel-track {
  display: flex;
  transition: transform 1s ease;
  width: 100%;
  flex-wrap: nowrap;
}

.dr1015carouselhome2 .carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background: radial-gradient(circle at center, #fff8f0, #fdf6f0);
}

.dr1015carouselhome2 .carousel-slide img {
  max-width: 75%;
  max-height: 380px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(210, 105, 30, 0.15);
  animation: shine 3s infinite ease-in-out;
  transition: transform 0.4s ease;
}

.dr1015carouselhome2 .carousel-slide img:hover {
  transform: scale(1.03);
}

@keyframes shine {
  0%, 100% {
    filter: brightness(1);
    box-shadow: 0 0 15px rgba(255, 200, 120, 0.15);
  }
  50% {
    filter: brightness(1.15);
    box-shadow: 0 0 25px rgba(255, 180, 100, 0.5);
  }
}

.dr1015carouselhome2 .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffaf40;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
  z-index: 10;
  user-select: none;
  transition: background 0.3s, box-shadow 0.3s;
}

.dr1015carouselhome2 .carousel-btn.left {
  left: 12px;
}

.dr1015carouselhome2 .carousel-btn.right {
  right: 12px;
}

.dr1015carouselhome2 .carousel-btn:hover {
  background: #e68a00;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .dr1015carouselhome2 .carousel-title {
    font-size: 28px;
  }

  .dr1015carouselhome2 .carousel-slide img {
    max-width: 90%;
    max-height: 260px;
  }

  .dr1015carouselhome2 .carousel-btn {
    font-size: 1.8rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .dr1015carouselhome2 .dr1015carouselhome2 {
    padding: 20px 10px;
  }

  .dr1015carouselhome2 .carousel-title {
    font-size: 24px;
  }

  .dr1015carouselhome2 .carousel-slide img {
    max-width: 95%;
    max-height: 200px;
  }

  .dr1015carouselhome2 .carousel-btn {
    font-size: 1.5rem;
  }
}