/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text for readability */
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Section */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%; /* Smaller padding */
  background-color: #0c3054; /* Dark Blue */
  color: #ffffff; /* White text */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-size: 1.5rem; /* Text size for "ServEase" */
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px; /* Smaller gap */
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #ffffff; /* White text */
  font-weight: 500; /* Medium weight */
  font-size: 1rem; /* Normal text size */
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

header nav ul li a:hover {
  color: #FFD700; /* Gold for hover effect */
  transform: scale(1.05);
}

header .cta .btn {
  background-color: #FFD700; /* Gold for buttons */
  color: #0c3054; /* Dark Blue text */
  padding: 10px 20px; /* Smaller padding */
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

header .cta .btn:hover {
  background-color: #FFC107; /* Slightly darker shade of gold on hover */
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 4px;
  width: 25px; /* Smaller width */
  background-color: #ffffff; /* White for menu toggle */
  margin: 4px 0;
  transition: 0.4s;
}

/* Registration Section */
.registration {
  padding: 80px 10%;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.registration::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7- 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}

.registration .container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideUp 0.8s ease-out;
}

.registration h2 {
  font-size: 2.8rem;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.registration h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #ff6b6b, #ff4c4c);
  border-radius: 3px;
}

.registration form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.registration form label {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.registration form input,
.registration form select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #444;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #1f1f1f;
  color: #e0e0e0;
  margin-bottom: 0;
}

.registration form input:focus,
.registration form select:focus {
  border-color: #ff6b6b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.registration form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.registration form button {
  grid-column: 1 / -1;
  background: linear-gradient(to right, #ff6b6b, #ff4c4c);
  color: #1f1010;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

.registration form button:hover {
  background: linear-gradient(to right, #ff4c4c, #ff6b6b); /* New hover style */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.registration form button:active {
  transform: translateY(0);
}

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

/* Footer Section */
footer {
  background-color: #2C3E50; /* Dark Blue-Green for footer */
  color: #e0e0e0;
  padding: 60px 10% 30px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  max-width: 300px;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #e0e0e0;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3498DB; /* Sky Blue for hover effect */
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons li a {
  color: #e0e0e0;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.social-icons li a:hover {
  color: #3498DB; /* Sky Blue for social icons */
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
}

/* Registration Form Enhanced Styles */
.registration {
  padding: 80px 10%;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.registration::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3.zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3.zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2.zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}

.registration .container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: slideUp 0.8s ease-out;
}

.registration h2 {
  font-size: 2.8rem;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.registration h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #ff6b6b, #ff4c4c);
  border-radius: 3px;
}

.registration form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.registration form label {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.registration form input,
.registration form select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #444;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #1f1f1f;
  color: #e0e0e0;
  margin-bottom: 0;
}

.registration form input:focus,
.registration form select:focus {
  border-color: #ff6b6b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.registration form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.registration form button {
  grid-column: 1 / -1;
  background: linear-gradient(to right, #ff6b6b, #ff4c4c);
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

.registration form button:hover {
  background: linear-gradient(to right, #ff4c4c, #ff6b6b); /* New hover style */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.registration form button:active {
  transform: translateY(0);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .registration {
    padding: 40px 5%;
  }

  .registration .container {
    padding: 20px;
  }
  .registration form {
    grid-template-columns: 1fr;
  }

  .registration h2 {
    font-size: 2rem;
  }
}

/* Field Groups */
.field-group {
  position: relative;
  margin-bottom: 15px;
}

.field-group .helper-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 0.8rem;
  color: #666;
}

/* Custom Checkbox Style */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)); /* Removed background image */
  color: #fff;
  text-align: center;
  padding: 180px 20px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for better contrast */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-in-out;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: fadeIn 2s ease-in-out;
}

.hero .search-form {
  display: flex;
  justify-content: center;
  animation: slideIn 1s ease-in-out;
}

.hero .search-form input {
  padding: 15px;
  width: 400px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1.1rem;
  background-color: #fff;
  color: #2C3E50;
}

.hero .search-form button {
  padding: 15px 25px;
  background-color: #FFD700;
  border: none;
  color: #2C3E50;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero .search-form button:hover {
  background-color: #FFC107;
}

.error-message {
  color: #ff4c4c;
  margin-top: 10px;
  display: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px; /* Reduced padding for mobile devices */
  }
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero .search-form input {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero .search-form input {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .hero .search-form input {
    width: 80%;
  }
}

.recommendations {
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  background-color: white;
  border: 1px solid #ddd;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
}

.suggestion-item:hover {
  background-color: #f1f1f1;
}

.clear-btn {
  background-color: red;
  color: white;
  padding: 5px 10px;
  cursor: pointer;
}

.clear-btn:hover {
  background-color: darkred;
}

/* Services Section */
.services {
  padding: 80px 10%;
  text-align: center;
  background-color: #1F1F1F; /* Dark Charcoal background for services */
}

.services h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #e0e0e0;
  font-weight: bold;
}

.service-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.service-item {
  background-color: #34495E; /* Dark Blue-Green for service cards */
  padding: 30px;
  border-radius: 20px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-item img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.8rem;
  margin: 15px 0;
  color: #e0e0e0;
}

.service-item p {
  font-size: 1rem;
  color: #95A5A6; /* Muted Gray for text */
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  background-color: #FF6B6B; /* Coral button */
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-btn:hover {
  background-color: #FF4C4C;
  transform: scale(1.05);
}

.service-details {
  display: none;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #b0b0b0;
}

.service-details.active {
  display: block;
}

/* Footer Section */
footer {
  background-color: #2C3E50; /* Dark Blue-Green for footer */
  color: #e0e0e0;
  padding: 60px 10% 30px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  max-width: 300px;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #e0e0e0;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #e0e0e0;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3498DB; /* Sky Blue for hover effect */
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons li a {
  color: #e0e0e0;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.social-icons li a:hover {
  color: #3498DB; /* Sky Blue for social icons */
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #0c3054; /* Dark Blue for mobile */
    position: absolute;
    top: 50px; /* Adjusted for smaller header */
    left: 0;
  }

  header nav.active {
    display: flex;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero .search-form input {
    width: 100%;
  }

  .service-list {
    flex-direction: column;
    align-items: center;
  }

  .registration {
    padding: 40px 5%;
  }

  .registration .container {
    padding: 20px;
  }

  .registration form {
    grid-template-columns: 1fr;
  }

  .registration h2 {
    font-size: 2rem;
  }

  .booking {
    padding: 40px 20px;
  }

  .booking .container {
    padding: 30px 20px;
  }

  .booking h2 {
    font-size: 2rem;
  }

  .booking form select,
  .booking form input,
  .booking form textarea {
    padding: 12px;
  }

  .blog-content {
    flex-direction: column;
    align-items: center;
  }

  .blog-post {
    width: 100%;
    max-width: 400px;
  }

  .post h2 {
    font-size: 2rem;
  }

  .post h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .hero .search-form input {
    width: 80%;
  }

  .service-list {
    gap: 20px;
  }

  .service-item {
    width: 100%;
    max-width: 400px;
  }
}

/* Laptop and Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero .search-form input {
    width: 70%;
  }

  .service-list {
    gap: 25px;
  }

  .service-item {
    width: 45%;
  }

  .registration {
    padding: 60px 8%;
  }

  .registration .container {
    padding: 30px;
  }

  .registration form {
    grid-template-columns: 1fr 1fr;
  }

  .registration h2 {
    font-size: 2.5rem;
  }

  .booking {
    padding: 60px 8%;
  }

  .booking .container {
    padding: 30px;
  }

  .booking h2 {
    font-size: 2.5rem;
  }

  .booking form select,
  .booking form input,
  .booking form textarea {
    padding: 14px;
  }

  .blog-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .blog-post {
    width: 48%;
  }

  .post h2 {
    font-size: 2.2rem;
  }

  .post h3 {
    font-size: 1.6rem;
  }
}
/* Booking Form Enhanced Styles */
.booking {
  padding: 80px 5%;
  background: linear-gradient(45deg, #85FFBD 0%, #FFFB7D 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3.zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3.zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2.zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}

.booking .container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  animation: floatIn 1s ease-out;
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking h2 {
  font-size: 2.5rem;
  color: #2d3436;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.booking h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #85FFBD, #FFFB7D);
  border-radius: 2px;
}

.booking form {
  display: grid;
  gap: 25px;
}

.booking form label {
  font-size: 1.1rem;
  color: #2d3436;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s ease;
}

.booking form select,
.booking form input,
.booking form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
}

.booking form select:focus,
.booking form input:focus,
.booking form textarea:focus {
  border-color: #85FFBD;
  box-shadow: 0 0 0 4px rgba(133, 255, 189, 0.1);
  outline: none;
}

.booking form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232d3436' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 45px;
}

.booking form button {
  background: linear-gradient(45deg, #85FFBD, #FFFB7D);
  color: #2d3436;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.booking form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(133, 255, 189, 0.3);
}

.booking form button:active {
  transform: translateY(0);
}

.booking form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.booking form button:hover::before {
  left: 100%;
}
/* Blog Section */
/* Blog Section */
.blog {
  padding: 80px 10%;
  background-color: #f7f7f7; /* Light background color */
}

.blog h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #2d3436; /* Dark text color */
  font-weight: bold;
  text-align: center;
}

.blog-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog-post {
  background-color: #ffffff; /* White background for blog posts */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-post img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.blog-post h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #2d3436; /* Dark text color */
}

.blog-post p {
  font-size: 1rem;
  color: #7f8c8d; /* Muted gray for text */
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-post a {
  color: #3498DB; /* Sky Blue for links */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-post a:hover {
  color: #2980B9; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-content {
    flex-direction: column;
    align-items: center;
  }

  .blog-post {
    width: 100%;
    max-width: 400px;
  }
}
/* Redesign Get Location Button */
.booking form button#getLocationBtn {
  background: linear-gradient(45deg, #85FFBD, #FFFB7D);
  color: #2d3436;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  margin-top: 10px; /* Add margin for spacing */
}

.booking form button#getLocationBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(133, 255, 189, 0.3);
}

.booking form button#getLocationBtn:active {
  transform: translateY(0);
}

.booking form button#getLocationBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.booking form button#getLocationBtn:hover::before {
  left: 100%;
}

/* Ensure Theme Consistency */
.booking form input[type="text"],
.booking form input[type="tel"],
.booking form input[type="email"],
.booking form input[type="date"],
.booking form input[type="time"],
.booking form select,
.booking form textarea {
  background: #1f1f1f; /* Ensure dark background */
  color: #e0e0e0; /* Ensure light text */
}

/* About Us Section */
.about {
  padding: 80px 10%;
  background-color: #f7f7f7; /* Light background color */
  text-align: center;
}

.about h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #2d3436; /* Dark text color */
  font-weight: bold;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-content p {
  font-size: 1.2rem;
  color: #7f8c8d; /* Muted gray for text */
  line-height: 1.6;
  margin-bottom: 30px;
}

.about h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2d3436; /* Dark text color */
  font-weight: bold;
}

.ceo-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.ceo-profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ceo-details {
  max-width: 600px;
}

.ceo-details h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2d3436; /* Dark text color */
  font-weight: bold;
}

.ceo-details p {
  font-size: 1.1rem;
  color: #7f8c8d; /* Muted gray for text */
  line-height: 1.6;
}
/* Responsive Design */
@media (max-width: 768px) {
  .booking {
    padding: 40px 20px;
  }

  .booking .container {
    padding: 30px 20px;
  }

  .booking h2 {
    font-size: 2rem;
  }

  .booking form select,
  .booking form input,
  .booking form textarea {
    padding: 12px;
  }
}
/* Navigation Menu */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0c3054; /* Dark Blue background */
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #ffffff; /* White text */
  font-weight: 500; /* Medium weight */
  font-size: 1.1rem; /* Slightly bigger text for clarity */
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  color: #FFD700; /* Gold for hover effect */
  transform: scale(1.05);
}

nav ul li a.btn {
  background-color: #FFD700; /* Gold background for buttons */
  color: #0c3054; /* Dark Blue text */
  padding: 10px 20px;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

nav ul li a.btn:hover {
  background-color: #FFC107; /* Slightly darker gold on hover */
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 4px;
  width: 30px;
  background-color: #ffffff; /* White for menu toggle */
  margin: 4px 0;
  transition: 0.4s;
}
.blo {
  color: #FFD700; /* Yellow color */
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 20px;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Post Section */
.post {
  background: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.post h2 {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.post h3 {
  font-size: 1.8rem;
  color: #FFC107;
  margin-bottom: 10px;
}

.post p, .post ul {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post ul {
  padding-left: 20px;
}

.post ul li {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .post h2 {
    font-size: 2rem;
  }

  .post h3 {
    font-size: 1.5rem;
  }
}