.city-container {
  display: block;
  padding-top: 75px;
}

.city-container .mainbox {
  background: linear-gradient(to right, #050a1e, #0c1a3a);
  color: #ffffff;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.city-container .mainbox .wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  margin: auto;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  animation: fadeInUp 1s ease-out both;
}

.city-container .mainbox .text {
  display: block;
  width: 48%;
  padding-top: 10px;
}

.city-container .mainbox .text h1 {
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: #ffffff;
  animation: fadeIn 1.2s ease-in;
}

.city-container .mainbox .text .searchbox {
  margin-bottom: 1.5rem;
  position: relative;
}

.city-container .mainbox .text .searchbox .box {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #444;
}

.city-container .mainbox .text .searchbox .box input {
  flex: 1;
  padding: 10px 10px;
  background: #0e1a34;
  color: #fff;
  border: none;
  font-size: 1rem;
  box-sizing: border-box;
}

.city-container .mainbox .text .searchbox .box input:focus {
  outline: none;
  background: #162850;
}

.city-container .mainbox .text .searchbox .box button {
  background: #ff0000;
  border: none;
  color: #fff;
  padding: 0.75rem 1.2rem;
  font-weight: 600;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.4s;
}

.city-container .mainbox .text .searchbox .box button:hover {
  background: #0000ff;
}

.city-container .mainbox .text .searchbox .dropdownSearch {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
  list-style: none;
  margin-top: 5px;
  padding: 0;
  scrollbar-width: 1px;
}

.city-container .mainbox .text .searchbox .dropdownSearch li {
  padding: 10px;
  cursor: pointer;
  color: #000;
  border-bottom: solid 1px #ddd;
}

.city-container .mainbox .text .searchbox .dropdownSearch li:hover {
  background: #f2f2f2;
}

.city-container .mainbox .text .quickLink span {
  font-weight: 500;
  display: inline-block;
  color: #ddd;
}

.city-container .mainbox .text .quickLink ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.city-container .mainbox .text .quickLink ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.city-container .mainbox .text .quickLink ul li:hover a {
  color: #f2d4d4;
}

.city-container .mainbox .Image {
  position: relative;
  display: block;
  width: 48%;
  text-align: center;
}

.city-container .mainbox .Image img {
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
  animation: glowImage 5s infinite ease-in-out;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.city-container .mainbox .Image .border {
  height: 4px;
  background: linear-gradient(90deg, #0000ff, #ff0000);
  margin-top: 1rem;
  border-radius: 4px;
}

.city-container .mainbox .Image .states {
  margin-top: 1.5rem;
}

.city-container .mainbox .Image .states ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.city-container .mainbox .Image .states ul li {
  background: #1d2a52;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background 0.3s;
}

.city-container .mainbox .Image .states ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.city-container .mainbox .Image .states ul li:hover {
  background-color: #2e3f77;
}

.city-container .mainbox .Image .round {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.city-container .mainbox .Image .round span {
  width: 10px;
  height: 10px;
  background-color: #444;
  border-radius: 50%;
  animation: bounce 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glowImage {
  0% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.city-container .StateContainer {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.city-container .StateContainer .Content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Media Queries */

@media only screen and (max-width: 768px) and (min-width: 360px) {
  .city-container {
    display: block;
  }
  .city-container .mainbox {
    padding: 4rem 10px;
  }
  .city-container .mainbox .wrapper {
    width: 100%;
  }
  .city-container .mainbox .wrapper .text {
    width: 100%;
  }
  .city-container .mainbox .wrapper .Image {
    width: 100%;
  }
  .city-container .StateContainer {
    width: 100%;
    padding: 0px 10px;
  }
}

@media only screen and (max-width: 1299px) and (min-width: 769px) {
  .city-container {
    display: block;
  }
  .city-container .mainbox {
    padding: 4rem 10px;
  }
  .city-container .mainbox .wrapper {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
  }
  .city-container .StateContainer {
    width: 100%;
    padding: 0px 10px;
  }
}

/* Left Aside */

.leftAside {
  width: 70%;
  display: block;
}

.leftAside .CategoryList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.leftAside .CategoryList .CategoryBox {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  border-bottom: solid 1px #ddd;
  padding-bottom: 15px;
}

.leftAside .CategoryList .CategoryBox .CategoryCard {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.leftAside .CategoryList .CategoryBox .CategoryCard a {
  font-size: 25px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0678b1;
  font-weight: 600;
  text-align: left;
}

.leftAside .CategoryList .CategoryBox .CategoryCard a span {
  font-size: 22px;
}

.leftAside .CategoryList .CategoryBox .SubCategoryList {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.leftAside .CategoryList .CategoryBox .SubCategoryList .subcategory {
  background-color: rgba(6, 120, 177, 0.1);
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 15px;
  color: #0678b1;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
  padding: 6px 12px;
}

.leftAside .CategoryList .CategoryBox .SubCategoryList .subcategory:hover {
  background-color: rgba(6, 120, 177, 0.2);
  color: #034a6c;
}

.leftAside .CategoryList .CategoryBox .SubCategoryList .subcategory span {
  font-weight: 500;
}

.leftAside .CategoryList .CategoryBox .SubCategoryList .subcategory:hover {
  color: #222;
  text-decoration: underline;
}

@media only screen and (max-width: 768px) and (min-width: 360px) {
  .leftAside {
    width: 100%;
  }
}

/* Right Aside */

.rightAside {
  background: #f6f6f6;
  width: 28%;
  display: block;
  padding: 20px 15px;
  border-radius: 5px;
}

.rightAside .loginBox {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 5px;
}

.rightAside .loginBox h2 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.rightAside .loginBox button {
  background: #0678b1;
  padding: 5px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: solid 1px #0678b1;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
  margin-top: 20px;
}

.rightAside .loginBox button:hover {
  background: #50778a;
}

.rightAside .banner {
  display: block;
  width: 100%;
  margin-top: 25px;
}

.rightAside .banner img {
  width: 100%;
  border-radius: 5px;
}

@media only screen and (max-width: 768px) and (min-width: 360px) {
  .rightAside {
    width: 100%;
  }
}
