    .nav-link {
      position: relative;
      color: #124e83;
      font-weight: 700;
      font-size: 1.5rem !important;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      left: 0;
      bottom: 0;
      background-color: #51bb88;
      transition: width 0.3s ease-in-out;
    }

    .margin-left{
      margin-left: 8rem !important;
    
    }
    
    .padding-63{
        padding: 75px;
    }
    .margin-top {
      margin-top: 3rem !important;
    }

    .nav-link:hover::after {
      width: 100%;
      
    }

    .testimonials-icon{
      color: #124e83;
      stroke: #124e83;
      stroke-width: 0.8;
      
      
    }

    .hero-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  line-height: 1.3;
}
.hero-section-top{
  justify-content: right !important;
}
.hero-section-about{
  top: 50% !important;
}
.hero-img {
  width: 100%;
  display: block; /* Removes gap between inline images */
  margin: 0;
  padding: 0;
}

/* Overlay text */
.hero-text {
  position: absolute;
  color: #fff;
  text-align: right;
  z-index: 2;
  padding: 20px;
}

/* Optional different placements if needed */
.top-text {
  top: 33%;
  transform: translateY(-50%);
}

 .rem-15{
    font-size: 1.2rem;
 }
.bottom-text {
  top: 50%;
  transform: translateY(-50%);
}

/* Optional background overlay for better text visibility */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.158);*/
  z-index: 1;
}
.os-teams-card{
  /*background-color: rgba(255, 255, 255, 0.6); */
  /*border-radius: 10px;*/
  /*margin-right: 3rem;*/
}

/* Responsive text scaling */
@media (max-width: 768px) {
  .hero-text h1, .hero-text h2 {
    font-size: 1.5rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}

     .border-section{
        border: 1px solid #d2d2d2 !important;
        padding: 16px;
        border-radius: 8px;
    }
    .nav-link:hover{
        color: #51bb88;
    }

    .nav-link.active {
        color: #51bb88 !important;
        font-weight: 700 !important;
    }

    .object-fit-cover {
        object-fit: cover;
    }

    .color-theme{
        color: #124e83;
    }
    .color-yellow{
      color: #ebb81e;
    }

    .color-theme-background{
      background-color: #124e83;
    }

    .custom-border-btn{
        border: 2px solid #124e83;
    }

    .custome-border-bottom{
      border-bottom: 3px solid #124e83;
      display: inline-flex;
    }
    
    .carousel-control-next {
    right: -155px !important;
    }
    .carousel-control-prev {
    left: -140px !important;
}


.carousel-control-prev-icon.custom-arrow,
.carousel-control-next-icon.custom-arrow {
    background-image: none;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    border: solid yellow;
    border-width: 0 6px 6px 0;
    padding: 8px;
}

.carousel-control-prev-icon.custom-arrow {
    transform: rotate(135deg);
}

.carousel-control-next-icon.custom-arrow {
    transform: rotate(-45deg);
}

.text-justify {
    text-align: justify;
}

.border-green{
  border: 1px solid green;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Fix dropdown position */
    
    
}

.service-card-img {
    height: 250px;              /* You can adjust this height as needed */
    object-fit: cover;
    width: 100%;
}

.about-card-img-fixed {
    height: 300px;           /* Set your desired image height */
    object-fit: cover;
    width: 100%;
}


.tech-slider {
  overflow: hidden;
  position: relative;
  background: #fff;
  padding: 30px 0;
}

.tech-slider .slide-track {
  display: flex;
  width: calc(250px * 40); /* Adjust width based on number of images */
  animation: scroll 60s linear infinite;
}

.tech-slider .slide {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.tech-slider img {
  width: 180px; /* Control logo size */
  height: auto;
  filter: grayscale(0%);
  transition: transform 0.1s ease, filter 0.3s ease;
}

.tech-slider img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Infinite scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 20)); } /* Half of total width */
}