@media (min-width: 1500px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1410px;
  }
}

.banner-area {
  padding-top: 100px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
  .banner-area {
    padding-bottom: 120px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .banner-area {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-area {
    padding-bottom: 70px;
  }
}

.banner-area h1 {
  font-size: 64px;
  line-height: 1.4;
  font-weight: 700;
  color: #1F2B40;
  margin-bottom: 46px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
  .banner-area h1 {
    font-size: 54px;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
  .banner-area h1 {
    font-size: 48px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .banner-area h1 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-area h1 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
  .banner-area h1 {
    margin-bottom: 34px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .banner-area h1 {
    margin-bottom: 26px;
  }
}

.banner-area p {
  color: #656A7B;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  line-height: 1.5;
  margin-bottom: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .banner-area p {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-area p {
    font-size: 14px;
  }
}

.banner-area-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

html[dir=rtl] .banner-area-btns i {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .banner-area-btns {
    justify-content: center;
  }
}

.banner-area-btns a {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  padding: 0 30px;
  gap: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .banner-area-btns a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-area-btns a {
    font-size: 13px;
  }
}

html[dir=rtl] .banner-area-btns a i {
  transform: scale(-1);
}

@media only screen and (max-width: 991px) {
  .banner-area-btns a {
    min-height: 42px;
  }
}

.banner-image {
  position: relative;
}

.banner-image img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1.4);
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .banner-image img {
    position: unset;
    z-index: 1;
    transform: initial;
  }
}

/* New overlapping images style */
.banner-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.banner-images {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 400px;
}

.banner-images .banner-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.banner-images .banner-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.banner-counter {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--system_primary_gredient1) 0%, var(--system_primary_gredient2) 100%);
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(102, 10, 251, 0.3);
  z-index: 3;
}

.banner-counter .counter-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.banner-counter .counter-text {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.9;
}

@media only screen and (max-width: 991px) {
  .banner-images {
    max-width: 350px;
    height: 320px;
  }
  
  .banner-images .banner-img-1 {
    width: 160px;
    height: 200px;
  }
  
  .banner-images .banner-img-2 {
    width: 180px;
    height: 230px;
  }
  
  .banner-counter {
    padding: 15px 20px;
  }
  
  .banner-counter .counter-number {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-image-wrapper {
    margin-bottom: 30px;
  }
  
  .banner-images {
    max-width: 280px;
    height: 260px;
  }
  
  .banner-images .banner-img-1 {
    width: 130px;
    height: 160px;
  }
  
  .banner-images .banner-img-2 {
    width: 150px;
    height: 190px;
  }
  
  .banner-counter {
    bottom: 40px;
  }
}
