/* ===========================
   SERVICES PAGE STYLING
   =========================== */

/* Hero Section */
.services-hero {
  height: 100px;
  background: #0041c2; 
  color: #fff;
  text-align: center;
  margin-top: 60px;
}

.services-hero h1 {
  color: #fff;
  padding: 15px 20px 20px;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

.services-hero h1 span {
  color: #fff;
  text-decoration: underline;
  text-align: center;
}

.services-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
.services-section {
  background: #f8f9fa;
  padding: 100px 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

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



.service-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 80px 15px;
  }

  .services-hero h1 {
    font-size: 2.2rem;
  }

  .services-container {
    padding: 0 15px;
  }
}


