.Imagebox {
  display: block;
}
.Imagebox .wrapper {
  display: block;
  width: 100%;
}
.Imagebox .wrapper .Image {
  display: block;
  width: 100%;
  position: relative;
  background-image: linear-gradient(135deg, #0678b1 0%, #0e3d74 100%);
  height: calc(var(--vh, 1vh) * 100);
}
@media (min-width: 1024px) {
  .Imagebox .wrapper .Image {
    height: calc(var(--vh, 1vh) * 100);
    min-height: 700px;
  }
}
.Imagebox .wrapper .Image .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 2;
}
.Imagebox .wrapper .Image .text .content {
  width: 1200px;
  margin: auto;
  text-align: center;
  margin-top: 60px;
}
.Imagebox .wrapper .Image .text .content h2 {
  font-size: 45px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}
.Imagebox .wrapper .Image .text .content h2 .typed-text {
  position: relative;
  color: orange;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 10px;
  font-size: 45px;
  display: inline-block;
}
.Imagebox .wrapper .Image .text .content h2 .typedText::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 15%;
  width: 4px;
  height: 80%;
  background-color: orange;
  opacity: 1;
}
.Imagebox .wrapper .Image .text .content h2 .typedText.animateCursor::after {
  animation: blink-cursor 1s steps(2, start) infinite;
}

@keyframes blink-cursor {
  0%,
  50% {
    background-color: orange;
  }
  50.1%,
  100% {
    background-color: transparent;
  }
}

.Imagebox .wrapper .Image .text .content .searchBoxContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.Imagebox .wrapper .Image .text .content .searchBoxContainer .searchBox {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 5px;
  padding: 10px;
  width: 85%;
  max-width: 800px;
  box-shadow: 0 0 0px rgba(255, 0, 0, 0);
  animation: holiRedBorder 10s infinite ease-in-out;
  border: solid 2px transparent;
}
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .errorBorder {
  border-color: red !important;
}
@keyframes holiRedBorder {
  0% {
    box-shadow: 0 0 0px rgba(255, 0, 0, 0);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 0px rgba(255, 0, 0, 0);
  }
}
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 15px 15px;
  border-radius: 10px;
  margin-right: 10px;
  flex-grow: 1;
  gap: 8px;
  position: relative;
}
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  i {
  font-size: 18px;
  color: #0678b1;
}
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  width: 100%;
  color: #000;
}
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown {
  position: absolute;
  top: 59px;
  left: 0;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 24px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  font-size: 15px;
  color: #2c3e50;
  user-select: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
  transform: translateY(0);
  overflow-x: hidden;
}

/* Thin & Attractive Scrollbar */
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown::-webkit-scrollbar {
  width: 1.5px;
  background: transparent;
}

.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown::-webkit-scrollbar-thumb {
  background: #a0a0a0;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown::-webkit-scrollbar-thumb:hover {
  background: #606060;
}

/* Firefox scrollbar */
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown {
  scrollbar-width: thin;
  scrollbar-color: #a0a0a0 transparent;
}

/* List styles */
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown
  ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* List items */
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown
  ul
  li {
  padding: 14px 24px;
  border-bottom: 1px solid #ecf0f1;
  cursor: pointer;
  font-weight: 600;
  color: #34495e;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Last item no border */
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown
  ul
  li:last-child {
  border-bottom: none;
}

/* Hover & focus states */
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown
  ul
  li:hover,
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown
  ul
  li:focus {
  background-color: #2980b9;
  color: #ffffff;
  transform: translateX(6px);
  outline: none;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
  transition-delay: 0s;
}

/* Optional icon next to text */
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .inputGroup
  .dropdown
  ul
  li
  svg {
  fill: currentColor;
  width: 18px;
  height: 18px;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .searchButton {
  background: #0678b1;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  text-transform: capitalize;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease-in-out;
}
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .searchButton:hover {
  background: #0056b3;
}
.Imagebox
  .wrapper
  .Image
  .text
  .content
  .searchBoxContainer
  .searchBox
  .searchButton
  i {
  margin-right: 8px;
}

.Imagebox .wrapper .Image .text .content .Category {
  display: block;
  margin-top: 70px;
  width: 100%;
}
.Imagebox .wrapper .Image .text .content .Category ul {
  display: flex;
  list-style: none;
  gap: 4px;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.Imagebox .wrapper .Image .text .content .Category ul li {
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.Imagebox .wrapper .Image .text .content .Category ul li a {
  text-decoration: none;
  display: block;
}
.Imagebox .wrapper .Image .text .content .Category ul li a i {
  color: #4db7fe;
  font-size: 30px;
}
.Imagebox .wrapper .Image .text .content .Category ul li a span {
  font-size: 11px;
  color: #fff;
  font-weight: 200;
  display: block;
  padding: 5px 4px;
}

@media only screen and (max-width: 768px) and (min-width: 360px) {
  .Imagebox {
    display: none;
  }
  .Imagebox .wrapper .Image {
    height: auto;
    padding: 50px 0px;
  }
  .Imagebox .wrapper .Image .text {
    position: relative;
    top: unset;
    transform: unset;
  }
  .Imagebox .wrapper .Image .text .content {
    width: 100%;
    padding: 0px 10px;
  }
  .Imagebox .wrapper .Image .text .content h2 {
    font-size: 22px;
  }
  .Imagebox .wrapper .Image .text .content .searchBoxContainer {
    padding: 20px 0px;
  }
  .Imagebox .wrapper .Image .text .content .searchBoxContainer .searchBox {
    flex-direction: column;
    padding: 15px;
    width: 100%;
  }
  .Imagebox
    .wrapper
    .Image
    .text
    .content
    .searchBoxContainer
    .searchBox
    .inputGroup {
    width: 100%;
    margin: 8px 0;
  }
  .Imagebox
    .wrapper
    .Image
    .text
    .content
    .searchBoxContainer
    .searchBox
    .searchButton {
    width: 100%;
    justify-content: center;
  }
  .Imagebox .wrapper .video .mainbox {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
  .Imagebox {
    display: block;
  }
  .Imagebox .wrapper {
    width: 100%;
  }
  .Imagebox .wrapper .Image .text .content {
    width: 100%;
    padding: 0px 10px;
  }
}

@media only screen and (max-width: 1299px) and (min-width: 993px) {
  .Imagebox .wrapper .Image .text .content {
    width: 100%;
    padding: 0px 10px;
  }
}
