@charset "UTF-8";
/* CSS Document */

#services {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  box-sizing: border-box;
  color: #ffffff;
  background-color: #004080;
	letter-spacing: 0.5px;
}

.vs-heading {
  font-size: 40px;
  line-height: 50px;
  margin: 30px 0px 10px 0px;
  font-family: 'Gradzy';
  color: #ffffff;
}

.vs-description {
  font-size: 22px;
  line-height: 26px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 0 10px;
  font-family: "Morning Rainbow";
  color: #ffffff;
	letter-spacing: 1px;
}

.vs-service-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  color: #000000;
	
}

.vs-service-card {
  background: white;
  padding: 20px;
  width: 100%;
  max-width: 1800px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
  color: #000000;
	
}

.vs-service-card:hover {
  transform: translateY(-5px);
  color: #000000;
}

.vs-service-card i {
  font-size: 45px;
  color: #007bff;
  margin-bottom: 10px;
}

.vs-service-card h3 {
  font-size: 30px; 
  margin-bottom: 10px;
  color: #000000;
	font-family: 'Gradzy';
}

.vs-service-card p {
  font-size: 20px; 
  line-height: 26px;  
  padding: 0 10px;
  color: #000000;
	font-family: 'Morning Rainbow';
}

/* Responsive layout */
@media (max-width: 768px) {
  .vs-service-card {
    width: 90%;
  }
	
	.vs-heading {
  margin: 0px 0px 10px 0px;
 
}

  .vs-heading {
    font-size: 35px; /* 1.8rem */
  }

  .vs-service-card i {
    font-size: 38px;
  }
}

@media (max-width: 480px) {
  .vs-service-card {
    width: 100%;
  }

  .vs-heading {
    font-size: 35px; /* 1.6rem */
  }

  .vs-service-card i {
    font-size: 32px;
  }
}

@media (max-width: 300px) {
  .vs-heading {
    font-size: 30px; /* 1.4rem */
  }

  .vs-service-card {
    padding: 15px;
  }

  .vs-service-card i {
    font-size: 30px;
  }
}

