* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
}

.border-wrapper {
  border: 5px solid #110f0f;
  margin: 10px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
nav ul li a:hover,
nav ul li a:active {
  border-bottom: 2px solid blue;
}

.username-btn {
  background-color: #c9f1ff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90vh;
  padding: 0 40px;
}

.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 36px;
  color: #000;
  line-height: 1.4;
}

.highlight {
  -webkit-text-fill-color: #00bfff;
}

.hero-left p {
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.main-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #00bfff;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

.hero-right img {
  width: 680px;
  height: auto;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    text-align: center;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 8px 0;
  }

  .username-btn {
    padding: 6px 12px;
    font-size: 14px;
    width: auto;
  }

  .hero {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }

  .hero-left {
    width: 100%;
  }

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 14px;
  }

  .main-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-right {
    margin-top: 20px;
  }

  .hero-right img {
    width: 80%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 24px;
  }

  nav ul {
    gap: 10px;
  }

  .main-btn {
    font-size: 13px;
    padding: 8px 18px;
  }

  .hero-right img {
    width: 90%;
    max-width: 320px;
  }
}

/* Services Overview Section */
.services-overview {
  width: 100%;
  background: #00bfff;
  color: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 50px 20px;
  text-align: center;
}

.services-overview .col {
  flex: 1;
  min-width: 200px;
}

.services-overview h3 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.services-overview p {
  font-size: 18px;
}

/* Responsive (for mobile) */
@media (max-width: 768px) {
  .services-overview {
    flex-direction: column;
    gap: 20px;
  }
}
.booking {
  text-align: center;
  padding: 50px 20px;
  background: #f4f9ff;
}
.booking h2 {
  margin-bottom: 20px;
}
.booking button {
  background: #00bfff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.booking button:hover {
  background: #0090cc;
}
.thank-you {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  color: green;
  display: none;
}

/* --- Quality Description Section --- */
.quality {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}
.quality h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #00bfff;
}
.quality .qualities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.quality .quality-box {
  background: #f4f9ff;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.quality .quality-box h3 {
  margin-bottom: 10px;
  color: #333;
}

/* --- Newsletter Subscription Section --- */
.newsletter {
  background: #00bfff;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.newsletter h2 {
  margin-bottom: 20px;
}
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  width: 220px;
}
.newsletter button {
  background: #fff;
  color: #00bfff;
  font-weight: bold;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter button:hover {
  background: #eee;
}

/* Responsive */
@media (max-width: 768px) {
  .quality .qualities {
    flex-direction: column;
    align-items: center;
  }
  .newsletter form {
    flex-direction: column;
  }
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding: 70px;
}
/* Left side services */
.services {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(237, 18, 18, 0.1);
}
.services h2 {
  margin-bottom: 10px;
}
.services p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}
.service-item span {
  font-size: 16px;
  font-weight: 500;
}
.price {
  color: #00bfff;
  font-weight: bold;
}
.add-btn,
.remove-btn {
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}
.add-btn {
  background: #e6f7ff;
  color: #00bfff;
}
.add-btn:hover {
  background: #00bfff;
  color: #fff;
}
.remove-btn {
  background: #ffe6f0;
  color: #d6336c;
}
.remove-btn:hover {
  background: #d6336c;
  color: #fff;
}

.cart {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cart h2 {
  margin-bottom: 15px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}
table th,
table td {
  border-bottom: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  font-size: 14px;
}
.total {
  font-size: 18px;
  font-weight: bold;
  margin: 35px 0;
}
.form-group {
  margin-bottom: 10px;
}
.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}
.book-btn {
  width: 100%;
  background: #00bfff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #0090cc;
}

/* Quality Section */
.qualities {
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.quality-box {
  width: 22%;
}

.quality-box img {
  width: 60px;
  margin-bottom: 15px;
}

.quality-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.quality-box p {
  font-size: 14px;
  color: #555;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(90deg, #0093e9, #007adf);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.newsletter h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

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

.newsletter-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  outline: none;
  min-width: 200px;
  font-size: 16px;
}

.newsletter-form button {
  background: #fff;
  color: #007adf;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background: #f1f1f1;
}

/* Booking Section */
.booking {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}

.booking input {
  padding: 12px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 220px;
}

.booking button {
  background: #007adf;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.booking button:hover {
  background: #005fa3;
}

.message {
  margin-top: 15px;
  font-size: 16px;
  color: green;
  display: none;
}
footer {
  background: #fff;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #555;
}

.footer-box {
  width: 22%;
  margin-bottom: 20px;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #007adf;
}

.social-icons a {
  margin-right: 10px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
}
.social-icons img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.social-icons img:hover {
  transform: scale(1.1);
}
