.services-section {
  padding-bottom: 100px;
  overflow: hidden;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.services-title {
  font-size: 1.2rem;
  color: transparent;
  background: black;
  background-clip: text;
  -webkit-background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.explore-all-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #1a1a2e;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.explore-all-btn:hover {
  gap: 15px;
}

.explore-all-btn .arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.explore-all-btn:hover .arrow {
  transform: translateX(5px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.services-grid a {
  text-decoration: none;
  color: inherit;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
}

.service-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.service-icon.blue {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-icon.pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-icon.purple {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-icon.orange {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-icon.green {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-icon.teal {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.service-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
}

.arrow-circle {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.service-card:hover .arrow-circle {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.service-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
}

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

@media (max-width: 768px) {
  .explore-all-btn {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 30px;
  }

  .service-name {
    font-size: 1.25rem;
  }

  .services-section {
    padding-bottom: 40px;
  }
}
