/* 🌐 Services Intro Banner */
.services-intro-banner {
  padding: 80px 20px;
  background: linear-gradient(to right, #e6f7ff, #cceeff); /* Light sky blue gradient */
}

/* 🧱 Container */
.services-intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 200px; /* ✅ Sirf horizontal gap ke liye */
  max-width: 1200px;
  margin: 0 auto;
}

/* 🖼️ Image Block */
.services-intro-image {
  flex: 1 1 500px;
  text-align: center;
}
.services-intro-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ✍️ Text Block */
.services-intro-text {
  flex: 1 1 500px;
  padding: 20px;
}
.services-intro-text h1 {
  font-size: 2.8rem;
  color: navy;
  margin-bottom: 15px;
}
.services-intro-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
}

/* 🔘 CTA Buttons (shared) */
.cta-buttons {
  margin-top: 10px;
}
.cta-buttons a.btn {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-buttons a.btn:hover {
  background-color: #fff;
  color: #007bff;
  border: 1px solid #007bff;
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
  .services-intro-container {
    flex-direction: column;
    text-align: center;
    gap: 20px; /* ✅ Added vertical gap for mobile */
  }
  .services-intro-text,
  .services-intro-image {
    flex: 1 1 100%;
    padding: 10px;
  }
  .services-intro-text h1 {
    font-size: 2rem;
  }
  .services-intro-text p {
    font-size: 1rem;
  }
}