.dr1043services {
  background: linear-gradient(135deg, #e0f7fa, #e3f2fd);
  padding: 80px 20px;
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: 2.2rem;
  color: #0d47a1;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #37474f;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: #1565c0;
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  color: #444;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-buttons {
  display: flex;
  justify-content: space-between;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
}

.btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.btn.call {
  background: #1976d2;
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}