/* 🌟 Service Page Layout */
#services {
  text-align: center;
  padding: 80px 40px;
  background: #f8fbff;
}

#services h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0e4c92;
}

#services p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  
}

/* Service Cards Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0e6ea8;
}

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

.service-card i {
  font-size: 50px;
  color: #0e6ea8;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.service-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0e6ea8;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.service-card .btn:hover {
  background: #074163;
}

/*  Responsive */
@media (max-width: 768px) {
  #services {
    padding: 60px 20px;
  }
  .service-card {
    padding: 30px 20px;
  }
}
