body {
  background-image: url("assets/pattern.svg");
  background-repeat: repeat;
  background-size: 304px 304px;
  background-position: 0 0;
  font-family: mulish;
  color: #ffffff;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
}

input,
textarea,
button,
select {
  font-family: inherit;
}

a {
  all: unset;
  cursor: pointer;
}

/* =====================================
   HERO
===================================== */
.hero {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: auto;
  border: 2px solid rgba(0, 123, 255, 0.2);
  border-radius: 1rem;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(assets/hero-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 9.25rem auto clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 5rem) clamp(1.75rem, 3vw, 3rem);
  gap: clamp(1.25rem, 3vw, 3rem);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.25);
}
.hero__text {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.hero__img {
  width: clamp(10rem, 30vw, 28rem);
  height: auto;
  max-height: 90%;
  border-radius: 1rem;
  border: 0.1rem solid #000;
  flex-shrink: 0;
}

.slide-in-left {
  position: relative;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* =====================================
   STATS
===================================== */
.statistics {
  background-color: #f5f9ff;
  background-image: url("assets/pattern-white.svg");
  background-repeat: repeat;
  background-size: 304px 304px;
  background-position: 0 0;
  border-radius: 2rem;
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  gap: clamp(1rem, 4vw, 4rem);
  width: 100%;
}
.statistics__container {
  margin: 0 auto;
  padding: 2rem 4rem;
  min-height: 22.8125rem;
  background: rgba(47, 167, 102, 0.5);
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  border: solid 1px #249159;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(47, 167, 102, 0.25), 0 4px 12px rgba(0, 0, 0, 0.05);
}
.statistics__heading {
  text-align: center;
  font-weight: 800;
  padding: 0 2rem;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #000;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.statistics__subtitle {
  text-align: center;
  color: #000;
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1.25rem;
}
.statistics__stats {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: clamp(35rem, 70vw, 55rem);
}
.statistics__stat {
  border-left: 0.25rem solid #e1e4e1;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  flex: 1 1 clamp(6rem, 45%, 8rem);
  margin-bottom: clamp(0rem, 1vw, 1rem);
}
.statistics__stat:hover {
  transform: translateY(-0.375rem);
  text-shadow: 0.25rem 0.375rem 0.1875rem rgba(255, 255, 255, 0.5);
}
.statistics__stat-value {
  font-size: clamp(1rem, 4vw, 2.375rem);
  font-weight: 800;
  text-align: left;
}
.statistics__stat-label {
  font-size: clamp(0.75rem, 1.5vw, 1.25rem);
  text-align: left;
}

/* =====================================
   SERVICE
===================================== */
.service {
  min-height: 54.875rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1.5rem, 5vw, 4rem) 0;
  text-align: center;
  border: 2px solid rgba(0, 123, 255, 0.2);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.25);
}
.service__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 130%;
  font-weight: 800;
  color: rgba(40, 167, 69, 0.6);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.service__group {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: clamp(0.5rem, 2vw, 1.5rem);
  max-width: 46.25rem;
  justify-content: center;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
}
.service__item {
  aspect-ratio: 1/1;
  width: clamp(15rem, 20vw, 20rem);
  padding: clamp(0.75rem, 3vw, 1rem);
  background-color: #f5f9ff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #000;
  text-decoration: none;
  border: 1px solid rgba(0, 123, 255, 0.25);
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.25);
}
.service__item.reveal {
  opacity: 0;
  transform: translateY(30px) scale(1);
}
.service__item.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.service__item.reveal.visible:hover {
  transform: translateY(0) scale(1.05);
  background: #e0eeff;
}
.service__text {
  font-size: clamp(0.5rem, 1.5vw, 1.25rem);
  line-height: 1.3;
}
.service__icon {
  width: clamp(2.5rem, 8vw, 6rem);
  height: clamp(2.5rem, 8vw, 6rem);
  flex-shrink: 0;
}

/* =====================================
   MAP
===================================== */
.map {
  background-color: #f5f9ff;
  background-image: url("assets/pattern-white.svg");
  background-repeat: repeat;
  background-size: 304px 304px;
  background-position: 0 0;
  border-radius: 2rem;
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  width: 100%;
}
.map__box {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
}
.map__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
}
.map__title {
  text-align: center;
  font-weight: 800;
  color: #000;
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.map__uz {
  margin: clamp(2rem, 3vw, 4rem);
  width: 90%;
  height: auto;
  max-width: 910px;
  box-sizing: border-box;
  overflow: visible;
}
.map__tooltip {
  max-width: clamp(8rem, 26vw, 17rem);
  width: auto;
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: clamp(0.25rem, 1vw, 0.5rem) clamp(0.5rem, 2vw, 1rem);
  border-radius: 1rem;
  line-height: 1.2;
  pointer-events: none;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.map__legend {
  width: clamp(10rem, 34vw, 18rem);
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 1rem;
  gap: clamp(0.5rem, 1.5vw, 2rem);
  padding: clamp(0.5rem, 1.5vw, 2rem);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  top: -1rem;
  z-index: 1;
}
.map__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}
.map__layout {
  min-height: auto;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 1rem;
  background-image: url("assets/pattern.svg");
  background-repeat: repeat;
  background-size: 152px 152px;
  background-position: 0 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgba(0, 123, 255, 0.25);
  box-shadow: 0 4px 4px rgba(0, 123, 255, 0.15);
}
.map__switcher {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 5vw, 4rem);
  background: rgba(217, 154, 0, 0.5);
  border: 1px solid #b07b00;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(217, 154, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  padding: clamp(1rem, 4vw, 4rem) clamp(0.5rem, 2vw, 2rem);
}
.map__switcher-btn {
  width: 100%;
  border-radius: 1rem;
  background-color: #ffffff;
  gap: clamp(0.5rem, 0.5rem + 1vw, 1.25rem);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #000;
  color: #212529;
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  height: auto;
  padding: clamp(0.5rem, 1.5vw, 1.25rem) clamp(0.5rem, 1.5vw, 1.25rem);
}
.map__switcher-btn--active {
  background: #0056b3;
  color: #fff;
  border: 1px solid #fff;
}
.map__switcher-btn--active .map__switcher-icon {
  stroke: #fff;
}
.map__switcher-icon {
  width: clamp(1rem, 6vw, 2.5rem);
  height: clamp(1rem, 6vw, 2.5rem);
  stroke: #000;
}
.map__variant {
  display: none;
  position: relative;
}
.map__variant--active {
  display: block;
}
.map__tooltip-header {
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: 0.25rem;
}
.map__tooltip-stats {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.25rem, 0.5vw, 1rem);
  font-size: clamp(0.75rem, 2vw, 1.25rem);
}
.map__tooltip-stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.map__tooltip-icon {
  width: clamp(0.5rem, 1.5vw, 1.5rem);
  height: clamp(0.5rem, 1.5vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__tooltip-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.map__tooltip-number1 {
  font-weight: 700;
  color: #ffeb3b;
  font-size: clamp(0.5rem, 2vw, 1rem);
}
.map__tooltip-number2 {
  font-weight: 700;
  color: #40c4ff;
  font-size: clamp(0.5rem, 2vw, 1rem);
}
.map__tooltip-number3 {
  font-weight: 700;
  color: #ff6f00;
  font-size: clamp(0.5rem, 2vw, 1rem);
}

/* =====================================
   CAROUSEL
===================================== */
.carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 7vw, 4rem);
  flex-shrink: 0;
  align-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(0, 123, 255, 0.2);
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.25);
  border-radius: 1rem;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  padding: 1rem;
}
.carousel__title {
  margin-top: clamp(1rem, 4vw, 4rem);
  color: rgba(0, 86, 179, 0.6);
  font-weight: 800;
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.carousel__track {
  padding: 0 1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1rem;
  transition: transform 0.6s ease-out;
  width: 100%;
  height: 18.75rem;
  scroll-behavior: smooth;
}
.carousel__card {
  background: #f5f9ff;
  border: 1px solid rgba(0, 123, 255, 0.35);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  height: clamp(12.5rem, 43vw, 14rem);
  transition: all 0.3s;
  box-sizing: border-box;
  width: clamp(12rem, 40vw, 22rem);
  padding: clamp(0.75rem, 2.5vw, 2rem) clamp(0.5rem, 1.5vw, 1rem);
}
.carousel__card:hover {
  transform: translateY(0) scale(1.05);
  background: #e0eeff;
}
.carousel__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e2a38;
  text-align: center;
}
.carousel__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 1.25rem;
}
.carousel__icon {
  width: clamp(4rem, 8vw, 6rem);
  height: clamp(4rem, 8vw, 6rem);
  padding: 1rem;
  border-radius: 50%;
  background-color: #e0eeff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.carousel__photo {
  width: clamp(2rem, 6vw, 4.5rem);
  height: clamp(2rem, 6vw, 4.5rem);
  border-radius: 1rem;
  mix-blend-mode: multiply;
}
.carousel__btn-box {
  display: flex;
  gap: 1.25rem;
  position: absolute;
  bottom: clamp(0.5rem, 1vw + 0.5rem, 2.75rem);
}
.carousel__btn {
  background: none;
  border: none;
  cursor: pointer;
}
.carousel__btn--right, .carousel__btn--left {
  width: clamp(2rem, 5vw, 4rem);
  height: clamp(1.125rem, 2.8vw, 2.25rem);
}

html {
  font-size: clamp(10px, 1vw + 0.5rem, 16px);
}

.map__layout {
  width: min(90%, 1200px);
}

.hero,
.service,
.statistics__container,
.carousel {
  width: min(90%, 1200px);
  min-height: auto;
}

@media (max-width: 768px) {
  .service__group {
    grid-template-columns: 1fr;
    justify-content: center;
  }
  .service__item {
    width: clamp(13rem, 34vw, 15rem);
  }
  .service__text {
    font-size: 1rem;
  }
  .map__switcher-btn {
    font-size: 1rem;
  }
  .hero {
    flex-direction: column-reverse;
  }
  .hero__img {
    width: 60%;
  }
  .hero__text {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .statistics__container {
    padding: 2rem clamp(3rem, 12.5vw, 6rem);
  }
  .statistics__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    width: clamp(20rem, 52vw, 25rem);
  }
  .statistics__stat-label {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
  }
  .carousel__track {
    height: clamp(16rem, 60vw, 18rem);
  }
  .map__tooltip-icon {
    align-self: center;
  }
}
@media (max-width: 480px) {
  .service__item {
    width: clamp(10rem, 34vw, 13rem);
  }
  .service__text {
    font-size: 0.75rem;
  }
  .map__switcher-btn {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=home.css.map */