body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f5f9ff;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #0a6ed1;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

header .logo {
  color: white;
  font-weight: 700;
}

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  background: url("images/clinic‑front.jpg") no-repeat center/cover;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  animation: fadeIn 1.5s ease-in;
}

.hero p { animation: fadeIn 2s ease-in; }
.hero .btn {
  background: #25D366;
  padding: 12px 30px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  animation: fadeIn 2.5s ease-in;
}

.section { padding: 80px 20px; text-align: center; }
.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  animation: fadeInUp 1.3s ease-in;
}

.card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.reviews .review {
  background: white;
  margin: 10px auto;
  padding: 15px;
  width: 80%;
  border-radius: 8px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
  animation: fadeInDown 1s ease;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: auto;
  width: 80%;
  max-width: 500px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background: #0a6ed1;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  background: #0a6ed1;
  color: white;
  padding: 20px;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}