.vert-center {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
  /* Centers vertically */
  height: 100%;
  /* Ensure it takes full height of the container */
}



.card-link {
  text-decoration: none;
  color: inherit;
}

.card-link .card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-link .card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.profile-container {
  padding: 2rem;
}

.profile-card {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.profile-header h2 {
  font-weight: bold;
}

.profile-body {
  line-height: 1.6;
}

/* services */
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
}


.swiper-container-hero {
  width: 100%;
  height: 100vh;
}

.heros-slide {
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

.heros-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Adds a dark overlay */
  z-index: 1;
}

.heros-slide .container {
  position: relative;
  z-index: 2;
}

.heros-slide h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.heros-slide p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.heros-slide .btn-get-started {
  background-color: #df1529;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.slide-1,
.slide-2,
.slide-3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-1 {
  background-image: url('/assets/img/header/ecs.webp');
}

.slide-2 {
  background-image: url('/assets/img/header/consultancy.webp');
}

.slide-3 {
  background-image: url('/assets/img/header/dev.webp');
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .heros-slide h1 {
      font-size: 2rem;
  }

  .heros-slide p {
      font-size: 1rem;
  }
}

.section-no-padding {
  padding: 0;
}