/* ================================
   Background Container
   ================================ */
   .background-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-image: url(../images/calendar1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 60vh;
  }
  
  /* ================================
     Hero Banner Section
     ================================ */
  .hero-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: none;
  }
  
  .hero-overlay {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 10;
  }
  
  .breadcrumb {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    opacity: 0.8;
  }
  
  .page-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: capitalize;
    margin: 0;
  }
  
  section.hero-banner + .about-us {
    margin-top: 20px;
  }
  

.animate-left,
.animate-right {
  opacity: 0;
}

.animate-now.animate-left {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-now.animate-right {
  animation: slideInRight 1s ease-out forwards;
}


  /* ================================
     General Section Styling
     ================================ */
  section {
    padding: 50px 20px;
    text-align: center;
  }
  
  /* ================================
     Hero Section
     ================================ */
  .hero {
    background-color: white;
    color: black;
    padding: 120px 20px;
  }
  
  .hero h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
  }
  
  .hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
  }
  
  .cta-buttons .btn {
    display: inline-block;
    background: #d62828;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
  }
  
  .cta-buttons .btn:hover {
    background: #b71c1c;
    color: white;
  }
  
  /* ================================
     Scheduling Section
     ================================ */
  .scheduling {
    background-color: rgb(246, 241, 241);
  }
  
  .scheduling h2 {
    font-size: 2em;
    margin-bottom: 15px;
  }
  
  /* ================================
     Contact Form Section
     ================================ */
  .contact {
    background-color: white;
  }
  
  .contact h2 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 40px;
  }
  
  .contact form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
  
  .contact label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
  }
  
  .contact input,
  .contact select,
  .contact textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact button {
    background-color: #d62828;
    font-weight: bold;
    text-align: center;
    color: white;
    padding: 10px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
  }
  
  .contact button:hover {
    background-color: #b71c1c;
  }
  
  /* ================================
     Testimonials Section
     ================================ */
  .testimonials {
    background-color: rgb(246, 241, 241);
    margin: 80px 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .testimonials h2 {
    font-size: 24px;
    font-weight: bold;
  }
  
  .testimonials blockquote {
    font-style: italic;
    font-size: 1.2em;
    margin: 20px auto;
    max-width: 600px;
    background: #f1f1f1;
    padding: 15px;
    border-left: 5px solid #d62828;
  }
  
  /* ================================
     FAQs Section
     ================================ */
  .faqs {
    background-color: #f9f9f9;
  }
  
  .faqs h2 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 40px;
  }
  
  .faqs details {
    background: white;
    margin: 10px auto;
    max-width: 600px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .faqs summary {
    font-weight: bold;
    list-style: none;
  }
  
  .faqs p {
    margin-top: 10px;
  }
  
  /* ================================
     Confirmation Section
     ================================ */
  .confirmation {
    background-color: #0073e6;
    color: white;
    padding: 100px;
  }
  
  .confirmation h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }
  
  .confirmation p {
    font-size: 1.2em;
    margin-top: 10px;
  }
  
  /* ================================
     Responsive Design
     ================================ */
  
     @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(100px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .animate-left {
      animation: slideInLeft 1s ease-out forwards;
    }
    
    .animate-right {
      animation: slideInRight 1s ease-out forwards;
    }
    
  
  @media (max-width: 1024px) {
    .hero {
      padding: 80px 20px;
    }
  
    .hero h1 {
      font-size: 2em;
    }
  
    .hero p {
      font-size: 1.1em;
    }
  
    .confirmation {
      padding: 80px 20px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-banner {
      height: 200px;
    }
  
    .breadcrumb {
      font-size: 0.9rem;
    }
  
    .page-title {
      font-size: 1.8rem;
    }
  
    .hero h1 {
      font-size: 1.8em;
    }
  
    .hero p {
      font-size: 1em;
    }
  
    .scheduling h2,
    .confirmation h2,
    .contact h2,
    .testimonials h2,
    .faqs h2 {
      font-size: 1.5em;
    }
  
    .testimonials blockquote,
    .confirmation p,
    .hero p {
      font-size: 1em;
    }
  
    .confirmation {
      padding: 60px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .cta-buttons .btn {
      width: 100%;
      margin: 10px 0;
    }
  
    .contact form {
      padding: 0 10px;
    }
  
    .hero h1 {
      font-size: 1.5em;
    }
  
    .page-title {
      font-size: 1.5rem;
    }
  
    .confirmation h2 {
      font-size: 1.5em;
    }
  }