    .contactus {
      background-image: url('../img/meta.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
   .overlay-contact {
      background-color: rgba(255, 255, 255, 0.892);

    }
    * {
      box-sizing: border-box;
    
 
    }
    [data-animate] {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    [data-animate].animated {
      opacity: 1;
      transform: translateY(0);
    }

   
    .jobs {
      background-image: url('../img/jobs.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    section {
      padding: 60px 20px;
    }
    .jobs-container {
      max-width: 1000px;
      margin: auto;
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    h2.title {
      text-align: center;
      color: #e60000;
      margin-bottom: 40px;
      font-size: 32px;
    }

    .job-card {
      background-color: #f4f4f4;
      border-radius: 10px;
      margin-bottom: 20px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07);
      cursor: pointer;
      transition: transform 0.3s ease;
      opacity: 0;
      transform: translateY(40px);
    }

    .job-card.visible {
      opacity: 1;
      transform: translateY(0);
      transition: all 0.6s ease;
    }

    .job-header {
      padding: 20px;
      background-color: #e60000;
      color: #fff;
      font-weight: bold;
      font-size: 18px;
    }

    .job-details {
      display: none;
      padding: 20px;
      color: #333;
      background-color: #fff;
      border-top: 1px solid #ddd;
    }

    .job-card.active .job-details {
      display: block;
    }

    @media (max-width: 768px) {
      .job-header {
        font-size: 16px;
        padding: 15px;
      }
      .job-details {
        font-size: 15px;
      }
    }
  .testdrive {
    background: url('../img/testdrive.webp') no-repeat center center fixed;
    background-size: cover;
  }
  .priceoffer {
    background: url('../img/priceoffer.webp') no-repeat center center fixed;
    background-size: cover;
  }

  .testdrive .shadow-2xl {
    backdrop-filter: blur(5px);
  }
