.footer-custom {
  background: linear-gradient(to right, #5f2eff, #00c6ff); /* same as navbar */
  color: #ffffff;
}
.footer-custom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-custom a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-custom h6 {
  color: #ffffff;
}
.footer-custom .btn {
  background-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.footer-custom .btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.footer-custom .fab {
  color: #ffffff !important;
  transition: color 0.3s ease;
}
.footer-custom .fab:hover {
  color: #5f2eff !important; /* Green on hover */
}
.services {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #f9f9fb;
}

.services-header h2 {
  font-size: 2rem;
  color: #2d2d54;
  margin-bottom: 0.5rem;
}

.services-header p {
  color: #6c6c92;
  margin-bottom: 2rem;
}

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

.service-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #e6f9f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-circle img {
  width: 24px;
  height: 24px;
}

.service-item h3 {
  font-size: 1.2rem;
  color: #2d2d54;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: #5a5a89;
  font-size: 0.95rem;
  line-height: 1.4;
}