.elementor-672 .elementor-element.elementor-element-84dbf31{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d46147f *//* Services Section Styles */
.services-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(8, 145, 178, 0.05));
  font-family: 'Inter', system-ui, sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
.services-header {
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

.services-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #f8fafc, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

/* Service Card Styles */
.service-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.6));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(51, 65, 85, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(8, 145, 178, 0.3);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Service Icon */
.service-icon {
  display: flex;
  align-items: center;
  color: #0891b2;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

/* Service Content */
.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 16px;
}

.service-description {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Feature List */
.service-features {
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.875rem;
  color: #94a3b8;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: #0891b2;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Service Footer */
.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.service-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0891b2;
}

.service-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.service-btn:hover {
  color: #0891b2;
}

.service-btn svg {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.service-btn:hover svg {
  transform: translateX(4px);
}

/* CTA Section */
.services-cta {
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.8s forwards;
}

.cta-text {
  font-size: 1.125rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.cta-button {
  background: #0891b2;
  color: #f8fafc;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #0e7490;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(8, 145, 178, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 16px;
  }
  
  .services-title {
    font-size: 1.75rem;
  }
  
  .service-card {
    padding: 20px;
  }
}/* End custom CSS */