.feature-box {
  margin: 40px 0 0;
}
.feature-box .item-feature {
  padding: 0 5px;
  text-align: center;
}
.feature-box .icon-feature {
  position: relative;
  height: 112px;
  width: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-box .icon-feature img {
  max-width: 45px;
}
.feature-box .icon-feature:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 112px;
  height: 112px;
  background: url(../images/bak.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

  animation: rotate 2s infinite;
}

.service-item {
  margin: 30px 0px;
  padding: 10px;
  border-radius: 17px;
  position: relative;
  border-top: 2px solid #001832;
  border-bottom: 3px solid #fcc415;
  box-shadow: 8px 8px 40px 0px rgba(240, 240, 240, 1);
}
.service-title {
  border-bottom: 1px solid #074b9b;
  padding-bottom: 8px;
  font-size: 18px;
}
.service-content {
  padding: 0 13px;
  min-height: 210px;
  max-height: 210px;
  overflow-y: auto;
}
.service-content ul {
  margin: 0px;
  padding: 5px;
  text-align: right;
}
#brand .carousel-slider-outer {
  direction: ltr;
  margin-top: 15px;
}
.carousel-slider .carousel-slider__caption {
  margin-top: 24px;
}
#why-us img {
  border-radius: 18px;
  margin-top: 12px;
}
.online-request .wpcf7-form {
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(238, 238, 238, 1);
  padding: 15px;
  border-radius: 15px;
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  margin: 0px 0 10px;
}
.online-request h4 {
  background: #04509c;
  text-align: center;
  padding: 20px 15px;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 20px;
}
.online-request input[type=submit] {
  width: 100%;
  text-align: center;
  display: block;
  border-radius: 12px;
  height: 55px;
  font-size: 18px;
  margin-top: 35px;
}
.wpcf7-spinner {
  display: none;
}
.online-request select {
  min-width: 302px;
}
.btn-group-justified {
  margin: 30px auto;
}
.btn-group-justified button {
  padding: 10px;
  font-weight: 600;
  border-radius: 0px;
  transition: 0.5s;
}
.btn-group-justified button a {
  color: #04509c;
  display: block;
}

/*********** Berand Effect *************/
.carousel-slider__item{
    position: relative;
    overflow: hidden;
}
.carousel-slider__item img {
    border-radius: 18px;
    border: 1px solid rgba(217, 217, 217, 1);
}
/* لایه شیشه ای */
.carousel-slider__item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 87, 174, 0.695);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: 0.3s;
    border-radius: 18px;
    max-height: 152px;
}

/* لوگو وسط */
.carousel-slider__item::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: url("../../../../../wp-content/uploads/2026/06/logo-3.webp") center/contain no-repeat;
    transform: translate(-50%, -76%);
    opacity: 0;
    transition: 0.3s;
}

/* هنگام هاور */
.carousel-slider__item:hover::before,
.carousel-slider__item:hover::after{
    opacity: 1;
}

/*********** End Berand Effect *********/

.landing-description {
  line-height: 35px;
  margin-top: 35px;
}

.item-cost-box {
  text-align: center;
  padding: 15px;
  box-shadow: 0px 0px 40px 0px rgba(229, 229, 229, 1);
  border-radius: 12px;
  margin: 10px;
  border-top: 2px solid #001832;
  border-bottom: 3px solid #fcc415;
  box-shadow: 8px 8px 40px 0px rgba(240, 240, 240, 1);
}
.item-cost h3 {
  font-size: 18px;
  color: #04509c;
  margin-top: 26px;
}
.item-cost p {
  font-size: 14px;
  color: rgba(87, 87, 87, 1);
  min-height: 56px;
  text-align: center;
}
.price-cost {
  background: #ffeaa1;
  text-align: center;
  padding: 10px;
  border-top: 2px dashed rgba(0, 0, 0, 1);
  position: relative;
  margin-top: 27px;
  border-radius: 19px;
}
.price-cost h3 {
  font-size: 15px;
}
.icon-cost {
  position: relative;
    height: 106px;
    width: 112px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.icon-cost:after {
    content: "";
    position: absolute;
    inset: 0;
    width: 112px;
    height: 112px;
    background: url(../images/bak.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate 2s infinite;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(60deg);
  }
  40% {
    transform: rotate(120deg);
  }
  60% {
    transform: rotate(180deg);
  }
  80% {
    transform: rotate(240deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 800px) {
  .feature-box .item-feature {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
  .feature-box {
    display: flex;
    flex-wrap: wrap;
  }
  .online-request{
    width:100%;
  }

  .online-request.is-fixed{
    position:fixed;
    top:120px;
    width:350px;
  }

  .online-request.is-stop{
    position:absolute;
    bottom:0;
    top:auto;
  }
}
@media (max-width: 767px) {
  .carousel-slider-outer {
    margin: 14px;
  }
  #user-comment h2, .title-inner {
    text-align: right;
  }
  .feature-box .item-feature {
    width: 50%;
    float: right;
    margin-bottom: 20px;
  }
  .feature-box .icon-feature {
    margin: auto;
  }
  .feature-box {
    margin: 40px 25px;
  }
}