.dr1043carouselhome {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ecfdf5, #ffffff);
  /* Healing green to white */
  color: #134e4a;
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
  overflow: hidden;
  user-select: none;
  background-image: url('https://www.transparenttextures.com/patterns/green-dust-and-scratches.png');
}

/* Heading */
.dr1043carouselhome .carousel-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(to right, #047857, #16a34a);
  /* Deep healing green gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 40px;
  position: relative;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 8px rgba(4, 120, 87, 0.15);
}

.dr1043carouselhome .carousel-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 90px;
  height: 4px;
  background: #f59e0b; /* Saffron underline */
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.4);
}

.dr1043carouselhome .tagline-sub {
  display: block;
  font-size: 1.15rem;
  color: #065f46;
  /* Natural dark green */
  margin-top: 8px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

/* Carousel Box */
.dr1043carouselhome .carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border: 1.5px solid #d1fae5; /* soft mint border */
}

.dr1043carouselhome .carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  flex-wrap: nowrap;
  will-change: transform;
}

.dr1043carouselhome .carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.dr1043carouselhome .carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  transform: translateY(0);
}

.dr1043carouselhome .carousel-slide img {
  max-width: 90%;
  max-height: 460px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid #bbf7d0;
  /* Soft herbal green frame */
}

.dr1043carouselhome .carousel-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.35); /* Glowing green hover */
}

/* Buttons */
.dr1043carouselhome .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #047857, #16a34a);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 14px 18px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
  transition: all 0.3s ease;
}

.dr1043carouselhome .carousel-btn.left {
  left: 16px;
}

.dr1043carouselhome .carousel-btn.right {
  right: 16px;
}

.dr1043carouselhome .carousel-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  /* Saffron hover accent */
  transform: scale(1.1);
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .dr1043carouselhome .carousel-title {
    font-size: 28px;
  }
  .dr1043carouselhome .carousel-slide img {
    max-height: 320px;
  }
  .dr1043carouselhome .carousel-btn {
    font-size: 1.6rem;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .dr1043carouselhome {
    padding: 40px 15px;
  }
  .dr1043carouselhome .carousel-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .dr1043carouselhome .carousel-slide img {
    max-height: 220px;
  }
  .dr1043carouselhome .carousel-btn {
    font-size: 1.3rem;
    padding: 8px 12px;
  }
}