body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 56px; /* Account for fixed navbar */
   background-color: #cadeef;
   
}

.hero {
  height: 60vh;
  
  background-color: #cadeef;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.5rem;
}

.service-card,
.team-card {

  background-color: #909fac;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.card-hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card i,
.team-card i {
  color: #003366;
}

.service-card h3,
.team-card h3 {
  margin: 1rem 0;
  color: #003366;
}

#carousel .carousel-item img {
  object-fit: cover;
  object-position: center;
  height: 400px;
  width: 100%;
}



.client-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style-type: none;
  padding-left: 0;
}

.client-list li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    height: 40vh;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .client-list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

