.service-hero {
    background-image: url('https://readdy.ai/api/search-image?query=web%20development%20coding%20screens%20abstract%2C%20digital%20background%2C%20modern%20tech%20vibe&width=1920&height=500&seq=1&orientation=landscape');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.floating-contact {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
}

.whatsapp-widget {
position: fixed;
bottom: 90px; /* phone button से ऊपर */
right: 20px;
z-index: 9999;
}


/* Hero Slider Main Section */
.hero-slider {
  position: relative;
  overflow: hidden;
}

/* All Slides Default Hidden */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

/* Active Slide Visible */
.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Slide Content Animation */
.slide-content {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

/* Optional: Prevent Text Overlap */
.hero-slider h1,
.hero-slider h2,
.hero-slider p {
  position: relative;
  z-index: 2;
}

/* Slider Main */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Each Slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Background Image */
.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .slider {
    height: 70vh;   /* Mobile me height kam */
  }

  .slide-bg {
    background-position: center center;
  }
}

@media (max-width: 768px) {
  .slide {
    height: 80vh;
  }
}


/* ===== Rajasthan District Section ===== */

.rajasthan-districts {
  background: #0f0f0f;   /* Dark background like your theme */
  padding: 100px 0;
  text-align: center;
}

.rajasthan-districts .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.rajasthan-districts .section-subtitle {
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.district-btn {
  display: block;
  padding: 18px 20px;
  background: linear-gradient(145deg, #1c1c1c, #2a2a2a);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.district-btn:hover {
  background: linear-gradient(145deg, #ff6a00, #ff8c00);
  transform: translateY(-5px);
  color: #fff;
}