@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  font-family: "Lato", sans-serif;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------ NAVBAR SECTION STARTS ------------ */
.bg_navbar {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  min-height: 78px;
}

.navbar-nav {
  gap: 22px;
}

.navbar-nav .nav-link {
  color: #1d1d1f !important;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 10px !important;
  position: relative;
  transition: color 0.2s ease;
}

/* underline hover */
.navbar-nav .nav-link::after {
  content: "";
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: #0048da !important;
}
/* .navbar-nav .nav-link:hover::after {
  background: #0048da;
} */

.navbar-nav .nav-link.active {
  color: #32a5ff !important;
}
/* .navbar-nav .nav-link.active::after {
  background: #0048da;
} */

.logo_img {
  filter: none !important;
  max-width: 100px;
}

/* -------------------- MEGA DROPDOWN (DESKTOP + RESPONSIVE 992px+) -------------------- */
@media (min-width: 992px) {
  .hover-dropdown:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0px) !important;
  }

  .mega-dropdown {
    position: static;
  }

  .mega-dropdown .dropdown-menu {
    position: absolute;
    top: 74px !important;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
  }

  .dropdown-menu.mega-menu {
    min-width: 0 !important;
    width: min(1320px, calc(100vw - 80px)) !important; /* responsive */
    max-width: calc(100vw - 80px) !important;

    padding: 44px 50px !important;
    background: #071a3a !important;
    border-radius: 4px !important;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45) !important;
    overflow: hidden;
    position: relative;
  }

  .dropdown-menu.mega-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #071a3a;
  }

  .dropdown-menu.mega-menu .container-fluid {
    padding: 0 !important;
  }

  .mega-grid {
    display: grid;
    /* grid-template-columns: repeat(4, minmax(220px, 1fr)); */
    grid-template-columns: repeat(5, minmax(213px, 0fr)) !important;
    column-gap: 50px;
    row-gap: 22px;
    align-items: start;
  }

  .mega-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin: 18px 0;
  }

  .mega-col-empty {
    display: none !important;
  }

  .mega-heading {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 14px;
  }
  .mega-heading.active {
    color: #32a5ff;
  }

  .mega-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 10px;
    background: #ffb000;
  }

  .mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 15px !important;
  }

  .mega-list li {
    padding: 6px 0;
  }

  .mega-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition:
      color 0.2s ease,
      transform 0.2s ease;
    display: inline-block;
  }

  .mega-list a:hover {
    color: #fff;
    transform: translateX(6px);
  }

  /* ================== RESPONSIVE GRID BREAKPOINTS ================== */

  @media (min-width: 992px) and (max-width: 1199.98px) {
    .dropdown-menu.mega-menu {
      width: calc(100vw - 60px) !important;
      padding: 36px 34px !important;
    }

    .mega-grid {
      grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
      column-gap: 34px !important;
      row-gap: 20px !important;
    }
  }

  @media (min-width: 1200px) and (max-width: 1399.98px) {
    .dropdown-menu.mega-menu {
      width: min(1180px, calc(100vw - 80px)) !important;
      padding: 40px 42px !important;
    }

    .mega-grid {
      grid-template-columns: repeat(4, minmax(240px, 1fr)) !important;
      column-gap: 40px !important;
    }
  }

  @media (min-width: 1400px) {
    .dropdown-menu.mega-menu {
      width: 1430px !important;
      /* max-width: 1480px !important; */
      padding: 44px 50px !important;
    }

    .mega-grid {
      grid-template-columns: repeat(5, minmax(213px, 1fr)) !important;
      column-gap: 50px !important;
    }
  }
}

/* -------------------- MOBILE NAVBAR + FULL SCREEN MENU -------------------- */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed !important;
    right: 0;
    top: 86px;
    width: 100%;
    height: 100%;
    background: #071a3a;
    padding: 0px 40px 22px;
    transition: right 0.28s ease;
    z-index: 9999;
    overflow-y: auto;
  }
  .navbar-collapse.show {
    right: 0;
    top: 79px;
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 18px !important;
    padding: 0 10px !important;
  }

  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 22px !important;
    padding: 8px 0 !important;
    width: 100%;
  }

  /* .navbar-nav .dropdown-toggle::after {
    display: none !important;
  } */
  

  .nav-item.dropdown {
    width: 100% !important;
  }

  .dropdown-menu.mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 10px 0 0 !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  .dropdown-menu.mega-menu.w-100.start-50.translate-middle-x {
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }

  .dropdown-menu.mega-menu .container-fluid {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .mega-grid {
    display: block !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .mega-divider,
  .mega-col-empty {
    display: none !important;
  }

  .mega-col {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100% !important;
  }
  .mega-col:first-child {
    border-top: 0;
  }

  .mega-heading {
    margin: 0 !important;
    padding: 18px 18px !important;
    font-size: 16px !important;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.2);
    width: 100% !important;
  }

  .mega-heading::after {
    content: "+";
    font-size: 22px;
    font-weight: 700;
    opacity: 0.95;
  }

  .mega-col.open .mega-heading::after {
    content: "–";
    font-size: 22px;
  }

  .mega-col.open .mega-heading{
    color: #0048da;
  }

  .mega-list {
    display: none;
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.15);
    width: 100% !important;
  }

  .mega-col.open .mega-list {
    display: block;
  }

  .mega-list li {
    padding: 14px 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-list a {
    display: block;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 14px !important;
    text-decoration: none !important;
  }
  .mega-list a:hover {
    color: #fff !important;
  }

  
}

/* Hamburger animation */
.animated-toggler .navbar-toggler-icon {
  --w: 24px;
  --h: 2px;
  --gap: 7px;
  background: #0048da;
  width: var(--w);
  height: var(--h);
  position: relative;
  transition: background 0.2s ease;
}

.animated-toggler .navbar-toggler-icon::before,
.animated-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: var(--w);
  height: var(--h);
  background: #32a5ff;
  transition:
    transform 0.25s ease,
    top 0.25s ease;
}

.animated-toggler .navbar-toggler-icon::before {
  top: calc(-1 * var(--gap));
}

.animated-toggler .navbar-toggler-icon::after {
  top: var(--gap);
}

.animated-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.animated-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.animated-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mega menu active link */
.mega-menu a.active {
  color: #0048da !important;
  font-weight: 700;
}

.nav-link.dropdown-toggle.active {
  color: #0d6efd !important;
  font-weight: 700;
}
/* ------------ NAVBAR SECTION ENDS ------------ */


/* ------------ FOOTER SECTION STARTS ------------ */
.footer{
  background: radial-gradient(1200px 500px at 20% 10%, rgba(0, 140, 255, 0.25), transparent 60%), radial-gradient(967px 500px at 10% 22%, rgb(0 255 226 / 50%), transparent 60%), linear-gradient(180deg, #021a2d 0%, #041b33 40%, #041529 100%);
}
.logo {
  display: inline-block;
  width: 200px;
}

.footer_links {
  font-size: 16px;
}

.footer_links:hover {
  color: #57dede !important;
  padding-right: 15px;
}

.footer-shape {
  font-size: 13px;
}

.icon-color {
  color: #57dede;
}
/* ------------ FOOTER SECTION ENDS ------------ */


/* ------------ HOME SECTION STARTS ------------ */
/********* Hero section *********/
.hero_section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero_video {
  width: 100%;
  object-fit: cover;
  display: none;
}
@media (min-width: 1281px) {
  .video-lg {
    display: block;
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .video-md {
    display: block;
    /* height: 650px; */
  }
}

@media (max-width: 768px) {
  .video-sm {
    display: block;
    /* height: 450px; */
  }
}

/********** About Section **********/
.mv-about {
  position: relative;
  overflow: hidden;
}


.mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #002778;
  background: rgba(49, 164, 254, 0.12);
  border: 1px solid rgba(49, 164, 254, 0.22);
  margin-bottom: 14px;
}
.mv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00fee1;
  box-shadow: 0 0 0 6px rgba(0, 254, 225, 0.18);
}

.mv-title {
  margin: 0 0 12px;
  font-weight: 900;
  line-height: 1.08;
  font-size: clamp(28px, 3.2vw, 46px);
  color: #0b115d;
}

.mv-sub {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(6, 26, 58, 0.72);
}
.mv-desc {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(6, 26, 58, 0.68);
}

.mv-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.mv-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 39, 120, 0.1);
  box-shadow: 0 12px 28px rgba(0, 39, 120, 0.08);
  font-weight: 800;
  font-size: 14px;
  color: rgba(6, 26, 58, 0.85);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.mv-chip i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #002778;
  background: rgba(0, 254, 225, 0.14);
  border: 1px solid rgba(0, 254, 225, 0.25);
}

.mv-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 254, 225, 0.45);
  box-shadow: 0 18px 40px rgba(0, 39, 120, 0.12);
}

.mv-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  color: #001a33;
  background: linear-gradient(90deg, #00fee1, #31a4fe);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.mv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  padding: 12px 18px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, #0048da, #0b2e8f);
}

.mv-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

/* blob */
.mv-blob {
  position: absolute;
  width: min(450px, 92%);
  height: min(450px, 92%);
  border-radius: 45% 55% 60% 40% / 45% 40% 60% 55%;
  filter: blur(14px);
  opacity: 0.95;
}

/* image */
.mv-img {
  position: relative;
  width: min(430px, 100%);
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 39, 120, 0.12);
  background: #fff;
}
.mv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease;
  display: block;
}
.mv-img:hover img {
  transform: scale(1.08);
}

.mv-float {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 39, 120, 0.1);
  box-shadow: 0 1px 20px rgba(0, 39, 120, 0.16);
  backdrop-filter: blur(10px);
}
.mv-fIcon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #001a33;
  background: linear-gradient(90deg, #00fee1, #31a4fe);
}
.mv-fTitle {
  font-weight: 950;
  color: #002778;
  line-height: 1.1;
}
.mv-fText {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(6, 26, 58, 0.7);
}

/* ===== responsive ===== */
@media (max-width: 1199px) {
  .mv-media {
    min-height: 480px;
  }
  .mv-img {
    height: 480px;
  }
}

@media (max-width: 991px) {
  .mv-about {
    padding: 56px 0;
  }
  .mv-media {
    min-height: 430px;
    margin-top: 10px;
  }
  .mv-img {
    height: 430px;
    width: min(560px, 100%);
  }
  .mv-desc {
    max-width: 72ch;
  }
}

@media (max-width: 767px) {
  .mv-chips {
    grid-template-columns: 1fr;
  }
  .mv-stats {
    grid-template-columns: 1fr;
  }
  .mv-media {
    min-height: 390px;
  }
  .mv-img {
    height: 390px;
  }
  .mv-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .mv-title {
    font-size: 26px;
  }
  .mv-sub {
    font-size: 14px;
  }
  .mv-desc {
    font-size: 14px;
  }
  .mv-img {
    height: 340px;
    border-radius: 16px;
  }
  .mv-btn {
    width: 100%;
  }
}
@media (max-width: 575px) {
    .mv-about {
        padding: 60px 25px !important;
    }
}

/********** Service Section **********/
.services-wrapper {
  background:
    radial-gradient(
      1200px 500px at 20% 10%,
      rgba(0, 140, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 30%,
      rgb(0 255 226 / 36%),
      transparent 60%
    ),
    linear-gradient(180deg, #021a2d 0%, #041b33 40%, #041529 100%);
}

.services-wrapper h2 {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
  color: #fff;
}

.service-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 12px 14px;
  margin: 0 0 22px;
  background: #0048da1f;
  border-radius: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.service-tabs::-webkit-scrollbar {
  height: 0px;
}
.service-tabs {
  scrollbar-width: none;
}

.service-tabs li {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.service-tabs li:hover {
  transform: translateY(-2px);
  background: rgba(0, 72, 218, 0.1);
}

.service-tabs li.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #0048da, #0b2e8f);
}

@media (max-width: 768px) {
  .service-tabs {
    gap: 10px;
    padding: 10px 12px;
  }
  .service-tabs li {
    font-size: 13px;
    padding: 9px 14px;
  }
}
@media (max-width: 420px) {
  .service-tabs li {
    font-size: 12px;
    padding: 8px 12px;
  }
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.tab-swiper {
  position: relative;
  overflow: visible;
  padding-bottom: 22px;
}

.tab-swiper .swiper-slide {
  display: block;
  height: auto;
}

.tab-swiper .service-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tab-swiper .swiper-wrapper {
  box-sizing: border-box;
  align-items: stretch;
}

@media (max-width: 1299px) and (min-width: 992px) {
  .swiper-btn-prev {
    left: 8px;
  }
  .swiper-btn-next {
    right: 8px;
  }
}

@media (max-width: 991px) {
  .tab-swiper .swiper-wrapper {
    padding: 0;
  }
}

.service-box {
  background: #0048da1f;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 10px 24px rgba(7, 26, 58, 0.1);
  text-decoration: none;
  transition: 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(7, 26, 58, 0.16);
  border-color: rgba(0, 72, 218, 0.35);
}

.service-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-box h5 {
  margin: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.service-box h5::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    rgba(0, 72, 218, 0.2),
    #0048da,
    rgba(0, 72, 218, 0.2)
  );
}

@media (max-width: 991px) {
  .service-img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .service-img {
    height: 170px;
  }
  .service-box {
    min-height: 280px;
  }
}
@media (max-width: 575px) {
  .services-wrapper {
    padding: 60px 25px !important;
  }
}

.swiper-btn-prev,
.swiper-btn-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 20;
  transition: 0.25s ease;
}

.swiper-btn-prev {
  left: 16px;
}
.swiper-btn-next {
  right: 16px;
}

.swiper-btn-prev i,
.swiper-btn-next i {
  color: #071a3a;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: linear-gradient(135deg, #0048da, #0b2e8f);
  border-color: transparent;
}

.swiper-btn-prev:hover i,
.swiper-btn-next:hover i {
  color: #fff;
}

/********** Industry Solutions Section **********/
.industry_solutions h2 {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: 0.5px;
  font-weight: 900;
  color: #0b115d;
  margin-bottom: 30px;
}

.strip-slider {
  display: flex;
  width: 100%;
  height: 650px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.strip-item {
  flex: 0.5;
  min-width: 84px;
  position: relative;
  display: block;
  background: #fff;
  transition: flex 0.55s ease;
  cursor: pointer;
  outline: none;
}
.strip-item:not(.active) {
  background: transparent;
}

.strip-item:last-child {
  border-right: 0;
}

.strip-tab {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 92px;
  background: #f6f7fb;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.strip-tab-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #0048da;
  font-weight: 500;
  font-size: 38px;
  letter-spacing: 0.2px;
  line-height: 1;
  text-align: center;
  padding: 12px 0;
}

.strip-content {
  position: absolute;
  top: 0;
  left: calc(92px - 1px);
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 34px 46px;
  background: #fff;
}

.strip-item.active {
  flex: 3.8;
}
.strip-item.active .strip-content {
  display: block;
}

.strip-title {
  margin: 0;
  font-size: 37px;
  font-weight: 300;
  letter-spacing: 0.2px;
  color: #111;
}
.strip-date {
  margin-top: 10px;
  font-size: 28px;
  color: #111;
  font-weight: 300;
}

.strip-media {
  margin-top: 18px;
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  width: min(860px, 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strip-desc {
  margin: 13px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #111;
  max-width: 920px;
}

.strip-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  color: #111;
  font-size: 18px;
}
.strip-cta span {
  font-size: 22px;
}

.strip-content {
  position: absolute;
  top: 0;
  left: 92px;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 20px 20px;
  background: #fff;
  display: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.strip-item:not(.active) .strip-content {
  display: none;
}

.strip-item:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(0, 140, 255, 0.65);
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 992px) {
  .strip-tab-text {
    font-size: 30px;
  }
  .strip-title {
    font-size: 44px;
  }
  .strip-date {
    font-size: 22px;
  }
  .strip-desc {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .strip-slider {
    display: block;
    height: auto;
    overflow: visible;
    border-radius: 10px;
  }

  .strip-item {
    position: relative;
    flex: none !important;
    min-width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    transition: flex 0.55s ease;
  }
  .strip-item:last-child {
    border-bottom: 0;
  }

  .strip-tab {
    position: relative;
    width: 100%;
    height: auto;
    background: #fff;
    border-right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 14px;
    cursor: pointer;
  }

  .strip-tab-text {
    writing-mode: initial;
    transform: none;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #2a66d9;
    text-transform: uppercase;
    padding: 0;
    line-height: 1.2;
  }

  .strip-content {
    position: relative;
    left: 0;
    right: auto;
    bottom: auto;
    top: auto;
    display: none;
    padding: 12px 14px 16px;
    background: #fff;
  }

  .strip-item.active .strip-content {
    display: block;
  }

  .strip-title {
    font-size: 20px;
    font-weight: 700;
    margin: 2px 0 6px;
    display: none;
  }

  .strip-date {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
  }

  .strip-media {
    width: 100%;
    height: 180px;
    margin-top: 10px;
    border-radius: 6px;
    overflow: hidden;
  }

  .strip-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
    color: #333;
  }
}

@media (max-width: 575px) {
    .industry_solutions {
        padding: 60px 25px !important;
    }
}


/********** Testimonials Section **********/
/* .testimonialSwiper .swiper-slide {
  display: flex !important;
  height: auto !important;
}

.testimonial-box {
  flex: 1;
  background: #edebeb;
  padding: 30px;
  border-radius: 11px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.client-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0e0e0;
}

.client-name {
  font-weight: 700;
  color: #0048da;
}

.client-role {
  font-size: 14px;
  color: #333;
}

.quote-large {
  font-size: 30px;
  color: #d7c7ff;
}

.rating {
  font-size: 13px;
}

.testimonial-big-text {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  color: #222;
  margin-top: 10px;
}

@media (max-width: 575px) {
  .testimonial_section {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
} */

/*************** Customer Stories Section ***************/
.stories-title {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: 0.5px;
  font-weight: 900;
  color: #0b115d;
}
.stories-header,
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.stories-arrows,
.news-arrows {
  display: flex;
  gap: 14px;
  z-index: 10;
}

.custom-prev,
.custom-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #32a5ff;
  color: #32a5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
  background: #32a5ff;
  color: #fff;
}

.swiper_customer,
.swiper_news {
  position: relative;
}

.slide_customer,
.slide_news {
  height: 460px;
  border-radius: 0px !important;
  overflow: hidden;
  border: none !important;
}

.video_div {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video_div video {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 12px;
}

.slide-title {
  position: absolute;
  bottom: 52px;
  left: 22px;
  color: #fff;
  font-size: 35px;
  z-index: 2;
}

@media (max-width: 991px) {
  .slide_customer,
  .slide_news {
    height: 420px;
  }
  .slide-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .slide_customer,
  .slide_news {
    height: 380px;
  }
  .slide-title {
    font-size: 28px;
  }
  .stories-section,
  .lts-section2 {
    padding: 60px 25px !important;
  }
}

/***************** NEWS AND INSIGHTS *****************/
.news-title {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: 0.5px;
  font-weight: 900;
  color: #0b115d;
}

.video_div_news {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video_div_news img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.video_div_news::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(2, 2, 2, 0.842), rgba(32, 32, 32, 0.007));
}

.video_div_news h3 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    bottom 0.35s ease,
    font-size 0.35s ease;
}

.video_div_news p {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.video_div_news:hover h3 {
  font-size: 40px;
}
.news-prev,
.news-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #32a5ff;
  color: #32a5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-prev:hover,
.news-next:hover {
  background: #32a5ff;
  color: #fff;
}
/* ================= DESKTOP HOVER ================= */
@media (min-width: 992px) {
  .video_div_news h3 {
    bottom: 30px;
  }
  .video_div_news:hover h3 {
    bottom: 100px;
    font-size: 40px;
  }

  .video_div_news:hover p {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE / TABLET ================= */
@media (max-width: 991px) {
  .video_div_news {
    height: 460px;
  }

  .video_div_news h3 {
    font-size: 35px;
    bottom: 95px;
  }

  .video_div_news p {
    font-size: 15px;
  }

  .swiper-slide-active .video_div_news p {
    opacity: 1;
    transform: translateY(0);
  }
  .swiper-slide:not(.swiper-slide-active) h3 {
    font-size: 22px;
    bottom: 20px;
  }
}

/* ========== SMALLMOBILE ========== */
@media (min-width: 347px) and (max-width: 575px) {
  .video_div_news {
    height: 460px;
  }
  .video_div_news h3 {
    bottom: 100px;
    font-size: 30px;
  }
  .video_div_news:hover h3 {
    font-size: 22px;
    color: #ffffff;
  }
  .news-section {
    padding: 60px 25px !important;
  }
}
@media (max-width: 320px) {
  .video_div_news {
    height: 460px;
  }
  .video_div_news h3 {
    bottom: 120px;
    font-size: 30px;
  }
  .video_div_news:hover h3 {
    font-size: 22px;
    color: #ffffff;
  }
}
/* ------------ HOME SECTION ENDS ------------ */

/* ================== INNOVATIVE SOLUTION SCTION STARTS ==================  */
.lts2-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1200px 500px at 20% 10%,
      rgba(0, 140, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 30%,
      rgb(0 255 226 / 36%),
      transparent 60%
    ),
    linear-gradient(180deg, #021a2d 0%, #041b33 40%, #041529 100%);
}

.lts2-section::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 420px;
  height: 420px;
  filter: blur(30px);
  border-radius: 50%;
  opacity: 0.55;
}

.lts2-wrap {
  position: relative;
  z-index: 1;
}

.lts2-head {
  max-width: 900px;
}
.lts2-title {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: #fff;
}

.lts2-swiper {
  margin-top: 24px;
}
.lts2-swiper .swiper-slide {
  height: auto;
}

.lts2-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.lts2-media {
  height: 260px;
  flex-shrink: 0;
}
.lts2-media video,
.lts2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lts2-body {
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 22px 22px 24px;
  background: linear-gradient(
    180deg,
    rgb(6 88 90 / 79%) 0%,
    rgb(6 88 90 / 38%) 100%
  );
}

.lts2-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: #0048da6b;
  border: 1px solid #0048da3b;
  color: white;
  margin-bottom: 12px;
}

.lts2-body h4 {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 10px;
  line-height: 1.2;
  color: #fff;
}

.lts2-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 56px;
}

.lts2-nav {
  position: absolute;
  top: -62px;
  right: 0;
  display: flex;
  gap: 10px;
}
.lts2-prev,
.lts2-next {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
}
.lts2-prev:hover,
.lts2-next:hover {
  border-color: rgba(23, 233, 224, 0.45);
  background: rgba(255, 255, 255, 0.1);
}
.lts2-prev::before,
.lts2-next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(135deg);
  top: 15px;
}
.lts2-next::before {
  transform: rotate(-45deg);
}

.lts2-pagination {
  margin-top: 18px;
  text-align: center;
}
.lts2-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
}
.lts2-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .lts2-nav {
    top: -52px;
  }
  .lts2-body h4 {
    font-size: 24px;
  }
  .lts2-body p {
    font-size: 17px;
  }
}
@media (max-width: 575px) {
  .lts2-section{
    padding: 60px 25px !important;
  }
  .lts2-sub {
    font-size: 16px;
  }
  .lts2-body {
    padding: 18px 18px 20px;
  }
  .lts2-body h4 {
    font-size: 22px;
  }
}

/* ================== WHAT'S NEW SECTION ================== */
.wns2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1200px 500px at 20% 10%,
      rgba(0, 140, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 30%,
      rgb(0 255 226 / 36%),
      transparent 60%
    ),
    linear-gradient(180deg, #021a2d 0%, #041b33 40%, #041529 100%);
}

.wns2-title {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  color: #fff;
}

.wns2-swiper {
  margin-top: 10px;
}
.wns2-swiper .swiper-slide {
  height: auto;
}

.wns2-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wns2-media {
  overflow: hidden;
  height: clamp(210px, 18vw, 300px);
  background: rgba(255, 255, 255, 0.06);
}

.wns2-media video,
.wns2-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wns2-body {
  padding: 18px;
}

.wns2-h {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1.15;
  letter-spacing: 0.2px;
  color: #fff;
}

.wns2-p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
}

.wns2-swiper {
  padding-bottom: 6px;
}

@media (max-width: 575px) {
    .wns2 {
        padding: 60px 25px !important;
    }
}
