
    /* Banner */
    .banner {
      background: url('../img/job-search.jpg') center/cover no-repeat;
      position: relative; color: #fff;
      min-height: 100vh;
      display: flex; align-items: center;
    }
    .banner-overlay { background: rgba(0, 0, 0, 0.75); position: absolute; inset: 0; backdrop-filter: blur(2px); }
    .banner-content { position: relative; z-index: 2; }
    .highlight { color: #0099e6; }
    .highlight-content { color: #0099e6; }

    /* SEARCH BOX */
    .search-box-bg {
      background: rgba(230, 230, 230, 0.4); /* Semi-transparent background */
      border-radius: 10px;
      padding: 8px 15px 20px 15px; /* Balanced padding: top/bottom 15px, sides 20px */
    }
    .search-box {
      background: #fff; border-radius: 10px; overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      display: flex; align-items: stretch; flex-wrap: nowrap;
      margin-top: 0px;
    }
    .search-box input {
      border: 1px solid #f2f2f2; outline: none; padding: 24px 28px;
      flex: 1 1 0; min-width: 0;
      border-right: 1px solid #e6e6e6;
      font-size: 14px;
    }
    .search-box input:last-of-type { border-right: none; }
    .search-box button {
      border: none; padding: 0 20px; background: #0099e6; color: #fff;
      transition: background 0.3s ease;
      flex: 0 0 140px;
      display: inline-flex; align-items: center; justify-content: center;
    }
    .search-box button:hover { background: #012641; color: #FFF; }

    @media (max-width: 767px) {
      .search-box { flex-direction: column; }
      .search-box input { border-right: none; border-bottom: 1px solid #eee; padding: 14px; }
      .search-box input:last-of-type { border-bottom: none; }
      .search-box button { width: 100%; flex: 0 0 auto; padding: 14px; font-size: 16px; }
    }

    /* Avatar stack */
    .avatar-stack { display: flex; align-items: center; position: relative; }
    .avatar-stack img {
      border: 2px solid #fff; border-radius: 50%; width: 50px; height: 50px; object-fit: cover;
      margin-left: -15px; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; z-index: 1;
    }
    .avatar-stack img:first-child { margin-left: 0; }
    .avatar-stack img:hover { transform: scale(1.2) rotate(5deg); box-shadow: 0 0 15px rgba(0,230,255,0.8); z-index: 2; }
    .avatar-badge {
      position: absolute; right: -10px; bottom: -5px; background: #0099e6; color: #FFF; font-weight: bold; font-size: 12px;
      padding: 5px 8px; border-radius: 50px; border: 2px solid #fff; z-index: 3; white-space: nowrap;
    }

    /* Slideshow */
    .slideshow-container {
      position: relative; width: 100%; max-width: 500px; height: 500px; margin: auto; overflow: hidden;
      border-radius: 10px;
    }
    .slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; }
    .slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
    .slide.active { opacity: 1; }

    
	
	.banner-content h1 {
 font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2.5rem; /* desktop के लिए */
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

@media (max-width: 767px) {
  .banner-content h1 {
    font-size: 1.7rem; /* mobile के लिए थोड़ा छोटा */
	margin-top:50px;
  }
}


/* Autocomplete suggestions styling (clean background) */
.ui-autocomplete {
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 5px 0;
  background-color: #fff; /* Only white background */
  border: 1px solid :#f2f2f2;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-size: 14px;
  z-index: 1000;
}

/* Remove jQuery UI theme background */
.ui-menu .ui-menu-item-wrapper {
  background: transparent !important;
  padding: 8px 16px;
}

.ui-menu-item:hover .ui-menu-item-wrapper {
  background-color: #0099e6 !important; /* Hover color */
  color: #fff;
  border-radius:3px;
}
 

  