body {
  font-family: "Inter", sans-serif;
}

.top-header {
  background-color: #003366;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.top-header .social-icons a {
  color: #ffffff;
  margin-right: 12px;
  text-decoration: none;
}

.top-header .contact-info i {
  margin-right: 6px;
  color: #ffc107;
}

.top-header .contact-info span {
  display: inline-block;
  margin-left: 15px;
}

.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  font-size: 24px;
  color: #003366;
}

.navbar-brand img {
  width: 200px;
}

.nav-link {
  color: #003366;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link:hover {
  color: #003366;
}

.btn-login,
.btn-connect {
  margin-right: 10px;
  border-radius: 50px;
  padding: 5px 30px;
}

.btn-outline-primary {
  border-color: #003366;
  color: #003366;
}

.btn-primary {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 50px;
}
.btn-secondary {
  background-color: #003366;
  border: 1px solid white;
  border-radius: 50px;
}

.btn-outline-primary:hover {
  border-color: white;
  color: blue;
  background-color: #003366;
}

.btn-primary:hover {
  border-color: white;
  color: white;
  background-color: #003366;
}
.btn-secondary:hover {
  border-color: #003366;
  color: #003366;
  background-color: white;
}

.text-blue {
  color: #003366;
}
.service {
  background-color: #003366;
  color: white;
}
.img-container {
  overflow: hidden;
  margin-bottom: 12px;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h-200 {
  height: 200px;
}

.h-400 {
  height: 400px;
}

.h-190 {
  height: 190px;
}

.h-100-px {
  height: 200px;
}

.bg-light-blue {
  background-color: #f0f3f7;
}

.bg-dark-blue {
  background-color: #003366;
}

.bg-darker-blue {
  background-color: #00264d;
}

.bg-footer {
  background-color: #004589;
  border-radius: 5px;
}

.service-card {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0px;
  transition: transform 0.3s;
  overflow: hidden;
  position: relative;
}
.service-card .image1 {
  background-image: url(./Images/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
}
.service-card .grad {
  background: #ffffff;
  background: linear-gradient(
    360deg,
    rgb(0, 51, 102) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}
.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.service-card .service-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
  font-weight: 600;
}
.service-card .service-subheading {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 0;
}
.service-card .details {
  position: absolute;
  color: #ffffff;
  padding: 10px 20px;
  transition: all 0.5s ease-in-out;
  text-align: left;
  bottom: -220px;
}
.service-card .image1:hover .details {
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
}
.service-card .description {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.service-card .image1:hover .details .description {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
.service-card .industry-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #003366;
  font-weight: 600;
}
.service-card .industry-subheading {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 0;
}

.stats-box {
  background-color: #f0f7ff;
  padding: 30px 20px;
  border-radius: 12px;
  margin-top: 40px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #002f6c;
}

 .step-indicator {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 30px 0;
    }
    .step {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background-color: #eaeaea;
      color: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      margin: 0 10px;
      position: relative;
      z-index: 1;
    }
    .step.active {
      background-color: #0d3b66;
      color: white;
    }
   
    .step:last-child::after {
      display: none;
    }

    .carousel-wrapper {
      position: relative;
    }

    .card-carousel {
      display: flex;
      overflow: hidden;
      justify-content: center;
      gap: 20px;
    }

    .card-item {
      flex: 0 0 30%;
      transition: all 0.3s ease;
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      background-color: #f5f5f5;
      position: relative;
    }

    .card-item img {
      width: 100%;
      height: auto;
    }

    .card-item.active {
      background-color: #003366;
      color: white;
      padding: 25px;
      transform: scale(1.05);
    }

    .card-item:not(.active) {
      opacity: 0.6;
    }

    .carousel-nav {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 50%;
      padding: 8px 12px;
      cursor: pointer;
      font-size: 20px;
      font-weight: bold;
    }

    .carousel-nav.prev {
      left: -30px;
    }

    .carousel-nav.next {
      right: -30px;
    }

    .know-more-btn {
      border: 1px solid white;
      color: white;
      background-color: transparent;
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 14px;
      margin-top: 15px;
    }

    @media (max-width: 768px) {
      .card-carousel {
        flex-direction: column;
        align-items: center;
      }
      .card-item {
        flex: 1 0 100%;
        width: 90%;
      }
      .carousel-nav {
        display: none;
      }
    }

     .stepper {
      gap: 10px;
      flex-wrap: nowrap;
    }

    .step-circle {
      width: 36px;
      height: 36px;
      background-color: #ccc;
      border-radius: 50%;
      text-align: center;
      line-height: 36px;
      font-weight: bold;
      color: #333;
      font-size: 14px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .step-circle.active {
      background-color: #003366;
      color: #fff;
    }

    .step-line {
      flex: 1;
      height: 2px;
      background-color: #ccc;
      margin: 0 5px;
    }

    .swiper-slide {
      width: 300px;
      height: 300px;
      background-color: #ddd;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .swiper-slide.swiper-slide-visible.swiper-slide-active {
      transform: scale(1.05);
      background-color: #003366;
      color: white;
    }

    .blog-badge {
  background-color: #001f3f;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-right: 0.3rem;
}

.blog-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.blog-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.blog-date {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.cta-section {
  background-color: #e8f0f6;
  border-radius: 12px;
  padding: 50px 20px;
  text-align: center;
}

.cta-section h4 {
  font-weight: 700;
  color: #003366;
}

.cta-section p {
  color: #444;
  max-width: 600px;
  margin: 10px auto 30px;
}

.cta-btn {
  border: 1px solid #003366;
  color: #003366;
  background-color: transparent;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.cta-btn:hover {
  background-color: #003366;
  color: #fff;
}

.why-us{
  background-color: #002f6c;
  color: white  ;
}