
 .hover-shadow:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
    transition: 0.3s ease;
  }

.marquee-wrapper {
  height: auto;
  white-space: nowrap;
}

.marquee-content {
  animation: marquee-slide 20s linear infinite;
}

@keyframes marquee-slide {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

    .section-title {
      font-weight: 700;
      font-size: 1.8rem;
    }
    .service-item {
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }
    .service-item i {
      color: #f39c12;
      margin-right: 8px;
    }
    .cta-box {
      background: linear-gradient(to right, #004aad, #012f6d);
      color: #fff;
      padding: 50px 20px;
      text-align: center;
    }
    .cta-box .btn {
      font-size: 1.1rem;
      padding: 12px 28px;
    }
    .read-more {
      font-size: 0.9rem;
      color: #007bff;
      text-decoration: none;
    }
    .read-more:hover {
      text-decoration: underline;
    }
 .counter-banner {
      background: linear-gradient(to right, #085cc8, #012b5e);
      color: white;
      padding: 60px 0;
      text-align: center;
    }
    .counter-box {
      font-size: 2.5rem;
      font-weight: 700;
    }
    .label {
      font-size: 1.2rem;
      color: #ffc107;
    }
     .service-sidebar {
      background-color: #004080;
      border-radius: 8px;
      padding: 20px;
      height: 100%;
      color: white;
    }
    .service-item {
      cursor: pointer;
      padding: 12px;
      border-radius: 5px;
      transition: 0.3s;
      margin-bottom: 8px;
    }
    .service-item:hover,
    .service-item.active {
      background-color: #ffffff;
      color: #004080;
      font-weight: 600;
    }
    .service-item i {
      margin-right: 8px;
    }
    .service-content {
      display: none;
      animation: fadeIn 0.5s;
    }
    .service-content.active {
      display: block;
    }
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }
    .marquee-wrapper {
  height: 250px;
}

.marquee-content {
  animation: scroll-left 40s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}
.brand-marquee-wrapper {
  height: 80px;
}

.brand-marquee {
  width: max-content;
  animation: scroll-brand 40s linear infinite;
}

@keyframes scroll-brand {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}
.section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #021c42;
    }
    .icon-box {
      font-size: 1.6rem;
      color: #041c3f;
      margin-right: 8px;
    }
    .card {
      border: none;
      border-radius: 12px;
    }
    .bg-lightblue {
      background-color: #eef6ff;
    }
    table th {
      background-color: #dbeafe;
    }