/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f9ff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  background: linear-gradient(to right, #0d6efd, #20c997);
  padding: 20px;
  color: white;
}

header img {
  max-height: 120px;
  margin-bottom: 10px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  gap: 8px;
  transition: background 0.3s ease;
}

.whatsapp-button img {
  width: 20px;
  height: 20px;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

section {
  padding: 3rem 1rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  color: #003e7f;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  text-align: left;
  position: relative;
  max-width: 600px;
  margin-inline: auto;
}

ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

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

.card:hover {
  transform: scale(1.03);
}

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

.card h3 {
  padding: 1rem;
  color: #0055a5;
}

.book-now {
  display: inline-block;
  margin-top: 1rem;
  background: #ff6f00;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.book-now:hover {
  background: #e66300;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: #005dc1;
}

footer {
  background-color: #002952;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

img[alt="logo.png"] {
  display: block;
  margin: 1rem auto;
  max-height: 180px;
  object-fit: contain;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  .book-now {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .card img {
    height: 150px;
  }
}
/* Animation keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal animation when element becomes visible */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth hover transition for buttons and cards */
button,
.book-now,
.whatsapp-button,
.card {
  transition: all 0.3s ease;
}