/* services.css */

/* General Page Settings */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f9ff;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Section Padding */
.section-padding {
  padding: 60px 0;
}

/* Section Title */
.section-title h2 {
  font-size: 2.8rem;
  color: #e6d7b8;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: auto;
}

/* Service Card Styling */
.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card h4 {
  font-size: 1.4rem;
  margin-top: 15px;
  color: #102049;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  margin-top: 10px;
  flex-grow: 1;
}

.service-card .read-more {
  margin-top: 15px;
  display: inline-block;
  text-decoration: none;
  background: #e6d7b8;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.service-card .read-more:hover {
  background: #83775f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 15px;
  }
}
