body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  background: #f8f9fa;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #0b3d2e, #145c43);
  color: white;
  padding: 25px;
  text-align: center;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* HERO */
.hero {
  text-align: center;
  background: white;
  padding: 80px 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.hero h2 {
  font-size: 32px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #0b3d2e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 15px;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* FORM */
input, textarea, select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

button {
  background: #0b3d2e;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

    nav a {
        display: block;
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 24px;
    }

    section {
        padding: 40px 15px;
    }

}
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item h3 {
  padding: 15px;
}
.locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.location-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 50px;
}

.service-card {
    display: block;
    text-decoration: none;
    color: #222 !important;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-details {
    padding: 60px;
    max-width: 900px;
    margin: auto;
}

.service-details ul {
    line-height: 2;
}body {
    background: #f5f7fa;
    color: #222;
}

