/*home video*/
.home-video {
  position: relative;
}

/*whatsapp icon footer*/
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}


/*Statutory Compliance and Audits   css*/
.service-features {
  padding: 30px 20px;
  background: #f9f9f9;
  /*text-align: center;*/
}

.service-features h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
  position: relative;
}

.service-features h3::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #007bff;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.feature-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: #F37021;
  flex-shrink: 0;
}

.feature-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Fade-in animation for each feature */
.feature-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: row;
    align-items: center;
  }
}


.service-process {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  margin-top: 20px;
}

.service-process h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
  position: relative;
}

.service-process h3::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #F37021;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.process-step {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #0B3C6F;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: background 0.3s;
}

.process-step:hover .step-number {
  background: #F37021;
}

.step-icon {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
  display: block;
}

.step-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
}


.service-stats.aos-init.aos-animate {
  /* padding: 20px; */
  text-align: center;
  margin-top: 30px;
}

.stat-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(8, 9, 6, 1.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  color: #F37021;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0B3C6F;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



/*team  css*/
@font-face {
  font-family: Exo;
  src: url(./fonts/Exo2.0-Medium.otf);
}

.team {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card {
  position: relative;
  font-family: sans-serif;
  width: 220px;
  height: 220px;
  background: #fff;
  padding: 30px;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: .6s;
  margin: 0 25px;
}

.profile-card:hover {
  border-radius: 10px;
  height: 260px;
}

.profile-card .img {
  position: relative;
  width: 100%;
  height: 100%;
  transition: .6s;
  z-index: 99;
}

.profile-card:hover .img {
  transform: translateY(-60px);
}

.img img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 22px #3336;
  transition: .6s;
}

.profile-card:hover img {
  border-radius: 10px;
}

.caption {
  text-align: center;
  transform: translateY(-80px);
  opacity: 0;
  transition: .6s;
}

.profile-card:hover .caption {
  opacity: 1;
}

.caption h3 {
  font-size: 21px;
  font-family: sans-serif;
}

.caption p {
  font-size: 15px;
  color: #0c52a1;
  font-family: sans-serif;
  margin: 2px 0 9px 0;
}

.caption .social-links a {
  color: #333;
  margin-right: 15px;
  font-size: 21px;
  transition: .6s;
}

.social-links a:hover {
  color: #0c52a1;
}

img.team-img {
  width: 100%;
  height: 160px;
}

/* Mobile (screens smaller than 768px) */
@media (max-width: 768px) {
  img.team-img {
    width: 80px;
    /* smaller on mobile */
    height: 80px;
  }

  .profile-card {
    position: relative;
    font-family: sans-serif;
    width: 160px;
    height: 160px;
    background: #fff;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 0 22px #3336;
    transition: .6s;
    margin: 0 5px;
    margin-bottom: 45px;
  }

  .profile-card:hover {
    border-radius: 10px;
    height: 220px;
  }

  .caption {
    text-align: center;
    transform: translateY(-100px);
    opacity: 0;
    transition: .6s;
  }

}

/* Extra small screens (phones) */
@media (max-width: 480px) {
  img.team-img {
    width: 120px;
    /* very small on phones */
    height: 120px;
  }
}



/*project page css*/
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 5px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 50s slide infinite linear;
}

.logos-slide img {
  height: 70px;
  margin: 0 40px;
}



.cursor {
    display: block;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 111;
    border: 2px solid #F37021;
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    border: 1px solid #0B3C6F;
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2.5);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}






/*scroll section home page*/
h1.aegis-title {
    font-size: 30px;
     text-align: center;
}

.aegis-content {
  text-align: center;
  font-size: 12px;
}

img.aegis-industry  {
    height: 400px;
}

  /* Custom arrows */
    .control {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
    }

    .control li {
      display: inline-block;
      background: #333;
      color: #fff;
      padding: 10px 15px;
      border-radius: 50%;
      transition: background 0.3s;
    }

    .control li:hover {
      background: #555;
    }

    /* Slide styling */
    .my-slider .slide {
      position: relative;
      padding: 5px;
    }

    .my-slider .slide img {
      width: 100%;
      border-radius: 10px;
    }

    /* Caption styling */
    .my-slider .text-caption {
      position: absolute;
      bottom: 15px;
      left: 20px;
      right: 20px;
      background: rgba(0, 0, 0, 0.6);
      color: #F37021;
      padding: 8px 12px;
      border-radius: 5px;
      font-size: 16px;
      text-align: left;
    }

    /* Remove default slick arrows */
    .slick-prev,
    .slick-next {
      display: none !important;
    }

    /* Responsive captions */
    @media (max-width: 768px) {
      .my-slider .caption {
        font-size: 14px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 6px 10px;
      }
    }

    @media (max-width: 480px) {
      .my-slider .text-caption {
        font-size: 12px;
        padding: 5px 8px;
      }
    }
    
   


.slick-slide {
    display: none;
    float: left;
    height: 54% !important;
    min-height: 1px;
}











