body{
  overflow-x: hidden;
}


/* clients slider */

.marquee-container {
  
    width: 100%;
    overflow: hidden;
    background: #064c7f;
    padding: 20px 0;
  }

  .marquee {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
  }

  .marquee:hover {
    animation-play-state: paused;
  }

  .marquee img {
    width: 140px;
    height: 140px;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 5px;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

  /* infrastructure */
.infra {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Add a subtle pseudo-element overlay for hover effect */
.infra::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg.webp") bottom center / cover no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 0;
}

.infra h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  position: relative;
  z-index: 1;
}

.infra p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Hover effect */
.infra:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Show the background overlay on hover */
.infra:hover::before {
  opacity: 0.25; /* subtle overlay */
}

/* Icon animation */
.infra i {
  transition: all 0.3s ease-in-out;
}

  /* .infra:hover i {
    color: #007bff;
    transform: rotate(15deg) scale(1.2);
  } */

/* Optional: subtle text color change on hover */
.infra:hover h4,
.infra:hover p {
  color: #222;
}

/* Optional: add a gentle hover shine effect */
.infra::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.7s ease-in-out;
  z-index: 0;
}

.infra:hover::after {
  transform: rotate(25deg) translateX(100%);
}


  /* env */
.env {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  margin: 20px 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Add a subtle pseudo-element overlay for hover effect */
.env::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #064c7f ;
  /* background: url("../images/bg.webp") bottom center / cover no-repeat; */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 0;
}

.env h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  position: relative;
  z-index: 1;
}

.env p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Hover effect */
.env:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Show the background overlay on hover */
.env:hover::before {
  opacity: 0.25; /* subtle overlay */
}

/* Icon animation */
.env i {
  transition: all 0.3s ease-in-out;
}

  /* .env:hover i {
    color: #007bff;
    transform: rotate(15deg) scale(1.2);
  } */

/* Optional: subtle text color change on hover */
.env:hover h4,
.env:hover p {
  color: #222;
}

/* Optional: add a gentle hover shine effect */
.env::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.7s ease-in-out;
  z-index: 0;
}

.env:hover::after {
  transform: rotate(25deg) translateX(100%);
}




/* about */


      .feature-item {
        margin-left: 5px;
      }

      .cardhover{
        transition: all 0.3s ease-out !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
      } 

      .cardhover:hover h5{
        color: white;
        transition: all 0.3s ease-in !important;
      }

      .cardhover:hover{
        background: linear-gradient(to top left, lightblue ,#104C7F);
        color: white !important;
        transition: all 0.3s ease-in !important;
      }

      .cardhover:hover .iconwhite{
        color: white;
      }

          /* Timeline Container */
    .timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 50px 0;
    }

    /* Dashed Vertical Line */
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 4px;
      height: 100%;
      border-left: 3px dashed #0d6efd;
      opacity: 0.5;
    }

    /* Timeline Item */
    .timeline-item {
      position: relative;
      width: 50%;
      padding: 20px 40px;
      box-sizing: border-box;
    }

    /* Left Side */
    .timeline-item.left {
      left: 0;
      text-align: right;
    }

    /* Right Side */
    .timeline-item.right {
      left: 50%;
    }

    /* Circle */
    /* .timeline-dot {
      position: absolute;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      width: 22px;
      height: 22px;
      background-color: #fff;
      border: 4px solid #0d6efd;
      border-radius: 50%;
      z-index: 1;
    } */

    /* Content Box */
    .timeline-box {
      background: #fff;
      padding: 20px 25px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .timeline-box:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .timeline-year {
      font-weight: 700;
      color: #0d6efd;
      font-size: 1.2rem;
    }

    .timeline-item.right .timeline-box {
      text-align: left;
    }

    .timeline-item.left .timeline-box {
      text-align: right;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .timeline::before {
        left: 20px;
      }

      .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 25px;
        text-align: left !important;
      }

      .timeline-item.left,
      .timeline-item.right {
        left: 0;
      }

      .timeline-dot {
        left: 20px;
        transform: translateX(0);
      }

      .timeline-box {
        text-align: left !important;
      }
    }




    /* sevices */

    .section-title {
      text-align: center;
      font-weight: 700;
      color: #004aad;
      margin-bottom: 30px;
    }

    .service-card {
      background: white;
      border: none;
      border-radius: 18px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease-in-out;
      overflow: hidden;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0, 74, 173, 0.2);
    }

    .service-icon {
      font-size: 40px;
      color: #004aad;
      background: linear-gradient(135deg, #004aad, #00b4d8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .service-card .card-body {
      padding: 25px;
    }

    .service-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .service-card ul {
      padding-left: 20px;
      margin-bottom: 10px;
    }

    .service-card ul li {
      margin-bottom: 5px;
    }

    .badge-gradient {
      background: linear-gradient(90deg, #004aad, #00b4d8);
      color: white;
      border-radius: 20px;
      padding: 5px 12px;
      font-size: 0.8rem;
      font-weight: 500;
    }
  



    /* navbar */

  
  .logo-img {
   position: absolute;
   top: 0;  
  }

  .navbar {
    position: relative;
    z-index: 10;
  }

  @media (max-width: 991px) {
    .logo-img {
      height: 55px;
      transform: translateY(0);
    }
  }

  @media (max-width: 575px) {
    .logo-img {
      height: 50px;
    }
  }





  /* heading style */
  

.styled-heading {
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.8rem;
  padding-bottom: 10px;
}

/* Main center line with gradient */
.styled-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #F36723, transparent);
  border-radius: 2px;
  animation: glowLine 3s infinite ease-in-out;
}

/* Center decorative diamond */
.styled-heading::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #F36723;
  box-shadow: 0 0 12px #f368238a;
}

/* Soft glow animation on the underline */
@keyframes glowLine {
  0%, 100% {
    opacity: 0.8;
    box-shadow: 0 0 6px #f368238a;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 14px #f368238a;
  }
}

/* Responsive design */
@media (max-width: 576px) {
  .styled-heading {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .styled-heading::after {
    width: 120px;
  }
}


