.equipment-showcase {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.equipment-showcase h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 10px;
}

.equipment-showcase .intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

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

.equipment-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.equipment-card:hover {
  transform: translateY(-5px);
}

.equipment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.equipment-card h3 {
  margin-top: 15px;
  color: #004080;
}

.equipment-card p {
  font-size: 0.95rem;
  color: #666;
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 25px;
  background: #3babe2;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #0066cc;
  color: #fff;
}


.surgery-showcase {
  padding: 60px 20px;
  background-color: #f4f8fc;
  font-family: 'Segoe UI', sans-serif;
}

.surgery-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.surgery-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.surgery-text {
  flex: 1;
  min-width: 280px;
}

.surgery-text h2 {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 15px;
}

.surgery-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Initial hidden state */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
}

/* Visible state when scrolled into view */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays for grid items */
.equipment-card:nth-child(1) { transition-delay: 0.1s; }
.equipment-card:nth-child(2) { transition-delay: 0.3s; }
.equipment-card:nth-child(3) { transition-delay: 0.5s; }
.equipment-card:nth-child(4) { transition-delay: 0.7s; }

/* Hover effect for interactivity */
.equipment-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/*WARD CSS*/
.ward-section {
  padding: 70px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.ward-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ward-text {
  flex: 1;
  min-width: 300px;
}

.ward-text h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 15px;
}

.ward-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.ward-images {
  flex: 1;
  min-width: 300px;
}

.ward-images img {
  width: 100%;
  height: 400px; /* Large image height */  
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ward-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
