.services-section {
  padding: 60px 20px;
  text-align: center;
  padding-top: 100px; /* Push content down from nav */
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.gradient-text {
  background: linear-gradient(90deg, #022a44, #055f7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

/* 🔹 Fix image fitting issue */
.service img {
  width: 100%;
  height: auto; /* Let height adjust automatically */
  max-height: 220px; /* Optional: prevent super tall images */
  object-fit: contain; /* Show the full image without cropping */
  background: #f4f7fa; /* Neutral background if aspect ratio leaves space */
  border-radius: 6px;
  margin-bottom: 15px;
}

.view-more-container {
  margin-top: 40px;
}

.view-more-btn {
  background-color: #022a44;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.view-more-btn:hover {
  background-color: #044063;
}
