/* ===== DOLA R. KAILASA RAO CAROUSEL (Aviation Theme) ===== */
.dr1044carouselhome {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #e0f7fa, #ffffff); /* Sky blue gradient */
  color: #0d1b2a;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  user-select: none;
  background-image: url('https://www.transparenttextures.com/patterns/aircraft.png'); /* subtle aviation pattern */
}

/* Heading */
.dr1044carouselhome .carousel-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(to right, #0288d1, #26c6da); /* Sky blue gradient text */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.dr1044carouselhome .carousel-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 100px;
  height: 4px;
  background: #ffb300; /* Golden aviation accent */
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.4);
}

.dr1044carouselhome .tagline-sub {
  display: block;
  font-size: 1.15rem;
  color: #0277bd; /* Dark blue for aviation vibe */
  margin-top: 8px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

/* Carousel */
.dr1044carouselhome .carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  background: #f0f4f7; /* Light sky color */
  border: 1px solid #81d4fa; /* Soft sky blue border */
}

.dr1044carouselhome .carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  flex-wrap: nowrap;
}

.dr1044carouselhome .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;
}

.dr1044carouselhome .carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dr1044carouselhome .carousel-slide img {
  max-width: 90%;
  max-height: 460px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid #29b6f6; /* Aircraft blue frame */
}

.dr1044carouselhome .carousel-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(2,136,209,0.35); /* Sky blue hover glow */
}

/* Buttons */
.dr1044carouselhome .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #0288d1, #26c6da); /* Aviation gradient */
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 14px 18px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(2,136,209,0.3);
  transition: all 0.3s ease;
}

.dr1044carouselhome .carousel-btn.left { left: 16px; }
.dr1044carouselhome .carousel-btn.right { right: 16px; }

.dr1044carouselhome .carousel-btn:hover {
  background: linear-gradient(135deg, #ffb300, #ffc107); /* Golden hover accent */
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(255,179,0,0.4);
}

/* Responsive */
@media (max-width:768px){
  .dr1044carouselhome .carousel-title { font-size: 28px; }
  .dr1044carouselhome .carousel-slide img { max-height: 320px; }
  .dr1044carouselhome .carousel-btn { font-size:1.6rem; padding:10px 14px; }
}

@media (max-width:480px){
  .dr1044carouselhome { padding:40px 15px; }
  .dr1044carouselhome .carousel-title { font-size:22px; margin-bottom:20px; }
  .dr1044carouselhome .carousel-slide img { max-height:220px; }
  .dr1044carouselhome .carousel-btn { font-size:1.3rem; padding:8px 12px; }
}