/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #dbe9f8;
  color: #000000;
}

/* ===== HERO ===== */  
.medical-hero {
  position: relative;
  height: 75vh;
  background: url("https://i.postimg.cc/SxpXGG4b/pet-for-adoption-image.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(25, 57, 126, 0.486); */
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 20px;
  animation: fadeIn 1s ease;
}

.hero-content h1 {
  font-size: 3rem;
  color: #000000;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #000000;
}

/* ===== SERVICES ===== */
.medical-services {
  padding: 80px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.service-box {
  background:#bad9f3;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.7);
}

.service-box h2 {
  color: #000000;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 1.05rem;
  color: #000000;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-box button {
  background: linear-gradient(135deg, #1E88E5, #1565C0);
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.service-box button:hover {
  background:#3f7cd2;
  transform: scale(1.05);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .medical-services {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}
