.elementor-3010 .elementor-element.elementor-element-298bdfa{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:20px;--padding-right:20px;}@media(min-width:768px){.elementor-3010 .elementor-element.elementor-element-298bdfa{--content-width:1236px;}}/* Start custom CSS for html, class: .elementor-element-be3299e *//* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD BASE */
.service-card {
  position: relative;
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* LIGHT CARD */
.service-card.light {
  background: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.service-card.light:hover {
  border: 2px solid #AD7D2B;
}

/* DARK CARD */
.service-card.dark {
  background: #000;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card:hover .arrow-btn{
    background:#AD7D2B !important;
    color:white !important;
    border-color:#AD7D2B !important;
}
/* ICON */
.icon-box {
  width: 54px;
  height: 54px;
  background: #AD7D2B;
  color: #000;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 30px;
}

.icon-box.outline {
  background: #ffff;
  border: 2px solid #ffff;
  color: #AD7D2B;
}

/* CORNER CIRCLE */
.corner-circle {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: #f1e6d6;
  border-radius: 50%;
  transition:0.3s all ease;

}
.service-card:hover .corner-circle {
  width:200px;
  height:200px;
}
/* CONTENT */
.service-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 420px;
}

.service-card.dark p {
  color: #ccc;
}

/* LINK */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  font-weight: 600;
  text-decoration: none;
  color: #AD7D2B;
}

.service-link.green {
  color: #b6ff00;
}

/* ARROW BUTTON */
.arrow-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000000;
}

.arrow-btn.white {
  border-color: #fff;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr ;
  }
}/* End custom CSS */