@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  background: #f8f9fb;
  color: #333;
  line-height: 1.6;
}

.header {
  background: #0078b7;
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav {
  margin-top: 10px;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav a:hover,
.nav a.active {
  opacity: 0.8;
  border-bottom: 2px solid #fff;
}

.hero {
  background: linear-gradient(to left, #0097d1, #00bcd4);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: white;
  color: #0078b7;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e8f4fb;
}

.about {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.about h2 {
  color: #0078b7;
  margin-bottom: 15px;
}

.footer {
  background: #0078b7;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
.services {
  background: #f8f9fb;
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  color: #0078b7;
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #009688;
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
  font-size: 1rem;
}
.booking {
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fb;
}

.booking h2 {
  color: #0078b7;
  font-size: 2rem;
  margin-bottom: 20px;
}

.booking form {
  background: #fff;
  max-width: 500px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: right;
}

.booking form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0078b7;
}

.booking form input,
.booking form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.booking form button {
  background: #009688;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.booking form button:hover {
  background: #00796b;
}
.contact {
  padding: 60px 20px;
  background: #f8f9fb;
  text-align: center;
}

.contact h2 {
  color: #0078b7;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info {
  margin-bottom: 30px;
  color: #555;
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact form {
  background: #fff;
  max-width: 500px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: right;
}

.contact form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0078b7;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact form button {
  background: #009688;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.contact form button:hover {
  background: #00796b;
}
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.time-slot-btn {
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #009688;
  background: #fff;
  color: #009688;
  cursor: pointer;
  transition: 0.3s;
}

.time-slot-btn:hover {
  background: #009688;
  color: #fff;
}

.time-slot-btn.selected {
  background: #009688;
  color: #fff;
}

.time-slot-btn.booked {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  border-color: #ccc;
}
.time-slot-btn.selected {
  background-color: #4caf50;
  color: white;
  border: 2px solid #388e3c;
}
.time-slot-btn.booked {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

