
.service_section {
  background: transparent;
}

.service-container {
 background:
 radial-gradient(circle at 40% 50%, rgba(150, 120, 255, 0.18), transparent 35%),
 radial-gradient(circle at 80% 30%, rgba(80, 180, 255, 0.12), transparent 25%),
 linear-gradient(
  90deg,
  #2a121d 0%,
  #2f1830 25%,
  #22243d 50%,
  #1a2b3b 75%,        
  #132018 100%
);
 padding: 3rem 4rem;
 border-radius: .625rem;
}

.service-header {
  margin-bottom: 3rem;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  justify-content: center;
}

.service_wrap {
  padding: var(--space-md);
  transition: var(--transition);
}

.service_wrap:not(:last-child) {
  border-right: 1px dashed rgba(255, 255, 255, 0.5);
}

.service_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.service_icon {
  font-size: 50px;
  color: var(--bg-white);
  transition: var(--transition);
  text-align: center;
}

.service_description {
  flex: 1;
  text-align: center;
}

.service_description h4 {
  font-size: var(--font-size-lg);
  color: var(--bg-white);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
}

@media (max-width: 991px) and (min-width: 769px) {
  .service-container {
    padding: 2.5rem 2rem;
  }

  .service-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .service_wrap:nth-child(2n) {
    border-right: none;
  }

  .service_wrap:nth-child(1),
  .service_wrap:nth-child(2) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    padding-bottom: var(--space-lg);
  }

  .service_wrap:nth-child(3),
  .service_wrap:nth-child(4) {
    padding-top: var(--space-lg);
  }

  .service_icon {
    font-size: 40px;
  }

  .service_description h4 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .service-container {
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
  }

  .service-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--secondary-color);
  }

  .service-header h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .service-header p {
    font-size: 0.9rem;
  }

  .service-row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service_wrap {
    padding: 1rem 0.5rem;
    border: none !important;
  }

  .service_wrap + .service_wrap {
    border-top: 1px solid rgba(221, 160, 221, 0.3) !important;
  }

  .service_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
  }

  .service_icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service_description {
    flex: 1;
    text-align: left;
    font-size: 0.9rem;
  }

  .service_description h4 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
  }
}


@media (max-width: 480px) {
  .service-container {
    padding: 1.2rem 0.8rem;
  }

  .service-header h2 {
    font-size: 1.1rem;
  }

  .service-header p {
    font-size: 0.85rem;
  }

  .service_wrap {
    padding: 0.8rem 0.3rem;
  }

  .service_icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
  }

  .service_description h4 {
    font-size: 0.85rem;
  }
}