/* Services Section Styles */
.services-section {
  position: relative;
  padding: 2rem 0;
  background-color: var(--light-bg);
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('/images/pattern.png') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.services-section > .container > .row:first-child {
  padding: 0 0 1rem 0;
  margin: 0 0 1rem 0 !important;
}

.services-section > .container > .row:first-child h2 {
  color: #000 !important;
  text-shadow: none;
  text-align: left;
  font-size: 2.5rem;
  font-weight: 700;
}

/* Section Title Styles */
.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  color: #000;
  text-align: left;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-item {
  padding: 1.5rem;
  transition: all 0.3s ease;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.1);
  height: 100%;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.service-icon {
  color: #4a90e2;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1);
  color: #357abd;
}

.service-item h3 {
  margin: 0.5rem 0;
  font-weight: 700;
  color: #4a90e2;
}

.service-item p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 188, 212, 0.1) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.service-item:hover .service-hover-effect {
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-section {
    padding: 2rem 0;
  }
  .services-section > .container > .row:first-child {
    margin: -2rem -15px 2rem -15px !important;
  }
  .service-item {
    margin-bottom: 1rem;
  }
  .service-item h3 {
    font-size: 1rem;
  }
  .service-item p {
    font-size: 0.8rem;
  }
}

.services-section .row {
  margin-bottom: 2rem;
}
