/* Main Container */
.service-main-container {
  /* max-width: 100px; */
  margin: 0 auto;
  padding: 100px;
  font-family: var(--secondary-font);
  margin-bottom: 100px;
}

/* Services Header */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-title {
  font-size: 2.5rem;
  font-family: var(--primary-font);
  color: #333;
  margin-bottom: 1rem;
}

.services-description {
  font-size: 1rem;
  color: #3d3d3d;
  font-family: var(--secondary-font);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Tab Buttons */
.services-tab-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 3rem;
}

.services-tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  color: #3d3d3d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-family: var(--secondary-font);
}

.services-tab-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.services-tab-btn.active {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
  transform: scale(1.05);
}

/* Services Cards Container */
.services-card-container {
  /* display: flex; */
  /* justify-content: center; */
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

/* Services Card */
.services-card {
  /* width: 350px; */
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 1;
  animation: fadeIn 0.5s ease;
}

.services-card.hidden {
  display: none;
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Services Card Icon */
.services-card-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-blue);
  color: #fff;
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.services-card:hover .services-card-icon {
  transform: scale(1.1);
}

/* Services Card Content */
.services-card-content {
  padding: 1.5rem;
}

.services-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3d3d3d;
  margin-bottom: 10px;
}

.services-card-text {
  color: #3d3d3d;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 867px) {
  .service-main-container {
    padding: 50px 20px;
  }
  .services-title {
    font-size: 2rem;
  }
}

@media (max-width: 467px) {
}
