/* Comman CSS start */
.section-padding {
  padding: 35px 0;
}

.text-primary {
  color: var(--primary-color) !important;
}

.heading {
  color: var(--color-black);
}

.heading-light {
  color: #fff;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.page-banner-content .heading {
  color: #ffffff !important;
}

.section-margin-bottom {
  margin-bottom: 60px !important;
}

.section-margin-top {
  margin-top: 60px !important;
}

.high-light-text {
  color: var(--primary-color) !important;
}

.black-color-text {
  color: var(--color-black);
}

/* Comman CSS End */

/* preloder  */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.loader-logo {
  position: relative;
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo img {
  width: 100%;
  opacity: 0;
  transform: scale(0.85);
  animation: logoAppear 1s ease forwards 0.5s;
}

.shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shine:before {
  content: "";
  position: absolute;
  left: -40%;
  top: -20%;
  width: 30%;
  height: 160%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.8),
      transparent);
  transform: skewX(-25deg);
  animation: shine 2.2s infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shine {
  0% {
    left: -50%;
  }

  100% {
    left: 150%;
  }
}

/* Mega product menu */
.theme-drawer[data-position="right"] {
  display: flex;
  flex-direction: column;
  height: 100dvh;
}

.theme-drawer[data-position="right"] .drawer-content {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 40px;
}

.drawer-content [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.header-menu .menu-link.active,
.drawer-menu .menu-link.active,
.header-menu .menu-link.active .heading,
.drawer-menu .menu-link.active .heading {
  color: #2b3594 !important;
}

.header-menu .menu-link-main.active,
.drawer-menu .menu-link-main.active,
.header-menu .mega-parent-link.active {
  font-weight: 700 !important;
}

.header-submenu .menu-link.active {
  font-weight: 700 !important;
}

.header-submenu .menu-link.active {
  /* background-color: #eaeaea !important; */
  border-radius: 6px;
  display: inline-block;
}

.header-submenu .menu-link.active:not(.mega-parent-link) {
  padding: 6px 14px !important;
}

.product-megamenu {
  --mega-ink: #1c2539;
  --mega-blue: #2b3594;
  --mega-muted: #667085;
  --mega-border: rgba(28, 37, 57, 0.1);
  --mega-soft: rgba(43, 53, 148, 0.08);
  overflow: hidden;
}

.product-megamenu__inner {
  position: relative;
  min-height: 480px;
  padding: 22px;
  background: #ffffff;
}

.product-megamenu__nav {
  width: calc(54% - 16px);
  max-height: 436px;
  overflow: auto;
  padding-right: 14px;
  padding-bottom: 14px;
}

.product-megamenu__nav::-webkit-scrollbar,
.product-megamenu__children::-webkit-scrollbar {
  width: 5px;
}

.product-megamenu__nav::-webkit-scrollbar-thumb,
.product-megamenu__children::-webkit-scrollbar-thumb {
  background: rgba(28, 37, 57, 0.18);
  border-radius: 999px;
}

.product-megamenu__group {
  position: static;
  padding: 14px 0;
  border-bottom: 1px solid var(--mega-border);
}

.product-megamenu__group:first-child {
  padding-top: 0;
}

.product-megamenu__group:last-child {
  border-bottom: 0;
  padding-bottom: 14px;
}

.product-megamenu__group-head {
  position: static;
}

.product-megamenu .mega-parent-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 10px 14px !important;
  color: var(--mega-ink) !important;
  background: transparent !important;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700 !important;
  letter-spacing: 0;
  text-transform: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.product-megamenu .mega-parent-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-megamenu .mega-parent-link svg {
  flex: 0 0 auto;
  transform: translateX(0) !important;
  color: var(--mega-blue);
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.product-megamenu__group:hover .mega-parent-link svg,
.product-megamenu .mega-parent-link:hover svg {
  transform: translateX(4px) !important;
}

.product-megamenu__group:hover .mega-parent-link,
.product-megamenu .mega-parent-link:hover,
.product-megamenu .mega-parent-link.active {
  color: var(--mega-blue) !important;
  background: var(--mega-soft) !important;
  border-color: rgba(43, 53, 148, 0.16);
}

.product-megamenu__children {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  padding-left: 12px !important;
}

.product-megamenu__children .nav-item {
  position: static;
  padding: 0 !important;
}

.product-megamenu__children .menu-link,
.product-megamenu__children .menu-link.active {
  display: flex !important;
  align-items: center;
  justify-content: flex-start !important;
  text-align: left !important;
  width: 100%;
  min-height: 30px;
  padding: 8px 12px !important;
  border: 0;
  border-radius: 7px;
  background: transparent !important;
  color: var(--mega-muted) !important;
  font-size: 14px;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.product-megamenu__children .menu-link:hover,
.product-megamenu__children .menu-link.active {
  color: var(--mega-blue) !important;
  background: rgba(43, 53, 148, 0.06) !important;
}

.product-megamenu__children .heading {
  font-size: inherit !important;
  line-height: inherit;
  font-weight: 500 !important;
}

.product-megamenu__preview {
  position: absolute;
  top: 22px;
  right: 22px;
  bottom: 22px;
  width: calc(46% - 16px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 2;
}

.product-megamenu__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  background: #f5f6f8;
}

.product-megamenu__group:first-child .product-megamenu__group-head>.product-megamenu__preview,
.product-megamenu__preview.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-megamenu__nav:hover .product-megamenu__group:first-child .product-megamenu__group-head>.product-megamenu__preview,
.product-megamenu__nav:hover .product-megamenu__preview.is-active {
  opacity: 0;
  visibility: hidden;
}

.product-megamenu__group:hover .product-megamenu__group-head>.product-megamenu__preview,
.product-megamenu__children .nav-item:hover>.product-megamenu__preview {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  z-index: 3;
}

.product-megamenu__group:has(.product-megamenu__children .nav-item:hover) .product-megamenu__group-head>.product-megamenu__preview {
  opacity: 0 !important;
  visibility: hidden !important;
}

@media (min-width: 992px) {
  .theme-drawer[data-position="right"] {
    max-width: 420px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header-menu .nav-item-static {
    position: static;
  }

  .product-megamenu.header-submenu {
    position: fixed;
    top: calc(var(--top, 30px) + 82px);
    left: 50%;
    right: auto;
    width: min(1120px, calc(100vw - 32px));
    min-width: 900px;
    max-width: calc(100vw - 32px);
    transform: translateX(-50%);
    border: 1px solid rgba(28, 37, 57, 0.08);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(17, 26, 43, 0.2);
  }

  .scrollable-mega-menu {
    height: min(72vh, 720px);
  }

  .product-megamenu__inner {
    height: 100%;
  }

  .product-megamenu__nav {
    height: 100%;
    max-height: 100%;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .product-megamenu.header-submenu {
    min-width: 0;
    width: calc(100vw - 32px);
  }

  .product-megamenu__children {
    grid-template-columns: 1fr;
  }

  .product-megamenu__preview img {
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .product-megamenu {
    width: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .product-megamenu__inner {
    min-height: 0;
    padding: 6px 0 12px;
    background: transparent;
  }

  .product-megamenu__inner::before,
  .product-megamenu__preview {
    display: none;
  }

  .product-megamenu__nav {
    width: 100%;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .product-megamenu__group {
    padding: 10px 0;
  }

  .product-megamenu__children {
    grid-template-columns: 1fr;
    padding-left: 10px !important;
  }

  .product-megamenu .mega-parent-link {
    font-size: 15px;
    min-height: 40px;
    padding: 8px 10px !important;
  }

  .product-megamenu__children {
    max-height: none;
    gap: 4px;
  }

  .product-megamenu__children .menu-link {
    min-height: 30px;
    padding: 6px 10px !important;
    font-size: 13px;
  }
}

.overlay-custom:after {
  background: linear-gradient(90deg,
      rgba(28, 56, 121, 0.95) 0%,
      rgba(28, 56, 121, 0.6) 45%,
      rgba(28, 56, 121, 0) 100%);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.glassmorphism-panel {
  background: rgba(28, 56, 121, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.glassmorphism-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  transform: skewX(-20deg);
  animation: shine 6s infinite;
}

.badge-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px 15px;
  border-radius: 16px;
  background: rgba(28, 56, 121, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.badge-item:hover {
  background: rgba(28, 56, 121, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(234, 227, 210, 0.4);
}

.banner-wrapper-100vh {
  height: auto !important;
  min-height: 100vh;
  padding: 100px 0 60px;
}

.content-absolute {
  position: relative !important;
  height: auto !important;
}

.hero-subtitle-line {
  width: clamp(25px, 4vw, 40px);
  height: 2px;
  background-color: var(--light-color);
}

.hero-subtitle-text {
  color: var(--light-color);
  letter-spacing: 0;
}

/* About Us Home Section */
.about-feature-icon {
  background-color: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.about-feature-title {
  color: #2d3748;
}

.about-text-content {
  color: #4a5568;
  line-height: 1.7;
}

.about-badge-text {
  color: var(--color-black);
  opacity: 0.7;
}

.about-highlight {
  color: var(--primary-color);
}

/* Optimized Premium Expertise Card */
.premium-expertise-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none !important;
}

.premium-expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.premium-expertise-card .media-wrapper {
  height: 240px;
  overflow: hidden;
}

.premium-expertise-card .media-wrapper img {
  transition: transform 0.5s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.premium-expertise-card:hover .media-wrapper img {
  transform: scale(1.05);
}

/* Category Card Styles */
.page-projects .card-project {
  position: relative;
  overflow: hidden;
  display: block;
}

.page-projects .card-project::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.9) 0%,
      rgba(15, 23, 42, 0.4) 50%,
      rgba(15, 23, 42, 0) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.page-projects .card-project:hover::before {
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.95) 0%,
      rgba(15, 23, 42, 0.6) 50%,
      rgba(15, 23, 42, 0) 100%);
}

.page-projects .card-project::after {
  display: none !important;
}

.page-projects .card-project .card-project-content-absolute {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.page-projects .card-project .card-project-content {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  margin: 0;
}

.page-projects .card-project .heading {
  color: #fff !important;
  font-size: 24px;
  font-weight: 700;
  text-shadow:
    0 4px 15px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.7);
}

.page-projects .card-project .icon-project-link {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: transform 0.3s ease;
}

.page-projects .card-project:hover .icon-project-link {
  transform: scale(1.1) !important;
}

.page-projects .card-project img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-projects .card-project:hover img {
  transform: scale(1.05);
}

@media (min-width: 1920px) {
  .banner-wrapper-100vh {
    min-height: 75vh !important;
  }

  .banner-wrapper-100vh .container {
    max-width: 1600px;
  }
}

@media (max-width: 1199px) {
  .text-80 {
    font-size: 52px !important;
  }

  .badge-value {
    font-size: 30px !important;
  }
}

@media (max-width: 991px) {
  .glassmorphism-panel {
    padding: 20px;
    margin-top: 30px;
  }

  .overlay-custom:after {
    background: linear-gradient(180deg,
        rgba(28, 56, 121, 0.9) 0%,
        rgba(28, 56, 121, 0.7) 100%);
  }

  .banner-wrapper-100vh {
    height: auto !important;
    min-height: 100vh;
    padding: 100px 0 40px;
  }

  .content-absolute {
    position: relative !important;
    height: auto !important;
  }

  .text-80 {
    font-size: 42px !important;
    line-height: 1.2;
  }

  .text-20 {
    font-size: 16px !important;
  }

  .badge-item {
    padding: 15px 10px;
  }

  .badge-value {
    font-size: 28px !important;
  }
}

@media (max-width: 575px) {
  .banner-wrapper-100vh {
    padding: 80px 0 30px;
  }

  .text-80 {
    font-size: 32px !important;
    margin-bottom: 20px !important;
  }

  .text-20 {
    font-size: 15px !important;
    line-height: 1.5;
  }

  .badge-value {
    font-size: 24px !important;
  }

  .buttons {
    gap: 15px !important;
    margin-top: 20px;
  }

  .glassmorphism-panel {
    margin-top: 20px;
    padding: 15px;
  }

  .badge-item {
    padding: 15px 5px;
  }

  .badge-label {
    font-size: 12px !important;
  }
}

/* Premium video hero */
.home-video-hero {
  min-height: 94vh;
  background: var(--primary-color);
  isolation: isolate;
  overflow: hidden;
}

.home-video-hero__wrapper {
  min-height: 94vh !important;
  height: auto !important;
  padding: 120px 0 72px;
  position: relative;
  display: flex;
  align-items: center;
}

.home-video-hero__media {
  z-index: 0;
  background: var(--primary-color);
}

.home-video-hero__media::before,
.home-video-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-video-hero__media::before {
  z-index: 1;
  background:
    radial-gradient(circle at 76% 42%,
      rgba(234, 227, 210, 0.08) 0%,
      rgba(234, 227, 210, 0) 28%),
    linear-gradient(90deg,
      rgba(28, 56, 121, 0.88) 0%,
      rgba(28, 56, 121, 0.7) 36%,
      rgba(28, 56, 121, 0.18) 66%,
      rgba(28, 56, 121, 0.04) 100%);
}

.home-video-hero__media::after {
  z-index: 2;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.02) 42%,
      rgba(0, 0, 0, 0.38) 100%);
}

.home-video-hero__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(1.18) contrast(1.08) brightness(1.06);
}

.home-video-hero__content {
  position: relative !important;
  z-index: 3 !important;
  height: auto !important;
  min-height: calc(94vh - 192px);
  display: flex;
  align-items: center;
}

.home-video-hero__copy {
  width: 100%;
  max-width: 760px;
  padding: 0 !important;
  position: relative;
}

.home-video-hero__copy::before {
  content: "";
  position: absolute;
  inset: -34px -48px -34px -38px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(90deg,
      rgba(10, 25, 60, 0.28),
      rgba(10, 25, 60, 0));
  pointer-events: none;
}

.home-video-hero__title {
  max-width: 760px;
  line-height: 1.04;
  text-wrap: balance;
  color: var(--white-color) !important;
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.42),
    0 18px 45px rgba(0, 0, 0, 0.28);
}

.home-video-hero__text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.home-video-hero__panel {
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(28, 56, 121, 0.82), rgba(28, 56, 121, 0.42)),
    rgba(10, 25, 60, 0.68);
  border: 1px solid rgba(234, 227, 210, 0.26);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-video-hero__panel::before {
  display: none;
}

.home-video-hero__panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(234, 227, 210, 0.26);
}

.home-video-hero__panel-head span {
  color: rgba(234, 227, 210, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-video-hero__panel-head strong {
  color: var(--extra-light-color);
  font-family: var(--font-heading--family);
  font-size: 22px;
  line-height: 1.1;
}

.home-video-hero__stat {
  min-height: 86px;
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(249, 245, 235, 0.08);
  border: 1px solid rgba(234, 227, 210, 0.18);
  box-shadow: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.home-video-hero__stat::before {
  content: "";
  width: 4px;
  align-self: stretch;
  border-radius: 999px;
  background: var(--light-color);
  flex: 0 0 auto;
}

.home-video-hero__stat:hover {
  background: rgba(249, 245, 235, 0.13);
  border-color: rgba(234, 227, 210, 0.38);
  transform: translateX(4px);
}

.home-video-hero__stat-value {
  color: var(--extra-light-color) !important;
  min-width: 92px;
  margin: 0;
  font-size: 42px !important;
  line-height: 1;
}

.home-video-hero__stat-label {
  color: rgba(249, 245, 235, 0.82) !important;
  letter-spacing: 0;
  line-height: 1.35;
  font-weight: 600;
  margin: 0;
}

.home-video-hero .button--secondary {
  color: var(--primary-color);
  background: var(--extra-light-color);
  border-color: var(--extra-light-color);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.home-video-hero .button--secondary:hover {
  color: var(--primary-color);
  background: var(--light-color);
  border-color: var(--light-color);
}

.home-video-hero .hero-subtitle-line {
  background: var(--light-color);
}

.home-video-hero .hero-subtitle-text {
  color: var(--light-color);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

@media (min-width: 1400px) {
  .home-video-hero__wrapper {
    min-height: 820px !important;
  }
}

@media (max-width: 991px) {
  .home-video-hero__wrapper {
    padding: 110px 0 56px;
    align-items: flex-start;
  }

  .home-video-hero__media::before {
    background: linear-gradient(180deg,
        rgba(28, 56, 121, 0.78) 0%,
        rgba(28, 56, 121, 0.7) 48%,
        rgba(28, 56, 121, 0.56) 100%);
  }

  .home-video-hero__content {
    min-height: auto;
  }

  .home-video-hero__copy {
    max-width: 100%;
  }

  .home-video-hero__title {
    line-height: 1.12;
  }

  .home-video-hero__panel {
    margin-top: 10px !important;
  }

  .home-video-hero__copy::before {
    inset: -18px -18px -20px;
    background: rgba(10, 25, 60, 0.2);
  }
}

@media (max-width: 575px) {
  .home-video-hero__wrapper {
    min-height: auto !important;
    padding: 96px 0 44px;
  }

  .home-video-hero__title {
    font-size: 40px;
  }

  .home-video-hero__text {
    font-size: 16px !important;
    line-height: 1.65;
  }

  .home-video-hero__panel {
    padding: 18px;
  }

  .home-video-hero__panel-head {
    display: block;
  }

  .home-video-hero__panel-head strong {
    display: block;
    margin-top: 4px;
  }

  .home-video-hero__stat {
    min-height: 78px;
    padding: 15px 14px;
    gap: 14px;
  }

  .home-video-hero__stat-value {
    min-width: 74px;
    font-size: 34px !important;
  }
}

/* Compact metrics strip */
.home-metrics-strip {
  background: var(--extra-light-color);
  padding: 24px 0;
  /* border-bottom: 1px solid rgba(28, 56, 121, 0.1); */
}

.home-metrics-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.home-metrics-strip__item {
  min-height: 112px;
  border-radius: 8px;
  padding: 22px 18px;
  background: var(--white-color);
  border: 1px solid rgba(28, 56, 121, 0.1);
  box-shadow: 0 12px 34px rgba(28, 56, 121, 0.08);
  position: relative;
  overflow: hidden;
}

.home-metrics-strip__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--primary-color);
}

.home-metrics-strip__value {
  color: var(--primary-color);
  font-family: var(--font-heading--family);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.home-metrics-strip__label {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .home-metrics-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .home-metrics-strip {
    padding: 18px 0;
  }

  .home-metrics-strip__grid {
    gap: 10px;
  }

  .home-metrics-strip__item {
    min-height: 96px;
    padding: 18px 14px 18px 16px;
  }

  .home-metrics-strip__value {
    font-size: 30px;
  }

  .home-metrics-strip__label {
    font-size: 12px;
  }
}

/* Hero responsive refinements */
.home-video-hero {
  min-height: clamp(640px, 94vh, 860px);
}

.home-video-hero__wrapper {
  min-height: clamp(640px, 94vh, 860px) !important;
  padding: clamp(118px, 13vh, 150px) 0 clamp(60px, 8vh, 90px);
}

.home-video-hero__content {
  min-height: auto;
  width: 100%;
}

.home-video-hero__title {
  font-size: clamp(48px, 5vw, 74px);
  max-width: 820px;
}

.home-video-hero__text {
  font-size: clamp(17px, 1.35vw, 22px) !important;
  max-width: 720px;
}

.home-video-hero .buttons {
  row-gap: 14px !important;
}

.home-video-hero .button {
  white-space: nowrap;
}

@media (min-width: 1600px) {
  .home-video-hero__copy {
    max-width: 820px;
  }

  .home-video-hero__video {
    object-position: center 42%;
  }
}

@media (max-width: 1199px) {
  .home-video-hero {
    min-height: 760px;
  }

  .home-video-hero__wrapper {
    min-height: 760px !important;
    padding-top: 122px;
    padding-bottom: 66px;
  }

  .home-video-hero__copy {
    max-width: 720px;
  }

  .home-video-hero__title {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .home-video-hero {
    min-height: 700px;
  }

  .home-video-hero__wrapper {
    min-height: 700px !important;
    padding-top: 118px;
    padding-bottom: 58px;
    align-items: center;
  }

  .home-video-hero__video {
    object-position: 58% center;
  }

  .home-video-hero__media::before {
    background: linear-gradient(90deg,
        rgba(28, 56, 121, 0.9) 0%,
        rgba(28, 56, 121, 0.72) 54%,
        rgba(28, 56, 121, 0.34) 100%);
  }

  .home-video-hero__copy {
    max-width: 680px;
  }

  .home-video-hero__title {
    font-size: 50px;
    line-height: 1.08;
  }

  .home-video-hero__text {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .home-video-hero {
    min-height: 680px;
  }

  .home-video-hero__wrapper {
    min-height: 680px !important;
    padding-top: 104px;
    padding-bottom: 46px;
  }

  .home-video-hero__video {
    object-position: 64% center;
  }

  .home-video-hero__media::before {
    background: linear-gradient(180deg,
        rgba(28, 56, 121, 0.82) 0%,
        rgba(28, 56, 121, 0.72) 56%,
        rgba(28, 56, 121, 0.62) 100%);
  }

  .home-video-hero__copy::before {
    inset: -18px -14px;
    background: rgba(10, 25, 60, 0.18);
  }

  .home-video-hero__title {
    font-size: 44px;
    line-height: 1.1;
  }

  .home-video-hero__text {
    font-size: 16px !important;
    line-height: 1.62;
  }

  .home-video-hero .buttons {
    gap: 12px !important;
  }
}

@media (max-width: 575px) {
  .home-video-hero {
    min-height: 640px;
  }

  .home-video-hero__wrapper {
    min-height: 640px !important;
    padding-top: 96px;
    padding-bottom: 38px;
  }

  .home-video-hero__title {
    font-size: 38px;
  }

  .home-video-hero__text {
    font-size: 15px !important;
  }

  .home-video-hero .button {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 380px) {
  .home-video-hero__title {
    font-size: 34px;
  }

  .home-video-hero__text {
    font-size: 14px !important;
  }
}

/* Breadcrumb CSS start */
.breadcrumb a:not(.active),
.breadcrumb a.text-white:not(.active) {
  color: rgba(255, 255, 255, 0.75) !important;
  opacity: 1 !important;
  position: relative;
  text-decoration: none !important;
  transition: color 0.25s ease;
}

.breadcrumb a:not(.active)::after,
.breadcrumb a.text-white:not(.active)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.25s ease-out;
}

.breadcrumb a:not(.active):hover,
.breadcrumb a.text-white:not(.active):hover {
  color: #ffffff !important;
}

.breadcrumb a:not(.active):hover::after,
.breadcrumb a.text-white:not(.active):hover::after {
  transform: scaleX(1);
}

.breadcrumb a.active,
.breadcrumb a.text-white.active {
  color: var(--light-color) !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

/* Header css start */
.drawer-block-contact {
  -webkit-margin-before: unset;
  margin-block-start: unset;
}

.drawer-additional .drawer-content .drawer-heading {
  margin-block-start: 5px;
}

/* Footer css start */
footer {
  position: relative;
  z-index: 5;
}

.footer-main {
  background-color: var(--color-foreground);
  overflow: visible;
  position: relative;
  z-index: 2;
  isolation: isolate;
  margin-top: 70px;
  /* padding-top: 45px; */
}

.footer-top {
  position: relative;
  z-index: 3;
  padding: 0 0 50px;
}

.footer-brand-panel {
  padding: 35px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 4;
  transform: translateY(-50%);
  margin-bottom: -80px;
}

.footer-brand-logo {
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-brand-logo img {
  display: block;
  width: 100%;
  max-width: 270px;
  height: auto;
}

.footer-brand-logo a {
  display: inline-flex;
}

.footer-brand-badge {
  margin: 14px 0px 14px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--color-black);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer-brand-badge--icons {
  margin-top: 18px;
}

.footer-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.footer-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  background: rgba(43, 53, 147, 0.1);
  color: var(--secondary-color);
}

.footer-badge-icon svg {
  display: block;
}

.footer-brand-copy {
  margin-inline-start: auto;
  margin-right: 30px;
}

.footer-brand-text {
  margin-block-end: 18px;
  color: var(--color-black);
}

.footer-catalog-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand-social {
  margin-block: 0;
}

.footer-logo {
  max-width: unset;
}

.footer-menu .link {
  color: var(--color-black);
}

.footer-description {
  color: var(--color-black);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-block-start: 24px;
  margin-block-end: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.footer-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.12);
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 20px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(66 85 162 / 18%);
  color: var(--color-black);
}

.footer-contact-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
}

.footer-contact-value {
  color: var(--color-black);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.footer-contact-value:focus,
.footer-contact-value:hover {
  color: var(--color-black);
  opacity: 0.78;
}

.footer-contact-text {
  cursor: default;
}

.footer-social-link {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-widget .widget-heading {
  color: var(--color-black);
}

.footer-copyright p a {
  color: var(--color-white);
  font-weight: 800;
  text-decoration: none;
}

.scroll-to-top,
.csr .our-services {
  background-color: var(--primary-color);
}

.separetor:after {
  background: rgba(43, 53, 147, 1);
}

/* ===== Mobile responsive (767px and below) ===== */
@media (max-width: 767px) {
  .footer-main {
    margin-top: 80px;
    padding-top: 40px;
  }

  .footer-brand-panel {
    padding: 20px 16px;
    border-radius: 14px;
    transform: translateY(-25%);
    margin-bottom: -30px;
  }

  .footer-brand-panel .row {
    flex-direction: column;
    align-items: center;
  }

  .footer-brand-panel .col-md-4,
  .footer-brand-panel .col-md-8,
  .footer-brand-panel .col-12 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .footer-brand-panel .col-md-4 {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
  }

  .footer-brand-logo {
    max-width: 170px;
    margin-inline: auto;
  }

  .footer-brand-logo img {
    max-width: 170px;
  }

  .footer-brand-copy {
    text-align: center;
    margin-right: 0;
  }

  .footer-brand-text {
    margin-block-end: 12px;
    font-size: 14px;
  }

  .footer-brand-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-brand-actions .button {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    text-align: center;
  }

  .footer-brand-social {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-widget {
    margin-top: 30px;
  }

  .footer-top>.container>.row>div:first-child .footer-widget {
    margin-top: 0;
  }

  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-policies {
    justify-content: center;
  }

  .footer-copyright {
    margin-bottom: 0;
  }

  .footer-contact-item {
    padding: 12px 10px;
    border-radius: 20px;
  }
}

/* ===== Small mobile (480px and below) ===== */
@media (max-width: 480px) {
  .footer-main {
    margin-top: 60px;
    padding-top: 30px;
  }

  .footer-brand-panel {
    padding: 16px 14px;
    border-radius: 12px;
    transform: translateY(-20%);
    margin-bottom: -20px;
  }

  .footer-brand-logo {
    max-width: 150px;
  }

  .footer-brand-logo img {
    max-width: 150px;
  }

  .footer-brand-text {
    font-size: 13px;
    margin-block-end: 10px;
  }

  .footer-brand-actions .button {
    max-width: 100%;
    font-size: 13px;
    padding: 10px 16px;
  }

  .footer-contact-item {
    padding: 10px 8px;
    border-radius: 16px;
    gap: 8px;
  }

  .footer-contact-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .footer-contact-label {
    font-size: 11px;
  }

  .footer-contact-value {
    font-size: 13px;
  }
}

/* ===== Tablet responsive (768px - 991px) ===== */
@media (max-width: 991px) {
  .footer-main {
    margin-top: 60px;
    padding-top: 60px;
  }

  .footer-brand-panel {
    padding: 24px;
    border-radius: 16px;
    transform: translateY(-35%);
    margin-bottom: -40px;
  }

  .footer-brand-panel .row {
    flex-direction: column;
    align-items: center;
  }

  .footer-brand-panel .col-md-4,
  .footer-brand-panel .col-md-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .footer-brand-panel .col-md-4 {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }

  .footer-brand-logo {
    max-width: 200px;
    margin-inline: auto;
    margin-block-end: 0;
  }

  .footer-brand-badge {
    margin-top: 12px;
    gap: 12px;
    justify-content: center;
  }

  .footer-brand-copy {
    margin-inline-start: 0;
    margin-right: 0;
    text-align: center;
  }

  .footer-brand-actions {
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-brand-social {
    justify-content: center;
  }

  .footer-top {
    padding-bottom: 32px;
  }

  .footer-bottom-row {
    text-align: center;
  }

  .footer-policies {
    justify-content: center;
  }
}

.featured-blog {
  position: relative;
}

.footer-policies {
  gap: 12px 20px;
}

/* Breadcrumb Css */
.page-banner {
  --height: 386px !important;
  max-height: 386px !important;
  --color-overlay: linear-gradient(180deg,
      rgba(28, 56, 121, 0.55) 0%,
      var(--primary-color) 100%);
}

/* Index Page CSS */
.home-page .list-block {
  gap: 60px;
}

/* Home counter layout */
.about-us-video .counter-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: nowrap;
}

.about-us-video .counter-item .promotion-text {
  margin-block-start: 0;
  white-space: nowrap;
}

/* Contact Us Css */
.contact .field-bot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact .section-contact-form .contact-form-wrap {
  background-color: var(--primary-color) !important;
}

.contact .contact-2 .contact-info-list .svg-wrapper {
  background-color: var(--primary-color) !important;
}

.error {
  font-size: 17px;
  color: rgb(241, 49, 49) !important;
}

.contact .button--secondary:focus,
.contact .button--secondary:hover {
  color: var(--primary-color) !important;
  background-color: var(--light-color) !important;
}

/* Privacy Policy Css & Terms of Service Css */
.privacy ul li {
  color: #111;
}

.privacy p,
.terms p {
  margin-left: 1.5rem !important;
}

.privacy a,
.terms a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--gt-header);
  transition: all 0.4s ease-in-out;
}

.privacy a:hover,
.terms a:hover {
  text-decoration: underline;
}

.privacy .blog-description,
.terms .blog-description {
  gap: 10px !important;
}

/* industries we serve page */
.industries .industry-card-icon {
  border-right: white solid 2px;
  padding-right: 10px !important;
}

.industries .industry-card-icon-reverse {
  border-right: var(--primary-color) solid 2px;
  padding-right: 10px !important;
}

.industries .why-row {
  margin-bottom: 70px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.industries .why-image,
.industries .why-content {
  height: 100%;
}

.industries .why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industries .why-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  padding-bottom: unset;
  /* justify-content: center; */
}

.industries .blue-card {
  background: var(--primary-color);
  color: #fff;
}

.industries .blue-card h2,
.industries .blue-card p,
.industries .blue-card li {
  color: #fff;
}

.industries .white-card {
  background: #fff;
  color: #222;
}

.industries .white-card h2,
.global-presence .text-color {
  color: var(--primary-color);
}

.industries .why-content ul {
  margin-top: 35px;
  padding: 0;
  list-style: none;
}

.industries .why-content li {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.industries .why-content li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.industries .white-card li::before {
  background: var(--primary-color);
  color: #fff;
}

@media (min-width: 1366px) {
  .header-2 .header-grid {
    -ms-grid-columns: 260px 1fr 260px;
    grid-template-columns: 233px 1fr 256px;
    border: var(--style-border-width) solid var(--color-border);
  }

  .header-logo {
    max-width: 260px;
  }
}

/* Product Page CSS */
.product-grid .card-blog-bottom {
  height: auto;
}

.product-grid .card-blog-bottom .media {
  position: relative;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid var(--light-color);
}

.product-grid .product-img-cover {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pagination-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination-ellipsis {
  pointer-events: none;
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 5px;
}

.sidebar-category-item .sub-categories-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.4s ease-in-out,
    margin-top 0.4s ease-in-out;
  margin-top: 0;
}

.sidebar-category-item.open .sub-categories-wrapper {
  grid-template-rows: 1fr;
  margin-top: 10px;
}

.sidebar-category-item .sub-categories-wrapper>ul {
  overflow: hidden;
  padding-left: 15px;
  border-left: 2px solid transparent;
  opacity: 0;
  transition:
    opacity 0.3s ease-in-out,
    border-color 0.4s ease;
  margin-bottom: 0;
}

.sidebar-category-item.open .sub-categories-wrapper>ul {
  opacity: 1;
  border-left-color: rgba(0, 0, 0, 0.1);
}

.sidebar-category-item.open>a>.toggle-icon>svg,
.sidebar-category-item.open>a>svg {
  transform: rotate(90deg);
}

.sidebar-category-item>a>svg,
.sidebar-category-item>a>.toggle-icon>svg {
  transition: transform 0.3s ease;
}

.toggle-icon {
  padding: 10px;
  margin: -10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.sidebar-child-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
}

.drawer-blog-sidebar .sidebar-widget {
  --color-background: var(--extra-light-color);
  --color-foreground-heading: var(--primary-color);
  border: 1px solid var(--light-color);
}

.drawer-blog-sidebar .sidebar-widget .subheading-bg {
  --color-foreground-subheading: var(--color-black);
  --color-background-subheading: var(--white-color);
  --color-border-subheading-bg: var(--white-color);
}

.drawer-blog-sidebar .sidebar-widget .subheading-bg.active,
.drawer-blog-sidebar .sidebar-widget .subheading-bg:focus,
.drawer-blog-sidebar .sidebar-widget .subheading-bg:hover {
  --color-foreground-subheading: var(--light-color);
  --color-background-subheading: var(--primary-color);
  --color-border-subheading-bg: var(--primary-color);
}

.drawer-blog-sidebar .sidebar-category-item.open .sub-categories-wrapper>ul,
.drawer-blog-sidebar .sidebar-category-item:hover .sub-categories-wrapper>ul {
  border-left-color: var(--light-color);
}

.product-title {
  padding-top: 15px;
  padding-bottom: 15px;
}

.product-grid .card-blog {
  --color-primary-button-hover-text: var(--light-color);
  --color-primary-button-hover-background: var(--primary-color);
  --color-primary-button-hover-border: var(--primary-color);
  --color-primary-button-hover-icon: var(--primary-color);
  --color-primary-button-hover-icon-background: var(--light-color);
  background-color: var(--white-color);
  border: 1px solid var(--light-color);
  box-shadow: 0 2px 12px rgba(28, 56, 121, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-grid .card-blog:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 56, 121, 0.12);
}

.product-megamenu__children {
  border-left: 2px solid var(--light-color);
  padding-left: 15px;
  margin-left: 15px;
}

.product-megamenu__children .nav-item .menu-link .heading::before {
  content: "- ";
}

.product-category-img {
  width: 1000px;
  height: 707px;
  max-width: 100%;
}

@media (min-width: 992px) {
  .sidebar-category-item:hover .sub-categories-wrapper {
    grid-template-rows: 1fr;
    margin-top: 10px;
  }

  .sidebar-category-item:hover .sub-categories-wrapper>ul {
    opacity: 1;
    border-left-color: rgba(0, 0, 0, 0.1);
  }

  .sidebar-category-item:hover>a>svg,
  .sidebar-category-item:hover>a>.toggle-icon>svg {
    transform: rotate(90deg);
  }
}

@media (max-width: 991px) {
  .sidebar-filter {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    background-color: transparent !important;
    z-index: 1 !important;
  }
}

/* Product details CSS */
.category-detail__hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.category-detail__hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.category-detail__body {
  padding: 32px 0 0;
}

.category-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-color);
  border: 1px solid var(--light-color);
  color: var(--color-black);
  font-family: var(--font-heading--family);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.category-detail__badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary-color);
}

/* === Title === */
.category-detail__title {
  font-family: var(--font-heading--family);
  font-size: var(--font-h2--size);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

.category-detail__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--light-color);
  border-radius: 2px;
}

.category-detail__details {
  background: linear-gradient(135deg, var(--primary-color) 0%, #263f80 100%);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.category-detail__details::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.category-detail__details::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 40%;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.category-detail__details p {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body--family);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.category-detail__details p:not(:last-child) {
  margin-bottom: 16px;
}

.category-detail__content {
  padding: 0;
}

.category-detail__content>p,
.category-detail__content p {
  font-family: var(--font-body--family);
  font-size: 15.5px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 20px;
}

.category-detail__content h2,
.category-detail__content h3,
.category-detail__content h4,
.category-detail__content h5 {
  font-family: var(--font-heading--family);
  font-weight: 700;
  color: var(--color-black);
  margin-top: 36px;
  margin-bottom: 20px;
  padding-left: 16px;
  position: relative;
}

.category-detail__content h2::before,
.category-detail__content h3::before,
.category-detail__content h4::before,
.category-detail__content h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  min-height: 22px;
  background: var(--primary-color);
  border-radius: 2px;
}

.category-detail__content h2 {
  font-size: 28px;
}

.category-detail__content h3 {
  font-size: 24px;
}

.category-detail__content h4 {
  font-size: 22px;
}

.category-detail__content h5 {
  font-size: 18px;
}

.category-detail__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.category-detail__content ul li {
  font-family: var(--font-body--family);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  padding: 14px 18px 14px 48px;
  position: relative;
  background: var(--white-color);
  border: 1px solid var(--light-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.category-detail__content ul li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.category-detail__content ul li::after {
  content: "->";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.category-detail__content ul li:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.category-detail__empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--extra-light-color);
  border-radius: 14px;
  border: 2px dashed var(--light-color);
}

.category-detail__empty p {
  color: #666;
  font-size: 16px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .category-detail__title {
    font-size: var(--font-h3--size);
  }

  .category-detail__details {
    padding: 24px;
  }

  .category-detail__content h2,
  .category-detail__content h3,
  .category-detail__content h4,
  .category-detail__content h5 {
    margin-top: 28px;
  }

  .category-detail__content h2 {
    font-size: 24px;
  }

  .category-detail__content h3 {
    font-size: 22px;
  }

  .category-detail__content h4 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .category-detail__hero {
    border-radius: 12px;
  }

  .category-detail__body {
    padding: 24px 0 0;
  }

  .category-detail__title {
    font-size: var(--font-h4--size);
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .category-detail__title::after {
    width: 60px;
    height: 3px;
  }

  .category-detail__details {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 28px;
  }

  .category-detail__details p {
    font-size: 14.5px;
    line-height: 1.75;
  }

  .category-detail__content h2,
  .category-detail__content h3,
  .category-detail__content h4,
  .category-detail__content h5 {
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .category-detail__content h2 {
    font-size: 22px;
  }

  .category-detail__content h3 {
    font-size: 20px;
  }

  .category-detail__content h4 {
    font-size: 18px;
  }

  .category-detail__content ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .category-detail__content ul li {
    font-size: 14px;
    padding: 10px 14px 10px 40px;
  }

  .category-detail__content ul li::before,
  .category-detail__content ul li::after {
    left: 12px;
    width: 18px;
    height: 18px;
  }

  .category-detail__content ul li::after {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .category-detail__badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .category-detail__title {
    font-size: 22px;
  }

  .category-detail__details {
    padding: 18px 16px;
  }
}

/* manufacturing process page */
.manufacturing .service-slider .card-service img {
  height: unset;
}

.manufacturing .card-service-content {
  padding: 16px 15px;
}

.manufacturing .slider-with-thumb {
  position: relative;
  margin: 0 auto;
}

.manufacturing .slider-with-thumb .main-slider {
  height: 550px;
}

.manufacturing .slider-with-thumb .slider-card {
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;
}

.manufacturing .slider-with-thumb .slider-media {
  width: 100%;
  height: 100%;
}

.manufacturing .slider-with-thumb .slider-media img {
  width: 100%;
  height: 100%;
}

.manufacturing .service-slider .card-service:hover .card-service-content .heading {
  color: white;
}

.manufacturing .section-headings {
  position: relative;
  z-index: 1;
}

.manufacturing .service-slider .card-service:hover .card-service-content {
  background-color: var(--primary-color);
}

.manufacturing .step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  right: auto;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.233);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.manufacturing .step-number-black {
  position: absolute;
  top: 20px;
  left: 20px;
  right: auto;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 0, 0, 0.233);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  .manufacturing .step-number {
    left: auto;
    right: 20px;
    top: 20px;
    font-size: 36px;
  }

  .manufacturing .step-number-black {
    left: auto;
    right: 20px;
    top: 20px;
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .manufacturing .step-number {
    right: 15px;
    top: 15px;
    font-size: 32px;
  }

  .manufacturing .step-number-black {
    right: 15px;
    top: 15px;
    font-size: 32px;
  }
}

.manufacturing .section-headings>*:not(.step-number) {
  position: relative;
  z-index: 2;
}

.manufacturing .our-services-3 .card-working-process {
  border-radius: 18px !important;
}

/* end to end cards  */
.manufacturing .text-image-sticky .image-text-card:nth-child(1) {
  --color-background: #eae3d2 !important;
  --top: 100px;
}

.manufacturing .text-image-sticky .image-text-card:nth-child(2) {
  --color-background: #c7cbcb !important;
  --top: 100px;
}

.manufacturing .text-image-sticky .image-text-card:nth-child(3) {
  --color-background: #acb4c4 !important;
  --top: 100px;
}

.manufacturing .text-image-sticky .image-text-card:nth-child(4) {
  --color-background: #8f9bbc;
  --top: 100px;
}

.manufacturing .text-image-sticky .image-text-card:nth-child(5) {
  --color-background: #7382ab;
  --top: 100px;
}

.manufacturing .text-image-sticky .image-text-card:nth-child(6) {
  --color-background: #56699a;
  --top: 100px;
}

.manufacturing .text-image-sticky .image-text-card:nth-child(7) {
  --color-background: #39518a;
  --top: 100px;
}

.manufacturing .text-image-sticky .image-text-card:nth-child(8) {
  --color-background: #1c3879;
  --top: 100px;
}

@media (max-width: 991px) {
  .manufacturing .text-image-sticky .image-text-card {
    position: relative;
    top: 0;
    padding: 30px 20px;
  }

  .manufacturing .text-image-sticky .image-text-card {
    margin-top: 20px;
  }
}

/* sustainability page*/
.sustainability .promotion-has-column .promotion-item {
  border-radius: 18px !important;
}

.sustainability .icon-back {
  width: 70px;
  height: 70px;
}

.sustainability .promotion-has-column .promotion-item {
  background-color: #fff;
  border: solid 1px var(--primary-color);
  color: #000;
}

.sustainability .feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: 0.35s;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sustainability .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.sustainability .feature-card:hover .feature-content .feature-icon {
  transform: rotateY(360deg);
}

.sustainability .feature-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.sustainability .feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 185px;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.sustainability .feature-card:hover .feature-icon {
  transform: translateX(-50%) rotateY(360deg);
}

.sustainability .feature-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.sustainability .feature-content {
  padding: 60px 10px 19px;
}

.sustainability .feature-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 15px;
}

.sustainability .feature-content p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* csr page */
.csr .section-padding {
  --padding-top: 60px;
  --padding-bottom: 60px;
}

.faq-working-process,
.manufacturing .our-services,
.quality .pricing-plan-2,
.about .promotion {
  background: linear-gradient(150deg,
      rgb(28, 56, 121),
      rgba(0, 0, 0)) !important;
}

.csr .video-wrap .image {
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.csr .video-wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.csr .icon-csr {
  width: 70px;
  height: 70px;
  background: var(--white-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============== Responsive =============== */
/* 991 media */
@media (max-width: 991px) {

  /* sustainability page */
  .sustainability .feature-img img {
    height: 190px;
  }

  .sustainability .feature-icon {
    top: 155px;
  }
}

@media (min-width: 992px) {
  .csr .video-wrap {
    height: 100%;
  }
}

@media (max-width: 576px) {
  .csr .video-wrap .image {
    min-height: 250px;
  }

  .vision .text-abs {
    font-size: 20px !important;
  }
}

/* vision page */
.vision .our-services {
  background-color: var(--primary-color) !important;
}

/* quality detail  */
.quality-detail .promotion {
  background: unset;
}

.quality-detail .promotion-lists {
  background: var(--primary-color) !important;
}

.quality-detail .project-sidebar {
  padding-inline-end: 60px;
}

.quality-detail .sidebar-widget {
  background-color: var(--secondary-color);
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

/* quality page  */

.quality .qualityProcessSwiper .swiper-slide-active .card-pricing-headings {
  background-color: var(--secondary-color);
  padding: 24px;
}

.quality .qualityProcessSwiper .card-pricing {
  transition: all 0.4s ease;
  transform: scale(0.92);
  opacity: 0.6;
}

.quality .qualityProcessSwiper .swiper-slide-active .card-pricing {
  transform: scale(1);
  opacity: 1;
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.quality .qualityProcessSwiper .swiper-slide-active .heading,
.quality .qualityProcessSwiper .swiper-slide-active .text-item,
.quality .qualityProcessSwiper .swiper-slide-active .text {
  color: #fff;
}

.quality .qualityProcessSwiper .swiper-slide-prev .card-pricing,
.quality .qualityProcessSwiper .swiper-slide-next .card-pricing {
  transform: scale(0.95);
  opacity: 0.85;
}

.quality .card-pricing-headings {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.quality .quality-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.quality .quality-title img {
  width: 55px;
  height: 55px;
  min-width: 55px;
  object-fit: contain;
}

.quality .quality-title h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  text-align: left;
  flex: 1;
}

.quality .card-pricing {
  position: relative;
  overflow: hidden;
}

.quality .watermark-number {
  position: absolute;
  right: 10px;
  bottom: 6px;
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.qualityProcessSwiper .swiper-slide-active .watermark-number {
  opacity: 1;
}

.quality .card-pricing-headings,
.quality .text-lists {
  position: relative;
  z-index: 2;
}

.quality .card-project {
  position: relative;
  overflow: hidden;
}

.quality .card-project>img {
  transition: transform 0.45s ease;
}

.quality .card-project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(28, 56, 121) 0%,
      rgba(28, 56, 121) 10%,
      rgba(0, 0, 0, 0) 100%);
  transition: 0.4s ease;
  z-index: 1;
}

.quality .card-project-content-absolute {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: end;
  padding: 30px;
  transition: 0.35s ease;
}

.quality .icon-project-link {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
}

.quality .card-project:hover::after {
  opacity: 0;
}

.quality .card-project:hover .card-project-content-absolute {
  opacity: 0;
  visibility: hidden;
}

.quality.card-project:hover>img {
  transform: scale(1.08);
}

.quality .card-project:hover .icon-project-link {
  opacity: 1;
  transform: translateY(0);
}

.quality .card-project::after {
  opacity: 1;
}

.quality .card-project-content {
  opacity: 1;
  transform: translateY(0);
}

.quality .icon-project-link {
  opacity: 1;
}

.quality .card-project:hover::after {
  opacity: 0;
}

.quality .card-project:hover .card-project-content {
  opacity: 0;
  transform: translateY(20px);
}

.quality .card-project:hover>img {
  transform: scale(1.08);
}

.quality .card-project:hover .icon-project-link {
  opacity: 1;
}

/* header */
@media (max-width: 1600px) {
  .menu-link-main {
    padding: 19px 13px;
  }
}

/* quality  */
.quality .rs-about-ten .rs-about-shape-one {
  position: absolute;
  inset-inline-start: -70px;
  top: 70px;
  width: 100px;
  z-index: -1;
}

@media only screen and (max-width: 480px) {
  .quality .rs-about-ten .rs-about-shape-one {
    display: none;
  }
}

.quality .recent-project {
  position: relative;
}

.quality .recent-project .rs-about-shape-one {
  position: absolute;
  left: 58px;
  bottom: -59px;
  z-index: 0;
  pointer-events: none;
}

.quality .recent-project .rs-about-shape-one img {
  display: block;
  width: 220px;
  height: auto;
}

.quality .recent-project .container-fluid {
  position: relative;
  z-index: 2;
}

.quality .pdf-iframe-container {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.quality .pdf-iframe-container iframe {
  width: 100%;
  height: 850px;
  border: 0;
  display: block;
}

@media (max-width: 400px) {
  .quality .pdf-iframe-container iframe {
    height: 70vh;
    min-height: 400px;
  }
}

/* ================= */
.quality .why-choose-video {
  border-radius: 15px;
}

.quality .why-choose-video .service-list {
  display: flex;
  gap: 30px;
}

.quality .why-choose-video .multicolumn-card {
  flex: 1;
}

.quality .why-choose-video .heading {
  margin-bottom: 15px;
  line-height: 1.4;
}

.quality .why-choose-video .text {
  line-height: 1.8;
}

@media (max-width: 1199px) {
  .quality .why-choose-video {
    padding: 40px !important;
  }

  .quality .why-choose-video .service-list {
    gap: 20px;
  }

  .quality .why-choose-video .heading {
    font-size: 22px !important;
  }

  .quality .why-choose-video .text {
    font-size: 15px !important;
  }

  .quality .pdf-iframe-container iframe {
    height: 750px;
  }
}

@media (max-width: 991px) {
  .quality .why-choose-video {
    padding: 30px !important;
  }

  .quality .why-choose-video .service-list {
    flex-direction: column;
    gap: 25px;
  }

  .quality .why-choose-video .multicolumn-card {
    margin-top: 0 !important;
  }

  .quality .why-choose-video .heading {
    font-size: 20px !important;
  }

  .quality .why-choose-video .text {
    font-size: 15px !important;
    line-height: 1.7;
  }

  .quality .pdf-iframe-container iframe {
    height: 650px;
  }
}

@media (max-width: 767px) {
  .quality .why-choose-video {
    padding: 20px !important;
    border-radius: 10px;
  }

  .quality .why-choose-video .service-list {
    gap: 20px;
  }

  .quality .why-choose-video .heading {
    font-size: 18px !important;
    line-height: 1.4;
  }

  .quality .why-choose-video .text {
    font-size: 14px !important;
    line-height: 1.6;
    margin-top: 10px !important;
  }

  .quality .pdf-iframe-container iframe {
    height: 80vh;
    min-height: 500px;
  }
}

@media (max-width: 575px) {
  .quality .why-choose-video {
    padding: 15px !important;
  }

  .quality .why-choose-video .heading {
    font-size: 17px !important;
  }

  .quality .why-choose-video .text {
    font-size: 13px !important;
  }

  .quality .pdf-iframe-container iframe {
    height: 75vh;
    min-height: 450px;
  }
}

/*  */
.product-main-image-container {
  width: 100%;
  height: 450px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-image-wrapper {
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
}

.product-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-extra-image-container {
  width: 100%;
  height: 250px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.product-extra-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 991px) {
  .product-main-image-container {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .product-main-image-container {
    height: 280px;
  }

  .product-extra-image-container {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .product-main-image-container {
    height: 220px;
  }

  .product-extra-image-container {
    height: 150px;
  }
}

/* Our Expertise Grid (our-expertise.php and index.php) */
.premium-expertise-card .premium-expertise-card-icon {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -24px;
  right: 24px;
  z-index: 2;
}

.premium-expertise-card .premium-expertise-card-title {
  /* color: var(--mega-blue); */
  margin-top: 5px;
}

/* Service Details Page */
.service-details-page .service-details-content .service-details-img {
  max-height: 500px;
  object-fit: cover;
}

.header-2.header-floating .header-grid,
.header-2.header-sticky.scrolled-past-header .header-grid {
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* Captcha UI Styles */
.visually-hidden-bot {
  position: absolute;
  left: -9999px;
}

.captcha-input-wrapper {
  min-width: 150px;
}

.captcha-img-preview {
  height: 48px;
  width: auto;
  aspect-ratio: 150 / 65;
}

.captcha-refresh-btn {
  min-height: 48px;
  width: 48px;
  border-radius: 8px;
}

/* Prevents form layout shift when success/error messages appear */
.form-message-wrapper {
  min-height: 60px;
}

/* Enquiry Form Error Display */
#enquiry_form .form-error {
  display: block !important;
  height: 10px;
  font-size: 12px !important;
  color: rgb(241, 49, 49) !important;
  margin: 1px 0 10px 5px !important;
  opacity: 1 !important;
  position: static !important;
  left: auto !important;
  width: auto !important;
  pointer-events: auto !important;
}

#enquiry_form .form-error:empty {
  display: block !important;
  opacity: 0 !important;
}

#enquiry_form label {
  padding-bottom: 5px;
}

#enquiry_form form textarea,
form input {
  min-height: 42px;
  font-size: 14px;
}

/* about  */

.about .list-block .text-item {
  max-width: 262px;
}

.about .card-working-process .svg-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.about .our-services-3 .card-working-process {
  min-height: -webkit-fill-available;
}

/* Global Presence Page Styles */
.global-presence .our-services-3 .card-working-process .svg-wrapper {
  color: var(--color-white);
}

.global-presence .global-presence-icon {
  background-color: var(--color-white);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-presence .global-presence-bg {
  background-color: var(--color-white);
  border: 1px dashed;
}

.global-presence .global-presence-quote-text {
  line-height: 1.6;
}

.global-presence .global-presence-map-container {
  background: var(--color-white);
}

.global-presence .global-presence-map-img {
  max-height: 500px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* FAQ Accordion active text color */
.faq-page .accordion-block.active .accordion-opener {
  color: #ffffff !important;
}