.elementor-844 .elementor-element.elementor-element-a3afb14{--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;border-style:solid;--border-style:solid;border-width:1px 1px 1px 1px;--border-top-width:1px;--border-right-width:1px;--border-bottom-width:1px;--border-left-width:1px;border-color:#00A997;--border-color:#00A997;--border-radius:10px 10px 10px 10px;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);}.elementor-844 .elementor-element.elementor-element-101e5f8 > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-101e5f8 *//* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #222;
  margin: 0px 0 0px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #00b894;
  /*margin: 0px auto 0;*/
  border-radius: 3px;
}

/* Service List */
.animated-service-list {
  list-style: none;
  padding: 0;
  max-width: 1200px;
 
  display: flex;
  flex-direction: column;
  gap:20px;
}

/* List Items */
.animated-service-list li {
  background: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.animated-service-list li:nth-child(1) { animation-delay: 0.1s; }
.animated-service-list li:nth-child(2) { animation-delay: 0.2s; }
.animated-service-list li:nth-child(3) { animation-delay: 0.3s; }
.animated-service-list li:nth-child(4) { animation-delay: 0.4s; }
.animated-service-list li:nth-child(5) { animation-delay: 0.5s; }
.animated-service-list li:nth-child(6) { animation-delay: 0.6s; }
.animated-service-list li:nth-child(7) { animation-delay: 0.7s; }
.animated-service-list li:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animated-service-list li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Link Styling */
.animated-service-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  gap: 15px;
  transition: color 0.3s ease;
}

.animated-service-list a:hover {
  color: #00a997;
}

/* Icons */
.animated-service-list i {
  font-size: 1.4rem;
  color: #00a997;
  transition: transform 0.3s ease;
}

.animated-service-list li:hover i {
  transform: scale(1.2);
}/* End custom CSS */