.elementor-16134 .elementor-element.elementor-element-224ee24{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:40px;--margin-left:0px;--margin-right:0px;}@media(min-width:769px){.elementor-16134 .elementor-element.elementor-element-224ee24{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-099d07b *//* ============================= */
/* SERVICES SECTION */
/* ============================= */

.services-section {
  padding: 10px 0px;

}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ============================= */
/* CARD STRUCTURE */
/* ============================= */

.service-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.service-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.4s ease;
}

/* Content Default (Bottom) */
.service-card .content {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: -90px;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
}

.service-card p {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.btn {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline !important;
  color: #fff;
  transition: all 0.3s ease;
  border: none !important;
  background: transparent !important;
}

.btn:hover {
  color: #fff;
}

.btn.outline {
  background: transparent !important;
  /*border: 1px solid #fff;*/
  color: #fff;
}

.btn.outline:hover {
  background: transparent !important;
  color: #fff;
}

/* ============================= */
/* HOVER EFFECT */
/* ============================= */

.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .overlay {
  background: rgba(231, 92, 33, 0.9); /* Orange highlight */
}

.service-card:hover .content {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  text-align: center;
}

.service-card:hover p,
.service-card:hover .buttons {
  opacity: 1;
  transform: translateY(0);
  justify-content: center;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1200px) {
  .service-card {
    height: 320px;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 280px;
  }
}/* End custom CSS */