/* Start custom CSS for html, class: .elementor-element-f02c793 *//* Ambulance Service Section */
.ambulance-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background-color: #ffffff;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Content */
.ambulance-content {
  max-width: 520px;
}

.ambulance-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.ambulance-content h1 .blue {
  color: #1e5bd7;
}

.ambulance-content h1 .red {
  color: #e63946;
}

.ambulance-content p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

/* Right Image */
.ambulance-image {
  position: relative;
  max-width: 520px;
}

.ambulance-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e63946, #1e5bd7);
  border-radius: 30px;
  z-index: -1;
}

.ambulance-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .ambulance-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .ambulance-section {
    padding: 40px 20px;
    text-align: center;
  }

  .ambulance-image::before {
    right: 0;
  }

  .ambulance-content h1 {
    font-size: 30px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cac9799 *//* Introduction Section – Shree Ananta Hospital */
.intro-section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 70px 40px;
  background-color: #ffffff;
  flex-wrap: wrap;
}

/* Image Section */
.intro-image {
  flex: 1;
  min-width: 300px;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* Content Section */
.intro-content {
  flex: 1;
  min-width: 320px;
}

.intro-content h2 {
  font-size: 36px;
  color: #1e5bd7;
  margin-bottom: 22px;
  font-weight: 700;
}

.intro-content p {
  font-size: 16px;
  color: #2f2f2f;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-section {
    padding: 40px 20px;
    text-align: center;
  }

  .intro-content h2 {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e2c9263 *//* Why Shree Ananta Hospital */
.why-ananta {
  padding: 80px 40px;
  background: linear-gradient(to bottom, #ffffff, #f3f8ff);
  text-align: center;
}

.why-ananta h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1e5bd7;
}

.why-ananta h2 span {
  color: #d62828;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.why-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-6px);
}

.why-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 55px;
  height: auto;
}

.why-box h4 {
  font-size: 18px;
  color: #1e5bd7;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-box p {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-ananta {
    padding: 50px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-ananta h2 {
    font-size: 28px;
  }
}/* End custom CSS */