      #popup {
      display: none;
      position: fixed;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -30%);
      padding: 20px;
      background: #fff;
      border: 1px solid #ccc;
      box-shadow: 0 0 15px rgba(0,0,0,0.2);
      z-index: 1000;
    }
    #popup button {
      margin-top: 10px;
    }
    #overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.4);
      z-index: 999;
    }
    .thankyou-page{
      padding: 150px 0px;
      background: #f2f2f2;
    }
    .thank-you-box {
      background: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      text-align: center;
      max-width: 500px;
      width: 90%;
    }
    .thank-you-box h1 {
      color: #28a745;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    .thank-you-box p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #333;
    }
    .thank-you-box a {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ff6600;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }



  .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999999;
    }

    .popup-box {
      background: #18283a;
      color: white;
      border-radius: 10px;
      max-width: 400px;
      width: 90%;
      padding: 20px;
      position: relative;
    }

    .popup-box h2 {
      margin-top: 0;
      font-size: 20px;
      margin-bottom: 10px;
      color:#fff;
      text-align: center;
    }

    .popup-box img {
      width: 100%;
      border-radius: 5px;
      margin-bottom: 15px;
    }

    .popup-box p {
      font-size: 14px;
    }

    .popup-box input {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      margin-bottom: 15px;
      border: none;
      border-radius: 5px;
      font-size: 14px;
    }

    .popup-box button {
      background: orange;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      width: 100%;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
      color: white;
    }

    .banner {
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('../images/slides/slide-v2-21.jpg') no-repeat center center/cover;
      height: 90vh;
      color: #fff;
      text-align: center;
      padding: 20px;
    }
    .banner-content {
      max-width: 800px;
      background: rgba(0, 0, 0, 0.5);
      padding: 30px;
      border-radius: 10px;
    }
    .banner h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    .banner p {
      font-size: 1.2rem;
      margin-bottom: 25px;
    }
    .banner a {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ff6600;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      .banner {
        height: 26vh;
        background-position: top center;
      }
      .banner h1 {
        font-size: 1.8rem;
      }
      .banner p {
        font-size: 1rem;
      }
      .banner-content {
        padding: 20px;
      }
    }

/* Hero Section */
.hero {
  position: relative;
  
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.subtext {
  font-size: 1.1rem;
  max-width: 800px;
}
.confidence {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: 600;
}

/* Search Bar */
.search-bar {
  position: relative;
  bottom: 0;
  width: 100%;
  background: #f1993a;
  padding: 20px;
  z-index: 3;
}
.search-bar form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
.search-bar input,
.search-bar select {
  padding: 10px 15px;
  border-radius: 50px;
  border: none;
  outline: none;
  flex: 1;
  min-width: 180px;
}
.search-bar button {
  padding: 10px 20px;
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-bar button:hover {
  background: #d27f25;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .search-bar form {
    flex-direction: column;
    align-items: stretch;
  }
}

input::placeholder,
textarea::placeholder {
  color: #999999; /* light gray */
  font-style: italic;
}