* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    font-family: 'Segoe UI', sans-serif;
    height: 100%;
}
header {
    position: fixed;
    width: 100%;
    padding: 1.5em 2em;
    background: rgba(0, 0, 0, 0.801);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.3);
}
.logo {
    font-weight: bold;
    font-size: 1.5em;
    color: aqua;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2em;
}
nav a {
    color: aqua;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 2px;
}
nav a:hover {
    border-bottom: 2px solid aqua;
}

.hero {
    height: 100vh;
    background: url('https://www.onthemovedriving.com/resources/media/hero-image.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}
.hero-text {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 2em;
    border-radius: 6px;
}
.hero-text h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}
.hero-text p {
    font-size: 1.2em;
    margin-bottom: 1em;
}
.hero-text button {
    padding: 0.7em 1.5em;
    font-size: 1em;
    background-color: aqua;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.hero-text button:hover {
    background-color: #00cccc;
}

/* Popup Form */
.popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.form-container {
    background: #fff;
    padding: 2em;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 0 20px aqua;
    position: relative;
}
.form-container h2 {
    margin-bottom: 1em;
    color: #333;
}
.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.form-container button {
    width: 100%;
    padding: 0.8em;
    background: aqua;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}
.form-container button:hover {
    background: #00cccc;
}
.close-btn {
    position: absolute;
    top: 1em;
    right: 1em;
    font-size: 1.5em;
    cursor: pointer;
}
/* You can also move this CSS into styles.css */
    .schedule-btn {
      background-color: rgba(0, 0, 0, 0);
      color: #a5fcff;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      display: block;
    }

    .popup, .schedule-sidebar {
      display: none;
      position: fixed;
      top: 10%;
      left: 50%;
      transform: translate(-50%, 0);
      width: 90%;
      max-width: 600px;
      background: white;
      border: 2px solid #333;
      border-radius: 8px;
      padding: 1.5rem;
      z-index: 1000;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .popup h2 {
      margin-top: 0;
    }

    .overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 999;
    }

    .close-btn-schedule {
      float: right;
      cursor: pointer;
      font-size: 1.2rem;
      color: red;
    }

    .class-section {
      margin-top: 1rem;
    }

    .class-section h3 {
      margin-bottom: 0.3rem;
      color: #007BFF;
    }

    ul {
      padding-left: 1.2rem;
    }

    .about-us {
    padding: 40px 20px;
    background-color: #f7f7f7;
    color: #333;
}

.about-us .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-us h2, .about-us h3 {
    color: #0055a5;
    margin-bottom: 10px;
}

.about-us ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.about-us li {
    margin-bottom: 8px;
}
.site-footer {
    background-color: #00cccc;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo,
.footer-contact,
.footer-links {
    flex: 1 1 250px;
    margin: 10px 20px;
}

.footer-logo h3,
.footer-contact h4,
.footer-links h4 {
    margin-bottom: 10px;
    color: #ffffff;
}

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

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

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    color: #000;
}
.testimonials {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-box {
  background-color: #ffffff;
  border-left: 4px solid #003366;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-5px);
}

.testimonial-box p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 15px;
}

.testimonial-box .stars {
  color: #ffcc00;
  font-size: 18px;
  margin-bottom: 8px;
}

.testimonial-box h4 {
  color: #003366;
  font-weight: 600;
}

.inclusive-services h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.inclusive-services p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.inclusive-services h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo,
  .footer-contact,
  .footer-links {
    margin: 10px 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 1em;
    margin-top: 1em;
  }

  .hero-text h1 {
    font-size: 2em;
  }

  .hero-text p {
    font-size: 1em;
  }

  .hero-text button {
    font-size: 0.9em;
    padding: 0.6em 1.2em;
  }

  .form-container {
    width: 95%;
    padding: 1.5em;
  }

  .popup {
    width: 95%;
    padding: 1em;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-contact,
  .footer-links {
    margin: 10px 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}
/*****************
CONTACT Styling Section
*****************/

.contact-section {
  background-color: #f7f9fc;
  padding: 3rem 1rem;
}

.contact-container {
  width: 80%;
  margin: auto;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contact-container h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  color: #333;
}

.contact-container p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #666;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.contact-form button {
  background-color: #00cccc;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  .contact-container {
    padding: 1rem;
  }

  .contact-container h2 {
    font-size: 1.5rem;
  }
}