body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero {
      /* background: url('img/vImg.jpg') no-repeat center center/cover; */
      height: 100vh;
      position: relative;
      color: white;
    
    }
    .hero-overlay {
      background-color: rgba(0, 0, 100, 0.5);
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }
    /* .hero-content {
      position: relative;
      z-index: 2;
      top: 80%;
      transform: translateY(-50%);
    } */
    .btn-yellow {
      background-color: #ffe600;
      color: #000;
      font-weight: bold;
      border-radius: 5px;
      padding: 10px;
    }
    .btn-yellow:hover{
      background-color: #2f036f;
      font-size: 21px;
    }
    .margin{
      margin-bottom: 20%;
    }
    .btn-white:hover{
      background-color: #2f036f;
      font-size: 21px;
    }


    
    .hero-section {
      background:
       /* linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), */
       linear-gradient(to bottom, rgba(39, 28, 238, 0.5), rgba(102, 81, 244, 0.5)),
                  url('img/vImg.jpg') no-repeat center center/cover;
      color: white;
      padding: 120px 0;
      text-align: center;
    }

    .hero-section h1 span {
      color: #ffe600;
    }

    .info-section {
      padding: 60px 15px;
    }

    .btn-custom {
      width: 100%;
      margin-bottom: 15px;
      background-color: #40c4ff;
      color: white;
      font-weight: bold;
    }

    .btn-custom:hover {
      background-color: #00b0ff;
    }

    @media (min-width: 768px) {
      .btn-custom {
        width: auto;
      }
    }


  

 .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999;
}

.search-box {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  padding: 20px;
  border-radius: 10px;
  z-index: 1000;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: aliceblue;
}

.search-box.active {
  transform: translate(-50%, -50%) scale(1);
}

.overlay.active {
  display: block;
}

.close-btn {
  margin-bottom: 40px;
  background: none;
  border: none;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}
