/* Main Content Styling – Light Mode */
.services-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  animation: fadeSlideIn 1s ease-out both;
}

/* Intro Section */
.intro {
  text-align: center;
  margin-bottom: 3rem;
}

.intro h1 {
  font-size: 2.5rem;
  color: #2c7a7b;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.intro p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Individual Service Card */
.service-card {
  background: linear-gradient(135deg, #ffffff, #f4f4f4);
  border-left: 4px solid #2c7a7b;
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 5px;
  background: #2c7a7b;
  left: 0;
  top: 0;
  transition: width 0.3s ease;
}

.service-card:hover::before {
  width: 100%;
  background: rgba(44, 122, 123, 0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  background-color: #f9f9f9;
}

.service-card h2 {
  font-size: 1.2rem;
  color: #2c7a7b;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: #444;
}

/* Animations */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .intro h1 {
    font-size: 2rem;
  }

  .intro p {
    font-size: 0.95rem;
  }

  .service-card h2 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.92rem;
  }
}
