* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  /* background: linear-gradient(135deg, #2a2aff, #7b7bff); */
  background: linear-gradient(135deg, #9acd32);
  min-height: 100vh;
}

/* Section */
.services-section {
  padding: 60px 40px;
}

.page-title {
  text-align: center;
  color: #0a0a0a;
  margin-bottom: 40px;
  font-size: 36px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card */
.service-card {
  background: linear-gradient(to bottom, #ffffff);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.service-content {
  padding: 25px;
  color: #000000;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
/* .btn {
  background: #fff;
  color: #b1132d;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #f1f1f1;
} */


.read-more {
  background: #2012de;
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.read-more:hover {
  background: #5850ca;
}

