header{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(195, 195, 195, 0.3) 100%);
}
.tight .container{
    max-width: 1000px !important;
}

/* .img-selections .img-fluid{
    max-height: 450px !important;
} */
.search-bar .form-control,
.search-bar .form-select {
    background-color: white;
    border: none;
    padding-left: 1rem;
    padding-right: 1rem;
}

.search-bar .btn-outline-light {
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.search-bar .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
}
.text-white{
    color: white !important
}

.daftarKota-container .select2-container--default .select2-selection--single{
    border:none !important
}
.daftarKota-container .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 1rem !important;
    background: white !important;
    border-radius: 25px;
}
.select2{
    width: 100% !important;
}

button i{
    opacity: 0;
    transition: all 0.3s ease;
}
button:hover i{
    opacity: 1;
}
.form-group{
    margin-bottom: 2rem;
}

/* new */

main{
    margin-top: 76px;
}

body {
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }
    /* Navbar */
    .navbar {
      /* background: linear-gradient(135deg, rgba(139, 179, 34, 35%) 0%, rgba(19, 61, 104, 35%) 100%); */
      background: white;
      transition: background 0.3s;
    }
    .navbar .nav-link{
        color: #313131 !important
    }
    .navbar.scrolled {
      background: #fff !important;
    }

    /* Hero */
    .hero {
      position: relative;
      /* background: url('{{ asset("images/hero.jpg") }}') no-repeat center center/cover; */
      /* min-height: 90vh; */
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.2);
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }

    /* Section Titles */
    section h2 {
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    /* Cards */
    .feature-card {
      transition: transform .3s, box-shadow .3s;
      border: none;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* Footer */
    footer {
      background: #111;
      color: #626262;
      padding: 40px 0;
    }
    footer a {
      color: #aaa;
      text-decoration: none;
    }
    footer a:hover {
      color: #fff;
    }
    footer .btn{
      color: black !important;
    }


.hero {
  /* min-height: 100vh; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.navbar-toggler{
    background-color: rgb(139, 179, 34) !important;
}
#job-list .card{
  cursor: pointer;
  transition-duration: 0.5s;
}
#job-list .card:hover {
  transition-duration: 0.5s;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}