/* Slider Container */
.fullscreen-slider {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #0a0a0a;
}

.slider-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: nowrap; /* force side-by-side on all screens */
  height: 100%;
  width: 100%;
}

/* Left side: 40% image */
.slide-left {
  flex: 0 0 40%;
  position: relative;
  background-size: cover;
  background-position: center;

  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* text ko right side shift */
  overflow: hidden;
}

.slide-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(223, 32, 22, 0.863) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.left-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem;
  width: 85%;

  max-width: 450px;
  margin-right: 5%;
  text-align: right; /* text right aligned */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 1;
}

/* Text animations (triggered by JS adding class) */
.left-content.animate-slide1 {
  animation: fadeSlideRight 0.6s ease forwards;
}
.left-content.animate-slide2 {
  animation: zoomFade 0.6s ease forwards;
}
.left-content.animate-slide3 {
  animation: slideUpFade 0.6s ease forwards;
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger delays for inner elements (optional, for smoothness) */
.left-content.animate-slide1 h2 {
  animation: fadeSlideRight 0.6s ease forwards;
}
.left-content.animate-slide1 p {
  animation: fadeSlideRight 0.6s ease 0.15s forwards;
  opacity: 0;
}
.left-content.animate-slide1 .extra-text {
  animation: fadeSlideRight 0.6s ease 0.3s forwards;
  opacity: 0;
}
.left-content.animate-slide1 .button-group {
  animation: fadeSlideRight 0.6s ease 0.45s forwards;
  opacity: 0;
}

.left-content.animate-slide2 h2 {
  animation: zoomFade 0.6s ease forwards;
}
.left-content.animate-slide2 p {
  animation: zoomFade 0.6s ease 0.15s forwards;
  opacity: 0;
}
.left-content.animate-slide2 .extra-text {
  animation: zoomFade 0.6s ease 0.3s forwards;
  opacity: 0;
}
.left-content.animate-slide2 .button-group {
  animation: zoomFade 0.6s ease 0.45s forwards;
  opacity: 0;
}

.left-content.animate-slide3 h2 {
  animation: slideUpFade 0.6s ease forwards;
}
.left-content.animate-slide3 p {
  animation: slideUpFade 0.6s ease 0.15s forwards;
  opacity: 0;
}
.left-content.animate-slide3 .extra-text {
  animation: slideUpFade 0.6s ease 0.3s forwards;
  opacity: 0;
}
.left-content.animate-slide3 .button-group {
  animation: slideUpFade 0.6s ease 0.45s forwards;
  opacity: 0;
}

.left-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

.left-content p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.extra-text {
  font-size: clamp(0.8rem, 2vw, 1rem);
  margin: 1rem 0;
  font-style: italic;
  opacity: 0.9;
}

.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end; /* right aligned */
  margin-top: 1.5rem;
}

/* Base button style - solid & bold */
.slide-btn {
  background: #800000; /* solid maroon */
  border: none;
  text-decoration: none;
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700; /* bold (700 ya 800) */
  cursor: pointer;
  transition: all 0.3s ease;
}

/* .outline class ko bhi solid bana do */
.slide-btn.outline {
  background: #800000; /* solid, transparent nahi */
  border: none;
  color: white;
  font-weight: 700; /* bold */
}

/* Hover effect */
.slide-btn:hover,
.slide-btn.outline:hover {
  background: #a52a2a; /* hover par thoda halka maroon */
  transform: translateY(-2px);
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Right side: 60% video */
.slide-right {
  flex: 0 0 60%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 20;
  background: transparent;
  padding: 10px 0;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(2px);
}

.dot.active {
  background: #800000;
  width: 28px;
  border-radius: 20px;
}

/* ========== RESPONSIVE: Mobile par bhi side-by-side ========== */
@media (max-width: 900px) {
  .slide {
    flex-direction: row !important; /* force row, not column */
    flex-wrap: nowrap;
  }
  .slide-left {
    flex: 0 0 50%;
    justify-content: flex-end;
  }
  .slide-right {
    flex: 0 0 50%;
  }
  .left-content {
    margin-right: 3%;
    width: 90%;
    padding: 1rem;
  }
  .left-content h2 {
    font-size: 1.2rem;
  }
  .left-content p {
    font-size: 0.75rem;
  }
  .extra-text {
    font-size: 0.65rem;
  }
  .slide-btn {
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
  }
  .button-group {
    justify-content: flex-end;
  }
}

@media (max-width: 600px) {
  .slide-left {
    flex: 0 0 40%;
  }
  .slide-right {
    flex: 0 0 60%;
  }
  .left-content h2 {
    font-size: 1rem;
  }
  .left-content p {
    font-size: 0.65rem;
  }
  .slide-btn {
    padding: 0.3rem 0.8rem;
    font-size: 0.6rem;
  }
}

/* Any extra margin for about section (keep as is) */
body .about-section {
  margin-top: 60px !important;
}

/* drop down menu */
