/* ------------------------------------------------------------------------------------- */
/* top heading  */
.row3 {
  /* background-color: #3185b6; */
  background-color: #0F1526;
  color: white;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.row3 a:hover {
  color: #9b51e0;
}

.row3 a {
  font-size: 16px;
}

/* about section  */

/* -------------------------------  */
/* hierachy  */

/* .person-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fa4729;
  margin-bottom: 10px;
}
.person {
  background-color: #fa4729;
} */

/* client section  */

.client-section {
  background-color: rgb(74, 98, 230);

  padding-bottom: 30px;
}

.client-wrap {
  padding-top: 30px;
  align-items: center;
}

.client-wrap img {
  filter: brightness(0) invert(1);
}

/* counter section  abou page  */
.counter-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.single-counter-box {
  margin-bottom: 10px;
}

.work-section {
  padding-top: 40px;
}

/* services section  */

.section-title2 {
  text-align: center;
}

.section-title2 h2 {
  font-size: 55px;
  font-weight: 600;
  line-height: 65px;
  color: #181d4e;
  margin-left: 500px;
}

@media (max-width: 768px) {
  .section-title2 h2 {
    font-size: 1.5rem;
  }
}



/* home hero section  */

/* Text fade-in animation */
.fixed-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  width: 50%;
}

/* Text fade-in animation */
.text-animation span,
.text-animation h1,
.text-animation a {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-in-out forwards;
}

.text-animation span {
  animation-delay: 0.3s;
}

.text-animation h1 {
  animation-delay: 0.4s;
}

.text-animation a {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}



/* sliding  */

.carousel-item {
  transition: transform 1s ease-in-out; 
}

.carousel-item-next, .carousel-item-prev {
  display: block; 
  position: absolute; 
  width: 100%;
}

.carousel-item-next {
  transform: translateX(100%); 
}

.carousel-item-prev {
  transform: translateX(-100%); 
}

.carousel-item.active.carousel-item-next {
  transform: translateX(0); 
}

.carousel-item.active.carousel-item-prev {
  transform: translateX(0); 
}




    .carousel-item img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    
    /* Media Query for Mobile Devices */
    @media (max-width: 768px) {
      .carousel-item {
        height: 60vh; /* Set a smaller height for mobile devices */
      }
      .carousel-item img {
        object-fit: cover;
        height: 100%; /* Ensure image covers the carousel item */
      }
    }

    /* Custom Caption Styling */
    .carousel-caption {
      top: 50%;
      transform: translateY(-50%);
    }
 