.elementor-253 .elementor-element.elementor-element-48a1e70{--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;overflow:visible;}.elementor-253 .elementor-element.elementor-element-48a1e70:not(.elementor-motion-effects-element-type-background), .elementor-253 .elementor-element.elementor-element-48a1e70 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-253 .elementor-element.elementor-element-ecd43e6{--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;overflow:visible;}.elementor-253 .elementor-element.elementor-element-79ca077{--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;overflow:visible;}.elementor-253 .elementor-element.elementor-element-79ca077:not(.elementor-motion-effects-element-type-background), .elementor-253 .elementor-element.elementor-element-79ca077 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F5C518;}/* Start custom CSS for html, class: .elementor-element-c4be4af *//* HERO */
.services-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.services-hero h1 {
  font-size: 48px;
}

.services-hero span {
  color: #f5c518;
}

.services-hero p {
  max-width: 600px;
  margin: 10px auto;
  color: #ccc;
}

/* SERVICES */
.services-section {
  background: #f4f4f4;
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-card i {
  font-size: 32px;
  color: #f5c518;
  margin-bottom: 10px;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* CTA */
.services-cta {
  background: #f5c518;
  text-align: center;
  padding: 70px 20px;
}

.services-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.services-cta p {
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-black {
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-white {
  background: #fff;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding: 70px 15px;
  }

  .services-hero h1 {
    font-size: 26px;
  }

  .services-cta h2 {
    font-size: 20px;
  }
}/* End custom CSS */