.ate-mainservice{
  width:100%;
  background:#E1D59F;
  padding:110px 20px;
  overflow:hidden;
}

.ate-mainservice-top{
  max-width:900px;
  margin:0 auto 60px;
  text-align:center;
}

.ate-mainservice-top span{
  display:inline-flex;
  padding:9px 18px;
  border-radius:999px;
  border:1px solid rgba(44,6,31,0.15);
  color:#2C061F;
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}

.ate-mainservice-top h2{
  margin:0;
  color:#2C061F;
  font-family:'Cinzel', serif;
  font-size:52px;
  line-height:1.08;
}

.ateServiceSlider{
  max-width:1250px;
  margin:0 auto;
  position:relative;
}

.ate-service-track{
  position:relative;
  min-height:720px;
}

.ate-service-slide{
  display:none;
}

.ate-service-slide.active{
  display:block;
  animation:ateServiceFade 0.6s ease;
}

@keyframes ateServiceFade{
  from{
    opacity:0;
    transform:translateX(40px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

.ate-service-card{
  position:relative;
  border-radius:34px;
  overflow:hidden;
  min-height:720px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.ate-service-image{
  position:absolute;
  inset:0;
  z-index:1;
}

.ate-service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transform:scale(1.03);
  filter:brightness(0.42);
}

.ate-service-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
  linear-gradient(
    90deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.25) 60%,
    rgba(0,0,0,0.05) 100%
  );
}

.ate-service-content{
  position:relative;
  z-index:5;
  padding:70px;
  width:100%;
  max-width:680px;
}

.ate-service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  filter:brightness(0.55);
}


.ate-service-content h3{
  color:#ffffff;
  font-family:'Cinzel', serif;
  font-size:40px;
  line-height:0.98;
  letter-spacing:-1.5px;
  margin:0 0 34px;
  text-transform:uppercase;
}

.ate-service-content p{
  color:rgba(255,255,255,0.92);
  font-size:16px;
  line-height:2;
  margin:0;
  max-width:720px;
}

.ate-service-dots{
  position:absolute;
  left:70px;
  bottom:52px;
  z-index:20;
  display:flex;
  gap:12px;
}

.ate-service-dot{
  width:13px;
  height:13px;
  border-radius:50%;
  border:0;
  background:#ffffff;
  opacity:0.45;
  cursor:pointer;
  padding:0;
}

.ate-service-dot.active{
  opacity:1;
  background:#D89216;
}

.ate-service-prev,
.ate-service-next{
  position:absolute;
  bottom:42px;
  z-index:20;
  width:66px;
  height:66px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.45);
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  font-size:30px;
  cursor:pointer;
  transition:0.3s ease;
}

.ate-service-prev:hover,
.ate-service-next:hover{
  background:#D89216;
  border-color:#D89216;
  color:#2C061F;
}

.ate-service-prev{
  right:130px;
}

.ate-service-next{
  right:50px;
}


.ate-mainservice .ate-service-image{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  left:0 !important;
  right:auto !important;
  top:0 !important;
  bottom:auto !important;
  z-index:1 !important;
}

.ate-mainservice .ate-service-image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
}

@media(max-width:991px){

  .ate-service-track,
  .ate-service-card{
    min-height:650px;
  }

  .ate-service-content{
    padding:40px;
  }

  .ate-service-content h3{
    font-size:46px;
  }

}

@media(max-width:767px){

  .ate-mainservice{
    padding:80px 16px;
  }

  .ate-mainservice-top h2{
    font-size:36px;
  }

  .ate-service-track,
  .ate-service-card{
    min-height:650px;
  }

  .ate-service-content{
    padding:28px;
  }

  .ate-service-content h3{
    font-size:34px;
    line-height:1;
  }

  .ate-service-content p{
    font-size:15px;
    line-height:1.8;
  }

  .ate-service-dots{
    left:28px;
    bottom:30px;
  }

  .ate-service-prev{
    right:95px;
    bottom:20px;
  }

  .ate-service-next{
    right:20px;
    bottom:20px;
  }

}