@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --theme-blue: #095fb5;
  --theme-red: #932f2f;
  --theme-white: #fff;
  --theme-black: #222;
}
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Mona Sans", sans-serif;
  overflow-x: hidden;
}
p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
a {
  color: var(--theme-black-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--theme-orange);
}
.primary-btn {
  background-color: var(--theme-blue);
  color: var(--theme-white);
  display: inline-block;
  padding: 8px 8px 6px 15px;
  border-radius: 6px;
  border-bottom-right-radius: 16px;
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  gap: 6px;
}
.primary-btn.black {
  background-color: var(--theme-black);
}
.primary-btn i {
  background-color: var(--theme-black);
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  border-bottom-right-radius: 11px;
  margin-left: 4px;
}
.primary-btn.black i {
  background-color: var(--theme-blue);
}
.primary-btn:hover {
  color: var(--theme-white);
}
.mainHeader .navbar-light .navbar-nav .nav-link {
  color: var(--theme-black);
  font-weight: 600;
  font-size: 16px;
  padding: 6px 16px;
}
.hero-section {
  max-height: 90vh;
  overflow: hidden;
  width: 100%;
}
.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.heading-wrap {
  color: var(--theme-black);
  margin-bottom: 2rem;
}
.heading-wrap h2 {
  font-weight: 600;
  font-size: 42px;
}
.heading-wrap h4 {
  font-weight: 600;
  font-size: 24px;
}
.heading-wrap span {
  color: var(--theme-blue);
  font-weight: 600;
}
section.about {
  background-color: #f0f0f0;
  padding: 100px 0;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.05) 1px,
    transparent 1px
  );
  background-size: 280px 150px;
}
section.about .primary-btn {
  margin-top: 1rem;
}
.site-footer {
  background:
    radial-gradient(
      circle at 85% 100%,
      rgba(0, 104, 255, 0.28),
      transparent 30%
    ),
    #030303;
  color: #b8b8b8;
  padding: 50px 30px 20px;
  overflow: hidden;
}
.footer-container {
  max-width: 1500px;
  margin: auto;
}
.footer-top {
  position: relative;
  z-index: 2;
}
.footer-column {
  padding: 0 28px;
  border-right: 1px dashed rgba(255, 255, 255, 0.16);
}
.footer-column:last-child {
  border-right: none;
}
.footer-title {
  color: var(--theme-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 25px;
  height: 3px;
  background: #0074df;
  border-radius: 2px;
}
.footer-text {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #999;
}
.newsletter-form {
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--theme-white);
  padding: 10px 12px;
  font-size: 12px;
  width: 100%;
}
.newsletter-form input::placeholder {
  color: #888;
}
.newsletter-form button {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(135deg, #0084ff, #0058c9);
  color: var(--theme-white);
  cursor: pointer;
}
.contact-item,
.working-item {
  display: flex;
  gap: 12px;
  margin-bottom: 17px;
  font-size: 14px;
  line-height: 1.55;
}
.contact-item i,
.working-item i {
  color: #0074df;
  font-size: 15px;
  margin-top: 3px;
  min-width: 18px;
}
.contact-item strong,
.working-item strong {
  color: #ddd;
  font-weight: 600;
}
.address-item {
  padding-bottom: 10px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.12);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 18px;
}
.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
  padding-left: 12px;
}
.footer-links li i {
  color: var(--theme-blue);
  font-size: 10px;
}
.footer-links a:hover {
  color: var(--theme-white);
  padding-left: 22px;
}
.visitor-count {
  border-top: 1px dotted rgba(255, 255, 255, 0.15);
  margin-top: 20px;
  padding-top: 16px;
  font-size: 12px;
  color: #aaa;
}
.working-item {
  padding-bottom: 18px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.12);
}
.footer-brand {
  margin-top: 25px;
  font-size: 105px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 5px;
  color: rgba(55, 70, 90, 0.26);
  white-space: nowrap;
  position: relative;
  text-align: center;
}
.footer-brand sup {
  font-size: 25px;
  vertical-align: top;
  margin-left: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  margin-top: 10px;
  font-size: 12px;
}
.footer-bottom-left {
  color: #b8b8b8;
}
.footer-powered {
  color: #777;
}
.footer-powered a {
  color: #aaa;
  font-weight: 600;
  text-decoration: underline;
}
.footer-bottom-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.footer-bottom-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-bottom-links a {
  color: #c5c5c5;
  text-decoration: none;
}
.footer-bottom-links span {
  color: #555;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-social a {
  color: var(--theme-white);
  font-size: 18px;
  text-decoration: none;
}
.footer-social a:hover,
.footer-bottom-links a:hover {
  color: #0074df;
}
.circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.circle.train .content {
  position: absolute;
  text-align: center;
  left: 50%;
}
.product-list-section {
  position: relative;
  padding: 100px 0 80px;
  overflow: visible;
}
.product-list-section .container-fluid {
  overflow: visible;
}
.product-row {
  position: sticky;
  top: 20px;
  background: var(--theme-white);
  z-index: 1;
  border-bottom: 1px solid #dddddd;
  padding: 18px 0 14px;
}
.product-list-section .product-row:nth-of-type(2) {
  z-index: 2;
}
.product-list-section .product-row:nth-of-type(3) {
  z-index: 3;
}
.product-list-section .product-row:nth-of-type(4) {
  z-index: 4;
}
.product-list-section .product-row:nth-of-type(5) {
  z-index: 5;
}
.product-row + .product-row {
  margin-top: 18px;
}
.product-row:last-child {
  border-bottom: none;
}
.icon-col {
  display: flex;
  padding-top: 8px;
}
.product-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0.9;
}
.product-image-box {
  width: 100%;
}
.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-title-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--theme-black);
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
}
.product-features h5 {
  font-size: 14px;
  font-weight: 700;
  color: #8a8a8a;
  margin: 0 0 14px;
}
.product-features p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 16px;
  max-width: 260px;
}
.product-features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-features ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.product-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--theme-blue);
  font-size: 12px;
  font-weight: 700;
}
.arrow-col {
  display: flex;
  justify-content: center;
}
.product-arrow {
  width: 30px;
  height: 30px;
  background: var(--theme-blue);
  color: var(--theme-white);
  text-decoration: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
  transition: 0.3s;
  border-bottom-right-radius: 10px;
}

.product-arrow:hover {
  background: var(--theme-blue);
  color: var(--theme-white);
}
.heading-wrap label {
  position: relative;
  color: var(--theme-black);
  border: 1px solid var(--theme-blue);
  padding: 4px 10px 4px 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 10px;
}
.heading-wrap label::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--theme-blue);
  border-radius: 10px;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.technology {
  padding: 100px 0;
  background-color: #18181a;
  background-image: linear-gradient(
    to right,
    rgb(255 255 255 / 7%) 1px,
    transparent 1px
  );
  background-size: 280px 150px;
}
.heading-wrap.dark-bg,
.heading-wrap.dark-bg label {
  color: var(--theme-white);
}
.heading-wrap.dark-bg label {
  background-color: var(--theme-black);
}
.img-part img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 100px 0;
  max-width: 700px;
}
.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--theme-blue);
}
.process-card {
  border: 1px solid #777777;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--theme-blue);
}
.process-item {
  display: flex;
  gap: 16px;
  color: var(--theme-white);
  margin-top: 16px;
}
.technology .process-card .process-item p {
  font-size: 12px;
  font-weight: 300;
  min-height: 55px;
  color: #d1d9e1;
}
.process-item h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.process-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.forging-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.62) 35%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0.08) 100%
  );
}
.forging-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 20px;
}
.forging-card {
  position: relative;
  max-width: 600px;
  padding: 38px 40px;
  background: rgba(6, 10, 16, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(49, 125, 255, 0.35);
  border-radius: 14px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.forging-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 80px;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3c8cff, transparent);
}
.forging-card h2 {
  margin: 0 0 12px;
  color: var(--theme-white);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
}
.forging-card h6 {
  margin: 0 0 12px;
  color: var(--theme-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}
.forging-card > p {
  margin: 0 0 22px;
  max-width: 500px;
  color: #b9bec7;
  font-size: 15px;
  line-height: 1.7;
}
.forging-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.forging-card ul li {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #d8dce2;
  font-size: 15px;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #276dff;
  font-size: 16px;
  font-weight: 700;
}
.industries,
.company-overview {
  padding: 100px 0;
}
.social {
  padding: 0 0 60px 0;
}
a.social-wrap {
  display: block;
  background: #f1f1f1;
  padding: 8px 18px 8px 8px;
  border-radius: 90px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
.social-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.social-wrap img {
  width: 60px;
  height: 60px;
  margin-right: 8px;
}
.industries .process-item {
  color: var(--theme-black);
  min-height: 110px;
  max-height: 100%;
  padding: 0 14px;
}
.industries .process-img img {
  max-height: 300px;
  object-fit: cover;
}
.industries .process-card {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 0;
}
.arrow-btn {
  background-color: var(--theme-blue);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  border-bottom-right-radius: 11px;
  color: var(--theme-white);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.industries .process-item h3 {
  font-weight: 600;
}
.trust-section {
  padding: 0 0 80px 0;
  background: var(--theme-white);
}
.trust-section .container {
  max-width: 1450px;
  margin: auto;
  padding: 0 20px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 85px minmax(0, 1.8fr) minmax(300px, 1.2fr) minmax(
      260px,
      0.9fr
    );
  gap: 18px;
  align-items: stretch;
  margin-bottom: 50px;
}
.people-column {
  background: linear-gradient(180deg, #063a8f, #0f53bd);
  border-radius: 8px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  gap: 15px;
}
.person-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  cursor: pointer;
  transition: 0.3s ease;
}
.person-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.person-thumb.active,
.person-thumb:hover {
  background: var(--theme-white);
  transform: scale(1.08);
}
.testimonialSwiper {
  width: 100%;
  height: 100%;
}
.testimonial-card {
  position: relative;
  height: 100%;
  min-height: 335px;
  background: linear-gradient(135deg, #f7f7f7, var(--theme-white));
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 45px 45px 35px;
  display: flex;
  flex-direction: column;
}
.stars {
  color: #0750ad;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 22px;
}
.testimonial-card p {
  max-width: 650px;
  color: #232323;
  font-size: 15px;
  line-height: 1.75;
}
.line {
  display: block;
  width: 50px;
  height: 2px;
  background: #1766c4;
  margin-top: 15px;
}
.testimonial-info {
  margin-top: auto;
}
.testimonial-info h3 {
  color: #064ba9;
  font-size: 21px;
  margin-bottom: 5px;
}
.testimonial-info span {
  color: #777;
  font-size: 13px;
}
.quote-mark {
  position: absolute;
  right: 25px;
  bottom: -20px;
  color: rgba(0, 0, 0, 0.035);
  font-size: 160px;
  line-height: 1;
}
.trust-right {
  display: grid;
  grid-template-rows: 1.15fr 0.8fr;
  gap: 16px;
}
.since-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 180px;
}
.since-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.since-overlay {
  position: absolute;
  inset: 0;
  padding: 25px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.since-logo {
  width: 150px;
  margin-bottom: 12px;
}
.since-overlay span {
  width: 50px;
  height: 2px;
  background: var(--theme-white);
  margin-bottom: 12px;
}
.since-overlay h3 {
  color: var(--theme-white);
  font-size: 22px;
}
.stats-card {
  background: linear-gradient(120deg, #0648bb, #164db0);
  border-radius: 8px;
  color: var(--theme-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 25px;
}
a.stats-card:hover {
  color: var(--theme-white);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat-icon {
  font-size: 35px;
}
.stat-item h3 {
  margin: 0;
  font-size: 29px;
}
.stat-item p {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 65px;
  background: rgba(255, 255, 255, 0.5);
}
.support-card {
  border-radius: 8px;
  padding: 32px 28px;
  color: var(--theme-white);
  background:
    radial-gradient(
      circle at top right,
      rgba(32, 94, 224, 0.5),
      transparent 40%
    ),
    linear-gradient(160deg, #061c49, #050505);
  display: flex;
  flex-direction: column;
}
.support-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1766dd;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.support-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 18px;
}
.support-card p {
  color: #d9d9d9;
  font-size: 13px;
  line-height: 1.55;
}
.support-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--theme-white);
  color: var(--theme-blue);
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
}
.support-btn span {
  padding: 13px 18px;
  font-size: 13px;
}
.support-btn i {
  width: 45px;
  align-self: stretch;
  display: grid;
  place-items: center;
  color: var(--theme-white);
  background: var(--theme-blue);
}
.clientSwiper {
  margin-top: 25px;
  padding-bottom: 35px;
}
.client-logo {
  height: 95px;
  border-radius: 7px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}
.client-logo:hover img {
  transform: scale(1.05);
}
.clientSwiper .swiper-pagination {
  bottom: 0;
}
.clientSwiper .swiper-pagination-bullet-active {
  background: #0b55bd;
}
.stats-circle-section {
  padding: 70px 20px 0;
  overflow: hidden;
}
.stats-circle-wrap {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.stat-circle {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.light-circle {
  background: #fff;
  border: 1px solid #d9d9d9;
}
.stat-inner {
  width: 100%;
  height: 100%;
  padding: 42px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stat-label {
  margin-bottom: 12px;
  color: #0870dc;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.stat-circle h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  color: #111;
}
.stat-circle p {
  margin: 10px 0 0;
  color: #333;
  font-size: 17px;
  line-height: 1.35;
}
.small-line {
  width: 38px;
  height: 3px;
  margin: 14px 0;
  background: #1477df;
}
.light-circle img {
  width: 135px;
  max-height: 75px;
  object-fit: contain;
}
.image-circle {
  background: #071829;
}
.image-circle > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-circle-overlay {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}
.image-circle-overlay span {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 600;
}
.image-circle-overlay h3 {
  margin: 0;
  color: #1193ff;
  font-size: 22px;
  line-height: 1.05;
}
.production-circle h4 {
  margin: 0;
  color: #111;
  font-size: 34px;
  font-weight: 700;
}
.production-circle small {
  margin-top: 2px;
  color: #333;
  font-size: 14px;
}
.dark-circle {
  background: radial-gradient(circle at 50% 30%, #242424, #111 65%, #090909);
}
.dark-circle .stat-inner {
  color: #fff;
}
.map-icon {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 58px;
}
.dark-circle h2 {
  color: #fff;
  font-size: 62px;
  font-weight: 400;
}
.dark-circle h2 span {
  color: #0975e6;
}
.dark-circle p {
  color: #ddd;
  font-size: 18px;
}
.stat-circle {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}
.stat-circle:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}
.vande img {
  width: 100%;
  object-fit: contain;
}
.vande .content {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.vande {
  position: relative;
}
.vande .heading-wrap h2,
.vande .heading-wrap h2 span {
  font-size: 62px;
  font-weight: 800;
}
.about-content {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}
.forging-section {
  position: relative;
  overflow: hidden;
}
.forgingSwiper {
  width: 100%;
  height: 100%;
}
.forging-slide {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.forging-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 24, 45, 0.82) 0%,
    rgba(8, 24, 45, 0.58) 38%,
    rgba(8, 24, 45, 0.18) 72%,
    rgba(8, 24, 45, 0.05) 100%
  );
  z-index: 1;
}
.forging-slide .container {
  position: relative;
  z-index: 2;
}
.forging-card {
  max-width: 540px;
}
.forgingSwiper .slide-content {
  opacity: 0;
  transform: translateX(70px);
  filter: blur(8px);
  transition: all 0.95s ease;
}
.forgingSwiper .swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.forgingSwiper .swiper-slide-active .forging-card h2 {
  animation: slideTextRight 0.85s ease forwards;
}
.forgingSwiper .swiper-slide-active .forging-card p {
  animation: slideTextRight 0.85s ease forwards;
  animation-delay: 0.15s;
  opacity: 0;
}
.forgingSwiper .swiper-slide-active .forging-card ul {
  animation: slideTextRight 0.85s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
.forgingSwiper .swiper-slide-active .forging-card .primary-btn {
  animation: slideTextRight 0.85s ease forwards;
  animation-delay: 0.45s;
  opacity: 0;
}
@keyframes slideTextRight {
  from {
    opacity: 0;
    transform: translateX(45px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
.forging-swiper-arrows {
  position: absolute;
  right: 60px;
  bottom: 35px;
  z-index: 5;
  display: flex;
  gap: 12px;
}
.forging-swiper-arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.forging-swiper-arrows button:hover {
  background: #fff;
  color: #0f3558;
}
.breadcrumb {
  margin: 0;
  position: relative;
}
.breadcrumb img {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
}
.leadership-section {
  padding: 80px 0;
  background: var(--theme-white);
}
.leadership-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.leadership-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}
.leadership-heading span {
  position: relative;
  display: inline-block;
  padding: 0 35px;
  color: var(--theme-blue);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.leadership-heading span::before,
.leadership-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 1px;
  background: rgba(9, 95, 181, 0.3);
}
.leadership-heading span::before {
  right: 100%;
}
.leadership-heading span::after {
  left: 100%;
}
.leadership-list {
  border-top: 1px solid #e8edf2;
}
.leader-row {
  display: grid;
  grid-template-columns: 300px 1fr 1.15fr;
  align-items: stretch;
  min-height: 190px;
  border-bottom: 1px solid #e8edf2;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  padding: 20px 0;
  cursor: pointer;
}
.leader-row:hover {
  background: #fafcff;
}
.leader-image {
  overflow: hidden;
  max-height: 210px;
}
.leader-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  padding-top: 28px;
}
.leader-row:hover .leader-image img {
  transform: scale(1.025);
}
.leader-info {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 28px 34px;
}
.leader-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leader-number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--theme-blue);
  color: var(--theme-white);
  font-size: 13px;
  font-weight: 700;
}
.education-icon {
  margin-top: 39px;
  color: var(--theme-blue);
  font-size: 18px;
  line-height: 1;
}
.leader-details h3 {
  margin: 0 0 5px;
  color: var(--theme-blue);
  font-size: 20px;
  font-weight: 700;
}
.designation {
  display: block;
  margin-bottom: 22px;
  color: var(--theme-black);
  font-size: 14px;
  font-weight: 600;
}
.education {
  margin: 0;
}
.education p {
  margin: 0;
  color: #53606f;
  font-size: 14px;
  line-height: 1.6;
}
.leader-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 35px;
}
.leader-description p {
  max-width: 430px;
  margin: 0 0 8px;
  color: #465466;
  font-size: 14px;
  line-height: 1.7;
}
.leader-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.leader-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-blue);
  font-size: 16px;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.leader-social a:hover {
  color: var(--theme-red);
  transform: translateY(-3px);
}
.journey-section {
  padding: 80px 0;
  background: var(--theme-white);
}
.journey-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.journey-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.journey-heading h2 {
  margin: 0 0 12px;
  color: var(--theme-blue);
  font-size: 32px;
  font-weight: 700;
}
.journey-heading p,
.leadership-heading p {
  margin: 0;
  color: var(--theme-black);
  font-size: 16px;
  line-height: 1.6;
}
.journey-timeline {
  position: relative;
}
.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #d8e0e9;
  transform: translateX(-50%);
}
.journey-item {
  position: relative;
  width: 50%;
  min-height: 130px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}
.journey-item.left {
  padding-right: 55px;
  justify-content: flex-end;
}
.journey-item.right {
  margin-left: 50%;
  padding-left: 55px;
  justify-content: flex-start;
}
.journey-dot {
  position: absolute;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--theme-blue);
  border: 4px solid var(--theme-white);
  box-shadow: 0 0 0 1px var(--theme-blue);
  z-index: 2;
}
.journey-item.left .journey-dot {
  right: -7px;
}
.journey-item.right .journey-dot {
  left: -7px;
}
.journey-content {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  max-width: 470px;
}
.journey-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f2f7fc;
  color: var(--theme-blue);
  font-size: 23px;
  border: 1px solid #e0ebf6;
}
.journey-text h3 {
  margin: 0;
  color: var(--theme-blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.journey-text h4 {
  margin: 7px 0;
  color: var(--theme-blue);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
}
.journey-text p {
  margin: 0;
  color: var(--theme-black);
  font-size: 14px;
  line-height: 1.55;
}
.journey-item:hover .journey-icon {
  background: var(--theme-blue);
  color: var(--theme-white);
  transform: translateY(-3px);
}
.journey-icon {
  transition: 0.3s ease;
}
.read-more-hidden {
  display: none;
}
.read-more-content.is-open .read-more-hidden {
  display: block;
}
.read-more-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--theme-blue);
  font-weight: 600;
  cursor: pointer;
}
.read-more-btn:hover {
  color: var(--theme-red);
}
.p-300 {
  font-weight: 300;
}
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #e9e9e9;
}
.img-placeholder::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/sfl.png);
  width: 100px;
  height: 100px;
  background-size: contain;
}
.company-stats {
  padding: 35px 20px;
  background: #fafcff;
}
.company-stats-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.company-stat {
  position: relative;
  padding: 5px 20px;
  text-align: center;
}
.company-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  width: 1px;
  height: 90%;
  background: #e3e8ee;
}
.company-stat-icon {
  height: 35px;
  margin-bottom: 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--theme-blue);
  font-size: 25px;
}
.company-stat h3 {
  margin: 0 0 7px;
  color: var(--theme-blue);
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
}
.company-stat p {
  margin: 0;
  color: var(--theme-black);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
}
.trust-point {
  position: relative;
  min-height: 190px;
  padding: 24px;
  background: #fafafa;
  border: 1px solid #e9edf1;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  cursor: hint;
}
.trust-point:hover {
  transform: translateY(-5px);
  border-color: rgba(9, 95, 181, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}
.trust-point-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-no {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--theme-blue);
  color: var(--theme-white);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}
.trust-point h3 {
  margin: 0;
  color: var(--theme-black);
  font-size: 16px;
  font-weight: 700;
}
.trust-point p {
  max-width: 78%;
  margin: 22px 0 0;
  color: #4f5965;
  font-size: 12px;
  line-height: 1.6;
}
.trust-point-icon {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(9, 95, 181, 0.12);
  font-size: 48px;
}
.news-section {
  background: #fafbfc;
}
.news-side h2 {
  margin: 0;
  color: var(--theme-black);
  font-size: 30px;
  font-weight: 700;
}
.news-title-line {
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 15px;
  background: var(--theme-blue);
}
.all-updates {
  max-width: 210px;
  margin-top: 32px;
  padding: 8px 0 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 2px solid var(--theme-blue);
  color: var(--theme-black);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.all-updates i {
  color: var(--theme-blue);
  transition: 0.3s ease;
}
.all-updates:hover i {
  transform: translateX(5px);
}
.news-count {
  color: var(--theme-black);
  font-size: 15px;
  font-weight: 600;
}
.news-count span {
  color: var(--theme-blue);
  font-weight: 700;
}
.news-card {
  background: var(--theme-white);
  border: 1px solid #e9edf2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}
.news-image {
  height: 100%;
  min-height: 430px;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-image img {
  transform: scale(1.035);
}
.news-content {
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.news-meta {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.news-tag {
  padding: 5px 9px;
  background: var(--theme-blue);
  color: var(--theme-white);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-date {
  color: #697380;
  font-size: 11px;
}
.news-content h3 {
  margin: 0 0 20px;
  color: var(--theme-black);
  font-size: 25px;
  font-weight: 700;
}
.event-details {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.event-details li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #303a46;
  font-size: 14px;
}
.event-details i {
  width: 16px;
  color: var(--theme-blue);
  text-align: center;
}
.news-content > p {
  margin: 0 0 13px;
  color: #515c68;
  font-size: 14px;
  line-height: 1.65;
}
.news-link {
  margin-top: auto;
  padding-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  color: var(--theme-blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.news-link i {
  transition: transform 0.3s ease;
}
.news-link:hover {
  color: var(--theme-black);
}
.news-link:hover i {
  transform: translateX(6px);
}
.heading-wrap.dark-bg h5 {
  color: var(--theme-blue);
}
.innotrans-info-strip {
  position: relative;
  background: transparent;
  border: 1px solid var(--theme-blue);
  border-radius: 12px;
  overflow: hidden;
}
.innotrans-info-item {
  position: relative;
  min-height: 115px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.innotrans-info-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.innotrans-info-strip .col-lg-3:last-child .innotrans-info-item::after {
  display: none;
}
.info-icon {
  width: 40px;
  flex: 0 0 40px;
  color: var(--theme-blue);
  font-size: 30px;
  text-align: center;
}
.info-text {
  color: var(--theme-white);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  white-space: normal;
}
.info-text strong {
  display: block;
  margin-bottom: 6px;
  color: var(--theme-white);
  font-weight: 600;
}
.qr-item {
  gap: 18px;
}
.qr-box {
  width: 60px;
  min-width: 60px;
  padding: 1px;
  background: var(--theme-white);
  border-radius: 4px;
  height: 60px;
}
.qr-box img {
  display: block;
  width: 100%;
  height: auto;
}
.info-text a {
  display: block;
  color: var(--theme-blue);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.info-text a:hover {
  color: var(--theme-white);
}
.inoo {
  background: #0c2442;
  padding: 80px 0;
}
.ino-content {
  margin-top: 40px;
}
.ino-content p {
  color: var(--theme-white);
  max-width: 650px;
}
.btn-wrap {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}
.btn-wrap .primary-btn.black {
  background-color: transparent;
  border: 1px solid var(--theme-white);
}
.logistics-points {
  width: 100%;
}

.logistics-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 0;
}

.logistics-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border: 1px solid rgba(9, 95, 181, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-blue);
  font-size: 20px;
}

.logistics-content h5 {
  margin: 0 0 6px;
  color: var(--theme-blue);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.logistics-content p {
  margin: 0;
  color: var(--theme-black);
  font-size: 14px;
  line-height: 1.6;
}
.newsletter-strip {
  width: 100%;
  padding: 28px 22px;
  background: linear-gradient(90deg, #06162e, #082b62);
  border-radius: 8px;
  margin-bottom: 40px;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--theme-blue);
  color: var(--theme-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.newsletter-left h5 {
  margin: 0 0 6px;
  color: var(--theme-white);
  font-size: 16px;
  font-weight: 700;
}

.newsletter-left p {
  margin: 0;
  color: var(--theme-white);
  font-size: 11px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--theme-white);
  border-radius: 4px;
  color: var(--theme-white);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-form input:focus {
  border-color: var(--theme-blue);
}

.newsroom-strip {
  padding: 70px 0;
}

.newsroom-label {
  display: block;
  margin-bottom: 8px;
  color: var(--theme-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.newsroom-feature {
  display: flex;
  min-height: 160px;
  background: var(--theme-white);
  border: 1px solid #eceff2;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.newsroom-feature-img {
  width: 44%;
  background: #f1f2f3;
}

.newsroom-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newsroom-feature-content {
  padding: 22px;
}

.newsroom-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 8px;
  background: var(--theme-blue);
  color: var(--theme-white);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.newsroom-feature-content h5 {
  margin: 0 0 8px;
  font-weight: 700;
}

.newsroom-feature-content p {
  font-size: 14px;
}

.newsroom-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--theme-blue);
  font-size: 12px;
  transition: 0.3s ease;
}

.newsroom-arrow:hover {
  transform: translateX(4px);
  color: var(--theme-red);
}
.carbon-reporting-box {
  background: linear-gradient(90deg, #f6f8ff, #eef4ff);
  border-radius: 10px;
  overflow: hidden;
}

.carbon-icon-wrap {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carbon-icon {
  width: 90px;
  height: 90px;
  border: 2px solid var(--theme-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-black);
  font-size: 36px;
}

.carbon-content {
  padding: 30px 35px 30px 0;
}

.carbon-content h3 {
  margin: 0 0 10px;
  color: var(--theme-blue);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.carbon-content p,
.carbon-note p {
  margin: 0;
  color: var(--theme-black);
  font-size: 14px;
  line-height: 1.6;
}

.carbon-note {
  position: relative;
  padding: 30px 35px 30px 50px;
}

.carbon-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: #cfd8e5;
}
.enquire {
  margin: 70px 0;
}
.enquire .carbon-icon {
  color: var(--theme-white);
  border-color: var(--theme-white);
}
.enquire .container {
  background: #01215b;
  border-radius: 12px;
  overflow: hidden;
}
.partnership-card {
  height: 100%;
  padding: 28px 24px;
  text-align: center;
  background: var(--theme-white);
  border: 1px solid #e5eaf0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.partnership-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-blue);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}
.partnership-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-blue);
  color: var(--theme-white);
}
.partnership-card h4,
.certification-sec h5,
.certification-sec h4,
.industry-mini-cards h5 {
  margin: 0 0 14px;
  color: var(--theme-black);
  font-weight: 700;
  font-size: 18px;
}
.partnership-card p,
.certification-sec p {
  margin: 0 auto;
  color: #5a6570;
  line-height: 1.65;
  font-size: 14px;
}
.partnership-line {
  display: block;
  width: 34px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--theme-blue);
}
.partnership-cards {
  padding: 70px 0;
}
.partner-process {
  background: linear-gradient(90deg, #f8faff, #f2f6fc);
}

.process-item {
  position: relative;
  padding: 10px 18px;
}

.process-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(9, 95, 181, 0.2);
  border-radius: 50%;

  background: var(--theme-white);
  color: var(--theme-blue);

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

  position: relative;
  z-index: 2;
}

.process-line {
  position: absolute;
  left: calc(50% + 40px);
  top: 50%;

  width: calc(100% - 20px);
  height: 2px;

  border-top: 2px dotted var(--theme-blue);
  opacity: 0.7;
}

.process-line::before,
.process-line::after {
  content: "";
  position: absolute;
  top: -5px;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--theme-blue);
}

.process-line::before {
  left: 0;
}

.process-line::after {
  right: 0;
}

.process-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.process-title span {
  color: var(--theme-blue);
  font-weight: 700;
}

.process-title h5 {
  margin: 0;
  color: var(--theme-black);
  font-weight: 700;
}

.process-item p {
  margin: 0;
  color: #53606f;
  line-height: 1.6;
}
.sf-partner-journey {
  background: linear-gradient(90deg, #f8faff, #f2f6fc);
  overflow: hidden;
}

.sf-partner-journey .step {
  position: relative;
  padding: 10px 22px;
  cursor: pointer;
}

.sf-partner-journey .step-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.sf-partner-journey .icon {
  position: relative;
  z-index: 2;

  width: 62px;
  height: 62px;
  flex: 0 0 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid rgba(9, 95, 181, 0.22);

  background: var(--theme-white);
  color: var(--theme-blue);

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.sf-partner-journey .step:hover .icon {
  background: var(--theme-blue);
  color: var(--theme-white);
  transform: translateY(-4px);
}

.sf-partner-journey .connector {
  position: absolute;
  left: calc(50% + 45px);
  top: 50%;

  width: calc(100% - 20px);
  height: 2px;

  border-top: 2px dotted rgba(9, 95, 181, 0.7);
}

.sf-partner-journey .connector::before,
.sf-partner-journey .connector::after {
  content: "";
  position: absolute;
  top: -5px;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: var(--theme-blue);
}

.sf-partner-journey .connector::before {
  left: 0;
}

.sf-partner-journey .connector::after {
  right: 0;
}

.sf-partner-journey .title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sf-partner-journey .title span {
  color: var(--theme-blue);
  font-weight: 700;
}

.sf-partner-journey .title h5 {
  margin: 0;
  color: var(--theme-black);
  font-weight: 700;
}

.sf-partner-journey p {
  margin: 0 auto;
  color: #53606f;
  line-height: 1.6;
  font-size: 14px;
}
.enquire.bg-map {
  position: relative;
}
.enquire.bg-map .row::before {
  content: "";
  position: absolute;
  top: 0;
  background: url("../images/map-bg.png");
  width: 250px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  right: 20%;
  z-index: 1;
}
.enquire.bg-map .row > * {
  position: relative;
  z-index: 5;
}
.info-card,
.location-list,
.map-box,
.contact-form-box {
  background: var(--theme-white);
  border: 1px solid #e5eaf0;
  border-radius: 8px;
}
.info-card {
  height: 100%;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-card .icon,
.location-item > i {
  color: var(--theme-blue);
}
.info-card .icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--theme-blue);
  color: var(--theme-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card h6,
.info-card p,
.location-item h5,
.location-item p,
.top-strip h6,
.rfq-section .top-strip p {
  margin: 0;
  word-wrap: anywhere;
  font-size: 14px;
}
.info-card h6,
.rfq-section .top-strip h6 {
  margin-bottom: 5px;
  font-weight: 700;
}

.location-item {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid #e7ebef;
}
.location-item:last-child {
  border-bottom: 0;
}
.location-item > i {
  margin-top: 3px;
}
.location-item h5 {
  color: var(--theme-blue);
  margin-bottom: 6px;
}
.location-item p {
  margin-bottom: 12px;
}
.small-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--theme-blue);
  text-decoration: none;
  border: 1px solid rgba(9, 95, 181, 0.25);
  border-radius: 4px;
  padding: 7px 10px;
}
.map-box {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-form-box {
  padding: 25px;
  background: #f8faff;
}
.form-intro p {
  margin-bottom: 25px;
}
.form-icon img {
  width: 100%;
  max-width: 300px;
  opacity: 0.5;
  margin-top: 40px;
}
.contact-form-section .form-control,
.contact-form-section .form-select {
  border: 1px solid #dfe5eb;
  box-shadow: none;
}
.heading-wrap h3 {
  font-size: 28px;
  font-weight: 600;
}
.certification-sec .cert-card,
.certification-sec .featured-cert {
  position: relative;
  background: var(--theme-white);
  border: 1px solid #e4e9ef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.035);
}
.certification-sec .cert-card {
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
}
.certification-sec .cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-blue);
}
.certification-sec .icon,
.industry-mini-cards .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-blue);
  border-radius: 50%;
  font-size: 30px;
}

.certification-sec small {
  display: block;
  margin-top: 15px;
  color: var(--theme-blue);
  font-weight: 600;
}
.certification-sec .featured-cert {
  border-color: var(--theme-blue);
}
.certification-sec .badge-top {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  padding: 2px 11px;
  background: var(--theme-blue);
  color: var(--theme-white);
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
  font-size: 12px;
  transform: translateX(-50%);
}
.certification-sec .cert-symbol {
  height: 100%;
  min-height: 210px;
  padding: 35px 15px 20px;
  background: #f3f7fc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--theme-blue);
  border-right: 1px solid #e0e6ed;
}
.certification-sec .cert-symbol i {
  margin-bottom: 15px;
  font-size: 30px;
}
.certification-sec .cert-content {
  height: 100%;
  padding: 35px 25px 25px;
}
.certification-sec .cert-content p + p {
  margin-top: 12px;
}
.certification-progress {
  background: #f8faff;
}
.certification-progress .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 30px;
  position: relative;
}
.certification-progress .col-lg-4:not(:last-child) .item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: #dce3eb;
}
.certification-progress .logo {
  width: 60px;
  min-width: 60px;
  font-size: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.certification-progress .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.certification-progress .icon-logo {
  color: var(--theme-blue);
}
.certification-progress .content h5 {
  margin: 0 0 8px;
  color: var(--theme-black);
  font-weight: 700;
}
.certification-progress .content p {
  margin: 0;
  color: #53606f;
  line-height: 1.6;
}
.certification-progress .line {
  display: block;
  width: 35px;
  height: 2px;
  margin: 14px 0;
  background: var(--theme-blue);
}
.certification-progress .content strong {
  display: block;
  color: var(--theme-blue);
  font-weight: 600;
  line-height: 1.6;
}
.industry-mini-cards .item {
  padding: 20px;
  text-align: center;
  background: var(--theme-white);
  border: 1px solid #e5eaf0;
  border-radius: 5px;
  transition: 0.3s ease;
}
.industry-mini-cards .item:hover {
  transform: translateY(-4px);
  border-color: var(--theme-blue);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.industry-mini-cards {
  padding-top: 50px;
}
.product-category-section .product-item h5 {
  margin: 12px 0 6px;
  font-size: 18px;
  font-weight: 600;
}
.product-category-section .product-item p {
  margin: 0;
  line-height: 1.6;
}
.product-item .img-placeholder {
  min-height: 220px;
}
.img-placeholder::after {
  width: 60px;
  height: 60px;
}
.product-category-section h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.enquire.poduct-page p {
  max-width: 70%;
}
.enquire.poduct-page .container {
  background: url("../images/product-banner-bg.png");
  padding: 50px 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.track-record-sec {
  background: #062648;
  color: var(--theme-white);
}
.track-record-sec span {
  font-weight: 700;
  letter-spacing: 1px;
}
.track-record-sec p {
  color: rgba(255, 255, 255, 0.82);
}
.track-record-sec .table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--theme-white);
  --bs-table-border-color: rgba(255, 255, 255, 0.14);
}
.track-record-sec .table th {
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.track-record-sec .table td {
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.88);
}
.track-record-sec .table td:first-child {
  width: 22%;
  font-weight: 600;
  color: var(--theme-white);
}
.press-specs .spec-box {
  background: linear-gradient(90deg, #f6f8ff, #eef4ff);
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  margin: 50px 0;
}
.press-specs .item {
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  min-height: 140px;
  cursor: pointer;
}
.press-specs .col-lg-4:nth-child(3n) .item {
  border-right: 0;
}
.press-specs .col-lg-4:nth-last-child(-n + 3) .item {
  border-bottom: 0;
}
.press-specs .icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border: 1px solid var(--theme-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-blue);
}
.press-specs p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}
.press-specs strong {
  display: block;
  color: var(--theme-black);
  font-weight: 700;
}
.equipment-showcase {
  background: var(--theme-white);
}
.equipment-showcase > .container > div:first-child > span {
  color: var(--theme-black);
  font-weight: 700;
  letter-spacing: 1px;
}
.equipment-showcase ul {
  list-style: none;
  padding: 0;
}
.equipment-showcase li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--theme-black);
}
.equipment-showcase li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--theme-blue);
  font-weight: 700;
}
.equipment-showcase .image-box {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e5eaf0;
}
.equipment-showcase .img-placeholder {
  width: 100%;
  min-height: 220px;
}
.equipment-showcase p {
  color: #53606f;
  line-height: 1.7;
}
.requirement-strip {
  background: linear-gradient(90deg, #f4f7fb, #eef3fb);
  border-radius: 10px;
}
.requirement-strip .icon {
  font-size: 32px;
  width: 70px;
  height: 70px;
  min-width: 56px;
  border-radius: 50%;
  background: #dfeafb;
  color: var(--theme-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.requirement-strip h5 {
  margin: 0 0 5px;
  color: var(--theme-black);
  font-weight: 700;
}
.requirement-strip p {
  color: #596473;
}
.requirement-strip .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 12px 20px;
  min-width: 210px;
  background: var(--theme-blue);
  color: var(--theme-white);
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}
.requirement-strip .primary-btn:hover {
  background: var(--theme-red);
  color: var(--theme-white);
}
.requirement-strip {
  padding: 20px;
  margin: 50px auto;
}
.rfq-section {
  background: var(--theme-white);
  margin-top: 50px;
}
.rfq-section .top-strip {
  padding: 18px 22px;
  background: #f5f8fd;
  border-radius: 8px;
  margin-bottom: 50px;
}
.rfq-section .top-strip .item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rfq-section .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-blue);
  color: var(--theme-white);
}
.rfq-section h4,
.rfq-section h5,
.rfq-section p {
  margin-top: 0;
}
.rfq-section .form-box,
.rfq-section .side-box {
  background: var(--theme-white);
  border: 1px solid #e3e8ee;
  border-radius: 8px;
}
.rfq-section .form-box {
  padding: 25px;
}
.rfq-section .form-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2px;
  margin-bottom: 4px;
}
.rfq-section .form-label span {
  color: var(--theme-red);
}
.rfq-section .form-control {
  box-shadow: none;
  border-color: #dfe5ec;
  padding: 12px;
  font-size: 14px;
}
.rfq-section .upload-box {
  min-height: 100px;
  border: 1px dashed var(--theme-blue);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  color: #53606f;
}
.rfq-section .upload-box i,
.rfq-section .upload-box span {
  color: var(--theme-blue);
}
.rfq-section .checks label,
.rfq-section .privacy-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
}
.rfq-section .form-text {
  display: block;
  margin-top: 6px;
  color: #7a838e;
}
.rfq-section .primary-btn {
  border: 0;
  border-radius: 4px;
  padding: 11px 20px;
  background: var(--theme-blue);
  color: var(--theme-white);
}
.rfq-section .primary-btn i {
  margin-left: 18px;
}
.rfq-section .side-box {
  padding: 25px;
  position: relative;
  overflow: hidden;
}
.rfq-section .side-box .title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.rfq-section .side-box .title i {
  color: var(--theme-blue);
}
.rfq-section .side-box p {
  color: #56616d;
  line-height: 1.7;
  font-size: 14px;
}
.rfq-section .small-line {
  display: block;
  width: 35px;
  height: 2px;
  margin-top: 20px;
  background: var(--theme-blue);
}
.rfq-section .watermark {
  position: absolute;
  right: 20px;
  bottom: 15px;
  color: rgba(9, 95, 181, 0.08);
  font-size: 80px;
}
.rfq-section .help-box ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.rfq-section .help-box li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.rfq-section .help-box li i {
  color: var(--theme-blue);
  margin-top: 3px;
}
.quality-pillars {
  margin: 50px 0;
}
.quality-pillars .item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 12px;
}
.quality-pillars .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--theme-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quality-pillars h5 {
  margin: 0 0 6px;
  color: var(--theme-black);
  font-weight: 700;
}
.quality-pillars p {
  margin: 0;
  color: #596473;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .quality-pillars .item {
    padding: 12px 0;
  }
}
.read-more-content.leader-description .read-more-btn {
  text-align: start;
}
.mainHeader {
  position: relative;
  z-index: 9999;
}
.mainHeader nav {
  position: relative;
  background: var(--theme-white);
  padding: 12px 25px;
}
.mainHeader .navbar-brand img {
  width: 150px;
}
.mainHeader .desktop-nav {
  align-items: center;
}
.mainHeader .navbar-nav {
  gap: 8px;
}
.mainHeader .nav-item,
.mainHeader .has-mega {
  position: static;
}
.mainHeader .nav-link {
  position: relative;
  padding: 18px 14px !important;
  color: var(--theme-black);
  font-weight: 500;
}
.mainHeader .nav-link > i {
  margin-left: 5px;
  transition: 0.25s ease;
}
.mainHeader .has-mega:hover > .nav-link {
  color: var(--theme-blue);
}
.mainHeader .has-mega:hover > .nav-link > i {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .mainHeader .has-mega > .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
  }
}
.mainHeader .mega-menu {
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid #e5eaf0;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}
.mainHeader .has-mega:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-16px);
}
.mainHeader .mega-intro {
  height: 100%;
  padding: 10px 20px 10px 5px;
}
.mainHeader .mega-intro > span,
.mainHeader .mega-heading > span {
  display: block;
  margin-bottom: 12px;
  color: var(--theme-blue);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mainHeader .mega-intro h3,
.mainHeader .mega-heading h3 {
  color: var(--theme-black);
  font-weight: 700;
}
.mainHeader .mega-intro p {
  margin: 15px 0 22px;
  color: #68737f;
  line-height: 1.7;
}
.mainHeader .mega-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--theme-blue);
  text-decoration: none;
}
.mainHeader .menu-card {
  min-height: 105px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #f8fafc;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.mainHeader .menu-card > span {
  color: var(--theme-blue);
  font-weight: 700;
}
.mainHeader .menu-card h5,
.mainHeader .content h5 {
  margin: 0 0 5px;
  color: var(--theme-black);
  font-weight: 700;
}
.mainHeader .menu-card p {
  margin: 0;
  color: #737c86;
  line-height: 1.5;
}
.mainHeader .menu-card:hover {
  background: var(--theme-white);
  border-color: rgba(9, 95, 181, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.mainHeader .mega-visual {
  position: relative;
  height: 100%;
  min-height: 235px;
  overflow: hidden;
  background: #071c35;
  border-radius: 10px;
}
.mainHeader .mega-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.5s ease;
}
.mainHeader .mega-visual:hover img {
  transform: scale(1.04);
}
.mainHeader .mega-visual > div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: var(--theme-white);
}
.mainHeader .mega-visual strong,
.mainHeader .mega-visual span {
  display: block;
}
.mainHeader .mega-heading {
  margin-bottom: 22px;
}
.mainHeader .visual-card {
  display: block;
  background: #f7f9fc;
  border-radius: 10px;
  overflow: hidden;
  color: var(--theme-black);
  text-decoration: none;
}
.mainHeader .visual-card .image {
  height: 160px;
  overflow: hidden;
}
.mainHeader .visual-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.mainHeader .visual-card .content {
  position: relative;
  padding: 18px 55px 18px 18px;
}
.mainHeader .visual-card .content > span {
  color: var(--theme-blue);
  font-weight: 700;
}
.mainHeader .visual-card h4 {
  margin: 5px 0;
}
.mainHeader .visual-card p {
  margin: 0;
  color: #69737e;
}
.mainHeader .visual-card .content > i {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--theme-blue);
  transition: transform 0.3s ease;
}
.mainHeader .visual-card:hover img {
  transform: scale(1.05);
}
.mainHeader .visual-card:hover .content > i {
  transform: translateX(5px);
}
.mainHeader .quality-highlight {
  height: 100%;
  padding: 28px;
  color: var(--theme-white);
  background: linear-gradient(135deg, #071d3e, #0b3268);
  border-radius: 10px;
}
.mainHeader .quality-highlight > span {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 9px;
  background: var(--theme-blue);
  border-radius: 4px;
}
.mainHeader .quality-highlight p {
  opacity: 0.8;
  line-height: 1.6;
}
.mainHeader .quality-highlight a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: var(--theme-white);
  text-decoration: none;
}
.mainHeader .header-cta {
  white-space: nowrap;
}
.mainHeader .mobile-menu-btn,
.mainHeader .mobile-menu-close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--theme-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainHeader .mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 390px;
  height: 100dvh;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  background: var(--theme-white);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mainHeader.menu-open .mobile-sidebar {
  transform: translateX(0);
}
.mainHeader .mobile-sidebar-head {
  padding: 17px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid #e7ebef;
}
.mainHeader .mobile-sidebar-head img {
  width: 130px;
}
.mainHeader .mobile-sidebar-body {
  flex: 1;
  padding: 8px 20px 25px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mainHeader .mobile-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mainHeader .mobile-nav > li {
  border-bottom: 1px solid #e9edf1;
}
.mainHeader .mobile-nav a,
.mainHeader .mobile-nav button {
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--theme-black);
  text-decoration: none;
  text-align: left;
}
.mainHeader .mobile-nav button i {
  transition: transform 0.3s ease;
}
.mainHeader .mobile-nav .has-submenu > ul {
  display: none;
  margin: 0;
  padding: 0 0 12px 15px;
  list-style: none;
}
.mainHeader .mobile-nav .has-submenu.open > ul {
  display: block;
}
.mainHeader .mobile-nav .has-submenu.open > button {
  color: var(--theme-blue);
}
.mainHeader .mobile-nav .has-submenu.open > button i {
  transform: rotate(180deg);
}
.mainHeader .mobile-nav .has-submenu ul a {
  padding: 9px 0;
  color: #626d78;
}
.mainHeader .mobile-rfq {
  width: 100%;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mainHeader .mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.mainHeader.menu-open .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}
body.mobile-menu-active {
  overflow: hidden;
}
@media (min-width: 992px) {
  .mainHeader .mobile-sidebar,
  .mainHeader .mobile-menu-overlay {
    display: none;
  }
}
@media (max-width: 991px) {
  .mainHeader nav {
    padding: 10px 15px;
  }
  .mainHeader .navbar-brand img {
    width: 125px;
  }
}
@media (max-width: 480px) {
  .mainHeader .mobile-sidebar {
    width: 92%;
  }
  .mainHeader .mobile-sidebar-head,
  .mainHeader .mobile-sidebar-body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.testing-gallery {
  margin-bottom: 50px;
}
.testing-gallery .item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.testing-gallery .img-placeholder {
  min-height: 250px;
}
.testing-gallery .item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: rgba(5, 29, 63, 0.88);
  color: var(--theme-white);
  text-align: center;
  font-weight: 600;
}
.quality-process {
  margin: 80px 0;
}
.quality-process-box {
  overflow: hidden;
  background: #061d3d;
  border-radius: 10px;
  color: var(--theme-white);
}
.quality-process .left-side,
.quality-process .right-side {
  height: 100%;
}
.quality-process .left-side {
  padding: 28px;
}
.quality-process .left-side h3 {
  margin: 0;
}
.quality-process .title-line,
.quality-process .small-line {
  display: block;
  width: 45px;
  height: 2px;
  margin-top: 10px;
  background: var(--theme-blue);
}
.quality-process .step {
  position: relative;
  text-align: center;
  padding: 10px 12px;
}
.quality-process .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -50%;
  width: 100%;
  border-top: 2px dotted rgba(255, 255, 255, 0.35);
}
.quality-process .icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-blue);
  font-size: 28px;
}
.quality-process .step > span {
  display: block;
  margin-bottom: 4px;
  color: var(--theme-blue);
  font-weight: 700;
}
.quality-process .step h5 {
  margin: 0 0 8px;
  color: var(--theme-white);
}
.quality-process .step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 14px;
}
.quality-process .right-side {
  position: relative;
  min-height: 300px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.quality-process .right-side .content {
  position: relative;
  z-index: 2;
  padding: 55px 30px;
  color: #111;
}
.quality-process .right-side .content p {
  color: #111;
}
.quality-process .right-side h3 {
  margin: 0 0 14px;
}
.quality-process .right-side h3 span {
  display: block;
  color: var(--theme-blue);
}
.quality-process .right-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.quality-process .right-side .image {
  position: absolute;
  inset: 0;
}

@media (max-width: 991px) {
  .quality-process .right-side {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .quality-process .step:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .quality-process .left-side {
    padding: 22px 18px;
  }
  .quality-process .right-side .content {
    padding: 35px 22px;
  }
}
.bread-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: var(--theme-white);
}
.bread-content h1 {
  font-weight: 700;
  letter-spacing: 1.1px;
}
.bread-content .anchors {
  font-size: 14px;
  font-weight: 0.8px;
}
.bread-content .anchors span {
  margin: 5px;
  font-size: 10px;
}
.innotrans-content {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

.event-label {
  display: block;
  margin-bottom: 10px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: #1d83db;
}

.innotrans-content h1 {
  margin: 0;

  font-size: 68px;
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -2px;
}

.innotrans-content h1 span {
  display: block;

  margin-top: 14px;

  font-size: 72px;
  font-weight: 800;

  color: #0875d1;
}

.event-location {
  margin-top: 26px;
  padding-left: 16px;

  border-left: 3px solid #0875d1;
}

.event-location strong {
  display: block;

  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.event-location span {
  display: block;
  margin-top: 4px;

  font-size: 17px;
  font-weight: 500;

  color: #1384df;
}

.event-date {
  margin-top: 18px;

  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;

  color: rgba(255, 255, 255, 0.88);
}

.event-btn {
  display: inline-flex;
  align-items: center;

  margin-top: 28px;
  padding: 12px 22px;

  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;

  color: #fff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;

  background: rgba(8, 117, 209, 0.15);
  backdrop-filter: blur(6px);

  transition: 0.3s ease;
}

.event-btn:hover {
  background: #0875d1;
  border-color: #0875d1;
}
.hero-proof-strip {
  background: var(--theme-white);
  border-bottom: 1px solid #e8edf2;
}

.hero-proof-strip .proof-wrap {
  display: flex;
  align-items: center;
  justify-content: center;

  overflow-x: auto;
  scrollbar-width: none;

  padding: 22px 20px;
}

.hero-proof-strip .proof-wrap::-webkit-scrollbar {
  display: none;
}

.hero-proof-strip .proof-wrap > div {
  position: relative;

  flex: 0 0 auto;

  padding: 0 28px;

  display: flex;
  align-items: center;
  gap: 6px;

  white-space: nowrap;
}

.hero-proof-strip .proof-wrap > div:not(:last-child)::after {
  content: "";

  position: absolute;
  right: 0;
  top: 50%;

  width: 1px;
  height: 22px;

  background: #dce2e8;

  transform: translateY(-50%);
}

.hero-proof-strip strong {
  color: var(--theme-blue);
  font-weight: 700;
}

.hero-proof-strip span {
  color: #69737e;
}

.hero-proof-strip .proof-wrap > div:nth-last-child(-n + 2) strong {
  color: var(--theme-black);
}

@media (max-width: 991px) {
  .hero-proof-strip .proof-wrap {
    justify-content: flex-start;
    padding: 18px 10px;
  }

  .hero-proof-strip .proof-wrap > div {
    padding: 0 20px;
  }
}
.social-fixed {
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;

  background: var(--theme-white);
  border: 1px solid #e4e9ef;
  border-radius: 8px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

.social-fixed a {
  position: relative;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--theme-blue);
  text-decoration: none;

  transition: 0.3s ease;
}

.social-fixed a:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 1px;
  background: #e7ebef;
}

.social-fixed a:hover {
  background: var(--theme-blue);
  color: var(--theme-white);
}

@media (max-width: 991px) {
  .social-fixed {
    display: none;
  }
}
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.coming-soon-sec {
  min-height: 65vh;
  padding: 80px 0;

  display: flex;
  align-items: center;

  background: #f7f9fc;
}

.coming-soon-sec .coming-soon-box {
  max-width: 700px;
  margin: auto;
  padding: 60px 40px;

  text-align: center;

  background: var(--theme-white);
  border: 1px solid #e3e8ee;
  border-radius: 10px;
}

.coming-soon-sec .coming-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--theme-blue);
  background: #eef5fc;
  border-radius: 50%;
}

.coming-soon-sec .coming-soon-box > span {
  display: block;
  margin-bottom: 8px;

  color: var(--theme-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.coming-soon-sec h1 {
  margin-bottom: 15px;
  color: var(--theme-black);
}

.coming-soon-sec p {
  max-width: 500px;
  margin: 0 auto 25px;

  color: #66717d;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .coming-soon-sec {
    min-height: 60vh;
    padding: 50px 0;
  }

  .coming-soon-sec .coming-soon-box {
    padding: 40px 20px;
  }
}

.whatsapp-fixed {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  font-size: 32px;
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25d366;
  color: #fff;

  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.whatsapp-fixed:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .whatsapp-fixed {
    right: 15px;
    bottom: 15px;

    width: 50px;
    height: 50px;
  }
}
.award-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.award-section .content  {
  color: var(--theme-white);
}
.award-section .content span {
  display: block;
  margin-bottom: 8px;
    color: var(--theme-blue);
    font-weight: 700;
    text-transform: uppercase;
}

.award-section h2 {
    margin-bottom: 12px;
}

.award-section p {
  margin: 0;
    line-height: 1.7;
  }
  .award-section .content img {
    margin-top: 30px;
    max-width: 150px;
  }
  .product-item.img {
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: all .3s ease ;
}

.product-item.img img {
  width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    transition: all .3s ease ;
    cursor: pointer;
  }
  .product-item.img:hover {
    border: 1px solid var(--theme-blue);
  }
  .product-item.img:hover img {
    transform: scale(1.1);
  }
  .thankyou-section {
    display: flex;
    align-items: center;
    background: url('../images/thankyou-bg.png') center center / cover no-repeat;
    padding: 80px 0;
}

.thankyou-box {
    max-width: 700px;
    margin: auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #e5edf6;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 68, 140, 0.08);
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-blue);
    color: var(--theme-white);
    font-size: 28px;
}

.thankyou-box > span {
    display: block;
    margin-bottom: 10px;
    color: var(--theme-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thankyou-box h1 {
    margin-bottom: 15px;
    color: var(--theme-black);
}

.thankyou-box p {
    margin: 0 auto 25px;
    color: #66717d;
    line-height: 1.7;
}

.thankyou-actions {
    display: flex;
    justify-content: center;
}

.seo-content-section {
    background: #f7f9fc;
}

.seo-about {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.seo-about h2,
.seo-block > h3 {
    color: var(--theme-black);
    margin-bottom: 15px;
}

.seo-about h5 {
    color: var(--theme-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.seo-about > p,
.seo-block > p {
    color: #66717d;
    line-height: 1.8;
}

.seo-highlight-card,
.seo-card {
    height: 100%;
    background: var(--theme-white);
    border: 1px solid #e5eaf0;
    border-radius: 10px;
    padding: 24px;
    transition: 0.3s ease;
}

.seo-highlight-card:hover,
.seo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 43, 92, 0.08);
}

.seo-highlight-card {
    position: relative;
    overflow: hidden;
}

.seo-highlight-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--theme-blue);
}

.seo-highlight-card p,
.seo-card p {
    margin: 0;
    color: #66717d;
    line-height: 1.7;
}

.seo-highlight-card strong,
.seo-card strong,
.seo-list strong {
    color: var(--theme-black);
}

.seo-block {
    background: var(--theme-white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e8edf3;
}

.seo-card h4 {
    color: var(--theme-blue);
    margin-bottom: 15px;
}

.seo-card ul,
.seo-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.seo-card ul li,
.seo-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #66717d;
    line-height: 1.7;
}

.seo-card ul li:last-child,
.seo-list li:last-child {
    margin-bottom: 0;
}

.seo-card ul li::before,
.seo-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--theme-blue);
}

.seo-block:nth-of-type(3) .seo-card {
    border-top: 3px solid var(--theme-blue);
}

.seo-block:nth-of-type(4),
.seo-block:nth-of-type(5) {
    background: #f1f6fb;
}

@media (max-width: 991px) {
    .seo-block {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .seo-about {
        text-align: left !important;
    }

    .seo-content-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .seo-block {
        padding: 25px 20px;
    }

    .seo-highlight-card,
    .seo-card {
        padding: 20px;
    }
}