/* ===== Surya Hero Slider Styling ===== */

.surya-hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: block;
}

.surya-hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: block !important;
}

.surya-hero-carousel.owl-loaded {
  display: block !important;
}

.surya-hero-carousel .owl-stage-outer {
  height: 100% !important;
}

.surya-hero-carousel .owl-stage {
  height: 100% !important;
  display: flex !important;
}

.surya-hero-carousel .owl-item {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
}

.surya-hero-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.surya-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.surya-hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.surya-hero-content {
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.surya-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: suryaSlideInDown 0.8s ease-out;
}

.surya-hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  animation: suryaSlideInUp 0.8s ease-out;
}

.surya-hero-btn {
  display: inline-block;
  padding: 15px 45px;
  background: linear-gradient(135deg, #ff9500, orange);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  animation: suryaSlideInUp 0.8s ease-out 0.2s both;
}

.surya-hero-btn:hover {
  background: linear-gradient(135deg, orange, #ff9500) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(255, 165, 0, 0.5);
  color: #fff !important;
  text-decoration: none !important;
}

/* Owl Carousel Navigation for Surya Hero Slider */
.surya-hero-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
  box-sizing: border-box;
}

.surya-hero-carousel .owl-nav button {
  pointer-events: all;
  background: rgba(255, 165, 0, 0.9) !important;
  color: #fff !important;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.surya-hero-carousel .owl-nav button:hover {
  background: rgba(255, 165, 0, 1) !important;
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.6);
}

.surya-hero-carousel .owl-nav button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.surya-hero-carousel .owl-nav button span {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Owl Dots for Surya Hero Slider */
.surya-hero-carousel .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.surya-hero-carousel .owl-dot {
  height: 14px;
  width: 14px;
  background: rgba(255, 255, 255, 0.6) !important;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.surya-hero-carousel .owl-dot:hover {
  background: rgba(255, 255, 255, 0.8) !important;
}

.surya-hero-carousel .owl-dot.active {
  background: #fff !important;
  width: 35px;
  border-radius: 7px;
  border-color: #fff;
}

/* Animations */
@keyframes suryaSlideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes suryaSlideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Design ===== */

@media (max-width: 992px) {
  .surya-hero-item {
    height: 80vh;
  }

  .surya-hero-content h1 {
    font-size: 42px;
  }

  .surya-hero-content p {
    font-size: 18px;
  }

  .surya-hero-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .surya-hero-carousel .owl-nav {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .surya-hero-slider-wrapper {
    height: 70vh;
  }

  .surya-hero-item {
    height: 70vh;
  }

  .surya-hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .surya-hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .surya-hero-btn {
    padding: 12px 35px;
    font-size: 14px;
  }

  .surya-hero-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .surya-hero-carousel .owl-dots {
    bottom: 25px;
    gap: 8px;
  }

  .surya-hero-carousel .owl-dot {
    height: 10px;
    width: 10px;
  }

  .surya-hero-carousel .owl-dot.active {
    width: 28px;
  }
}

@media (max-width: 576px) {
  .surya-hero-slider-wrapper {
    height: 50vh;
  }

  .surya-hero-item {
    height: 50vh;
  }

  .surya-hero-content {
    padding: 0 15px;
  }

  .surya-hero-content h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .surya-hero-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .surya-hero-btn {
    padding: 10px 25px;
    font-size: 12px;
  }

  .surya-hero-carousel .owl-nav {
    padding: 0 10px;
  }

  .surya-hero-carousel .owl-nav button {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .surya-hero-carousel .owl-dots {
    bottom: 15px;
    gap: 5px;
  }

  .surya-hero-carousel .owl-dot {
    height: 8px;
    width: 8px;
  }

  .surya-hero-carousel .owl-dot.active {
    width: 22px;
  }
}
