
.hero-main {
  padding: 108px 0 32px 0;
}
.hero-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-main__content {
  flex: 1 1 0;
  max-width: 600px;
}
.hero-main__title {
  font-size: 36px;
  font-weight: 700;
  color: #18181b;
  line-height: 1.3;
  margin-bottom: 24px;
}
.hero-main__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 12px;
}
.hero-main__desc {
  font-size: 18px;
  color: #52525b;
  margin-bottom: 22px;
}
.hero-main__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #10b981;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-radius: 8px;
  padding: 12px 30px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.1);
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
}
.hero-main__btn:hover {
  background: #0ea36a;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.18);
  transform: translateY(-2px) scale(1.03);
}
.hero-main__image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-main__image img {
  max-width: 520px;
  min-width: 260px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}




body{
  overflow-x: hidden;
}

.hero-slider {
  position: relative;
  overflow-x: hidden;
}

.hero-slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;

  display: flex;
  align-items: center;
  justify-self: center;
  flex-direction: column;
  z-index: 11;
}

.slider_overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  pointer-events: none;
}


.hero-slider__title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.hero-slider__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.slider{
  width: 100%;
}

.slider__item img {
    width: 100%;
    object-fit: cover;
    height: 80vh;
}


@media (max-width: 576px) {
  .hero-slider-content {
    text-align: center;
  }

  .hero-slider__title {
    font-size: 18px;
  }
  
  .hero-slider__subtitle {
    font-size: 16px;
  }
}


@media (max-width: 1200px) {
  .hero-main__title {
    font-size: 28px;
  }
  .hero-main__desc {
    font-size: 16px;
  }
  .hero-main__btn {
    font-size: 16px;
  }
  .hero-main .container {
    gap: 12px;
  }
}
@media (max-width: 992px) {
  .hero-main__title {
    font-size: 22px;
  }
  .hero-main__desc {
    font-size: 15px;
  }
  .hero-main__btn {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero-main {
    padding: 158px 0 32px 0;
  }
  .hero-main__title {
    font-size: 20px;
  }
  .hero-main__desc {
    font-size: 14px;
  }
  .hero-main__btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  .hero-main .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }
  .hero-main__content {
    max-width: 100%;
    align-items: start;
    justify-content: start;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .hero-main__image {
    width: 80%;
    justify-content: start;
    margin-top: 0px;
  }
  .hero-main__image img {
    max-width: 100%;
    min-width: 0;
    border-radius: 8px;
  }
  .hero-main__btn {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero-main__title {
    font-size: 20px;
  }
  .hero-main__subtitle {
    font-size: 18px;
  }
  .hero-main__desc {
    font-size: 14px;
  }
  .hero-main__btn {
    font-size: 14px;
    padding: 10px 15px;
  }
  .hero-main__image {
    width: 80%;
  }
  .hero-main__image img {
    border-radius: 4px;
  }
}
