* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.video-banner {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  z-index: 1;
  
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 30, 60, 0.089);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 260px;
  gap: 40px;
}

/* Search Bar */
.search-wrapper {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 30px;
  overflow: hidden;
  padding: 5px 10px;
  backdrop-filter: blur(10px);
  width: 700px;
  max-width: 90%;
}


.search-input {
  flex: 1;
  padding: 15px 16px;
  border: none;
  background: #8080801f;
  color: #000;
  font-size: 30px;
  font-weight: none;  /* ✅ makes text bold */
  outline: none;
  
   /* ✅ Add text shadow for readability */
  text-shadow: 0 0 0px rgba(0,0,0,1.7);
}

.search-input::placeholder {
  color: #000;
  
}

.search-btn {
  background-color: #0a4b9e;
  border: none;
  color: #fcf9f9;
  font-size: 18px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 20px;
}


/* Buttons Row */
.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  background-color: #ffffff;
  height: 60px;
  border-radius: 20px;
}

.btn-box {
  background-color: #ffffff;
  color: #003a70;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-box:hover {
  background-color: #e6f0fa;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #003a70;
}

.search-results-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.title {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 800px;
  margin-bottom: 30px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 40px 0 0 40px;
}

.search-bar button {
  background-color: #007b9f;
  color: white;
  border: none;
  padding: 16px 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  margin-right: 8px;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid #007b9f;
  border-radius: 20px;
  background-color: transparent;
  color: #007b9f;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #003a70;
  color: white;
  border-color: #003a70;
}

/* Result Heading */
.result-heading {
  font-size: 20px;
  font-weight: 600;
}

.banner {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url("images\ \(11\).jpg") no-repeat center center/cover; /* Replace with your image */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Content */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Search Bar */
.search-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 250px;
  max-width: 600px;
  padding: 15px 20px;
  border: none;
  border-radius: 40px 0 0 40px;
  outline: none;
  font-size: 16px;
  
}

.search-btn {
 width: 50px;
  background: #0a4b9e;
  border: none;
  border-radius: 40px 40px 40px 40px;
  color: #fff;

  font-size: 21px;
  cursor: pointer;
  transition: 0.3s;
  height: 50px;
 
}

.search-btn:hover {
  background: #f57f17;
}

/* Buttons Row */
.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background-color: white;
  border-radius: 10px;
  height: 50px;
}

.btn-box {
  background: #fff;
  color: #000;
  padding: 12px 25px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-box:hover {
  background: #007bff;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-input {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 40px;
    margin-bottom: 10px;
  }
  .search-btn {
    width: 100% !important;      /* button full width */
    width: 50px;
    border-radius: 40px;
  }
/* Responsive Fix for Search Bar */
@media (max-width: 768px) {
  .search-wrapper {
    width: 100% !important;      /* full width on mobile */
    max-width: 100% !important;
    flex-direction: column;
    align-items: stretch;        /* stretch children full width */
    padding: 10px;
  }
  }
  .button-row {
    flex-direction: column;
    align-items: center;
  }
  .btn-box {
    width: 90%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 1.8rem;
  }
  .search-input {
    width: 100%;
    font-size: 14px;
  }
  .btn-box {
    font-size: 14px;
    padding: 10px 20px;
  }
}
/* Responsive */
    @media (max-width: 768px) {
      .button-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .search-wrapper {
        flex-direction: column;
      }










