* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

body {
  font-family: var(--theme-font);
  box-sizing: border-box;
}

:root {
  --theme-color: #0075b1;
  --theme-color2: #fefaf7;
  --theme-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --letter-spacing: -2px;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: #212121;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--theme-font);
}

.darkbg {
  background-color: #1d1f22;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 300;
}

.theme-color {
  color: var(--theme-color);
  font-family: inherit;
}

section {
  overflow: hidden;
}

.theme-color2 {
  color: var(--theme-color2);
  font-family: inherit;
}

.common-img {
  border: solid 1px #000;
  padding: 10px;
}

.title-des {
  text-transform: uppercase;
  font-weight: 600;
  color: #a5a5a5;
  padding: 4px 16px 4px 16px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-radius: 25px;
  display: block;
  font-size: 14px;
  margin-bottom: 11px;
  width: -moz-fit-content;
  width: fit-content;
}

ul li {
  color: #212121;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

.common-heading {
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.15;
  font-weight: 600;
  color: #1d1f22;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--theme-font);
}
.common-heading span {
  color: var(--theme-color);
  position: relative;
  display: inline-block;
}
.common-heading.with-line {
  padding-bottom: 20px;
}
.common-heading.with-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 2px;
}

.common-before img {
  max-width: 100px;
  margin-bottom: 1.2rem;
}

.common-bg {
  background-color: var(--theme-color);
}

.common-space {
  padding: 60px 0;
}

.common-btn {
  background-color: var(--theme-color);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-weight: 300;
  text-transform: uppercase;
  border: solid 1px #ddd;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
  border: solid 1px var(--theme-color);
  border-radius: 0px;
}
.common-btn:hover {
  background-color: transparent;
  color: var(--theme-color);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
header.sticky {
  box-shadow: 1px 6px 12px -12px #000;
}
header.sticky .navbar-brand img {
  max-width: 85px;
}
header .navbar-brand {
  background-color: #fff;
  padding: 4px;
  border-radius: 0 0 8px 8px;
}
header .navbar-brand img {
  max-width: 115px;
  transition: all 0.3s;
}
header nav {
  padding: 0 0 !important;
  transition: all 0.3s;
}
header nav.bg-body-tertiary {
  background-color: transparent !important;
}
header nav .navbar-nav li {
  padding-left: 1rem;
}
header nav .navbar-nav li a {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  color: #fff;
  text-transform: uppercase;
}
header nav .navbar-nav li a:hover {
  color: var(--theme-color);
}
header nav .navbar-nav li .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
}
header nav .navbar-nav li .dropdown-menu li {
  padding-left: 0;
}
header nav .navbar-nav li .dropdown-menu li a {
  background-color: var(--theme-color);
  color: #fff;
  padding: 1rem;
  border-bottom: solid 1px #c58637;
}
header nav .navbar-nav li .dropdown-menu li a:focus {
  background-color: var(--theme-color);
  color: #fff;
}
header nav .navbar-nav li .dropdown-menu li a:hover {
  background-color: #8f621b;
  color: #fff;
}
header nav .navbar-nav li .dropdown-menu li a:active {
  background-color: var(--theme-color);
  color: #fff;
}
header nav .navbar-nav li.dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: #fff;
}

.hero-slider-section {
  position: relative;
  overflow: hidden;
}
.hero-slider-section .hero-overlay {
  width: 100%;
  padding-top: 7rem;
}
.hero-slider-section .hero-carousel .item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slider-section .hero-carousel .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(2, 27, 71, 0.78) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.hero-slider-section .hero-carousel .item .hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  color: #fff;
}
.hero-slider-section .hero-carousel .item .hero-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: block;
}
.hero-slider-section .hero-carousel .item .hero-content h1 {
  font-size: 62px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}
.hero-slider-section .hero-carousel .item .hero-content h1 span {
  color: var(--theme-color);
}
.hero-slider-section .hero-carousel .item .hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
}
.hero-slider-section .hero-carousel .item .hero-content .hero-btns {
  display: flex;
  gap: 15px;
}
.hero-slider-section .hero-carousel .item .hero-content .hero-btns .common-btn.outline {
  background: transparent;
  border: 1px solid #fff;
}
.hero-slider-section .hero-carousel .item .hero-content .hero-btns .common-btn.outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.hero-slider-section .hero-carousel .owl-dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-slider-section .hero-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  display: block;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.hero-slider-section .hero-carousel .owl-dots .owl-dot.active span {
  width: 35px;
  background: var(--theme-color);
}
.hero-slider-section .owl-item.active .hero-content h5 {
  animation: fadeInUp 0.8s both 0.2s;
}
.hero-slider-section .owl-item.active .hero-content h1 {
  animation: fadeInUp 0.8s both 0.4s;
}
.hero-slider-section .owl-item.active .hero-content p {
  animation: fadeInUp 0.8s both 0.6s;
}
.hero-slider-section .owl-item.active .hero-content .hero-btns {
  animation: fadeInUp 0.8s both 0.8s;
}

.blueprint-section {
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  overflow: hidden;
}
.blueprint-section .common-heading {
  color: #fff;
}
.blueprint-section .common-heading span {
  color: #fff;
}
.blueprint-section .stat-block {
  padding: 20px 0;
}
.blueprint-section .stat-block .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 5px;
}
.blueprint-section .stat-block .letter-spacing-2 {
  letter-spacing: 2px;
  color: #666;
}
.blueprint-section .left-why-wrapper {
  padding-top: 70px;
  padding-bottom: 70px;
}
.blueprint-section .center-content-wrap {
  height: 100%;
  background-color: var(--theme-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 40px;
}
.blueprint-section .center-content-wrap .image-reveal-container {
  position: relative;
  margin: 0 auto;
  max-width: 90%;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.blueprint-section .center-content-wrap .image-reveal-container .reveal-img {
  transform: scale(1.1);
  transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.blueprint-section .center-content-wrap .image-reveal-container:hover .reveal-img {
  transform: scale(1);
}
.blueprint-section .center-content-wrap .floating-caption {
  margin-top: 30px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.blueprint-section .center-content-wrap .floating-caption p {
  font-size: 16px;
  line-height: 1.6em;
  font-style: italic;
  color: #fff;
}
.blueprint-section .feature-steps {
  padding-top: 70px;
  padding-bottom: 70px;
}
.blueprint-section .feature-steps .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  position: relative;
}
.blueprint-section .feature-steps .step-item .step-num {
  font-size: 14px;
  font-weight: 900;
  color: var(--theme-color);
  margin-right: 20px;
  padding-top: 5px;
  border-top: 2px solid var(--theme-color);
}
.blueprint-section .feature-steps .step-item .step-info h4 {
  font-size: 18px;
  font-weight: 800;
  color: #1d1f22;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.blueprint-section .feature-steps .step-item .step-info p {
  font-size: 15px;
  color: #777;
  line-height: 1.6em;
  margin: 0;
}
.blueprint-section .feature-steps .step-item:hover .step-num {
  background: var(--theme-color);
  color: #fff;
  padding: 5px 10px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .blueprint-section .border-end {
    border: none !important;
  }
  .blueprint-section .stat-block {
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .blueprint-section .feature-steps {
    margin-top: 60px;
    padding-left: 0;
  }
}
.films-category-section {
  background-image: linear-gradient(45deg, #01142b, rgba(2, 40, 63, 0.8901960784)), url(img/bnr4.jpg);
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.films-category-section .max-w-400 {
  max-width: 400px;
}
.films-category-section .film-pane {
  position: relative;
  height: 550px;
  overflow: hidden;
  background: #000;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.films-category-section .film-pane .pane-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.films-category-section .film-pane .pane-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: 0.8s ease;
}
.films-category-section .film-pane .pane-img .pane-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
}
.films-category-section .film-pane .pane-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.films-category-section .film-pane .pane-content .pane-num {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 0.8;
  transition: 0.4s;
}
.films-category-section .film-pane .pane-content h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.films-category-section .film-pane .pane-content h3 span {
  display: block;
  color: var(--theme-color);
}
.films-category-section .film-pane .pane-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6em;
  margin-bottom: 30px;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease;
  opacity: 0;
}
.films-category-section .film-pane .pane-content .explore-btn {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  transition: 0.3s;
}
.films-category-section .film-pane .pane-content .explore-btn i {
  font-size: 10px;
  transition: transform 0.3s;
}
.films-category-section .film-pane.active, .films-category-section .film-pane:hover {
  border-color: var(--theme-color);
  transform: translateY(-10px);
}
.films-category-section .film-pane.active .pane-img img, .films-category-section .film-pane:hover .pane-img img {
  filter: grayscale(0%);
  opacity: 0.8;
  transform: scale(1.1);
}
.films-category-section .film-pane.active .pane-content .pane-num, .films-category-section .film-pane:hover .pane-content .pane-num {
  color: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}
.films-category-section .film-pane.active .pane-content p, .films-category-section .film-pane:hover .pane-content p {
  max-height: 100px;
  opacity: 1;
  margin-bottom: 30px;
}
.films-category-section .film-pane.active .pane-content .explore-btn, .films-category-section .film-pane:hover .pane-content .explore-btn {
  opacity: 1;
  color: var(--theme-color);
}
.films-category-section .film-pane.active .pane-content .explore-btn i, .films-category-section .film-pane:hover .pane-content .explore-btn i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .films-category-section .film-pane {
    height: 400px;
  }
  .films-category-section .film-pane .pane-content p {
    max-height: 100px;
    opacity: 1;
  }
}
.light-blueprint-cta {
  position: relative;
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}
.light-blueprint-cta .technical-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#f5f5f5 1px, transparent 1px), linear-gradient(90deg, #f5f5f5 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}
.light-blueprint-cta .cta-text-content h2 {
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}
.light-blueprint-cta .cta-text-content .lead-text {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  line-height: 1.6em;
}
.light-blueprint-cta .blueprint-btn {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--theme-color);
  padding: 30px 45px;
  text-align: left;
  position: relative;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 12px 12px 0px var(--theme-color);
}
.light-blueprint-cta .blueprint-btn .top-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 8px;
}
.light-blueprint-cta .blueprint-btn .btn-label {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #1d1f22;
  text-transform: uppercase;
  line-height: 1;
}
.light-blueprint-cta .blueprint-btn .btn-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--theme-color);
  font-size: 18px;
  transition: 0.3s;
}
.light-blueprint-cta .blueprint-btn:hover {
  box-shadow: 0px 0px 0px var(--theme-color);
  transform: translate(8px, 8px);
  background: #fcfcfc;
}
.light-blueprint-cta .blueprint-btn:hover .btn-arrow {
  transform: scale(1.2) translateX(5px);
}
.light-blueprint-cta .scanning-bar {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
  opacity: 0.2;
  animation: scanAnimation 8s linear infinite;
  z-index: 1;
}

@keyframes scanAnimation {
  0% {
    top: -10%;
  }
  100% {
    top: 110%;
  }
}
@media (max-width: 991px) {
  .light-blueprint-cta {
    text-align: center;
  }
  .light-blueprint-cta .action-card-wrap {
    margin-top: 50px;
    text-align: center;
  }
  .light-blueprint-cta .blueprint-btn {
    width: 100%;
    box-shadow: 8px 8px 0px var(--theme-color);
  }
}
.support-structural-section {
  position: relative;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}
.support-structural-section .support-sidebar {
  position: sticky;
  top: 120px;
}
.support-structural-section .support-sidebar .status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}
.support-structural-section .support-sidebar .status-indicator .dot {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
  animation: pulseGreen 2s infinite;
}
.support-structural-section .support-sidebar .status-indicator .status-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1d1f22;
}
.support-structural-section .support-modules-wrapper .support-module {
  padding: 40px;
  border: 1px solid #eee;
  margin-bottom: -1px;
  position: relative;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.support-structural-section .support-modules-wrapper .support-module .module-meta {
  position: absolute;
  top: 15px;
  left: 40px;
  display: flex;
  gap: 20px;
}
.support-structural-section .support-modules-wrapper .support-module .module-meta span {
  font-size: 10px;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 1px;
}
.support-structural-section .support-modules-wrapper .support-module .module-meta span.code {
  color: var(--theme-color);
}
.support-structural-section .support-modules-wrapper .support-module .module-body {
  max-width: 80%;
}
.support-structural-section .support-modules-wrapper .support-module .module-body h4 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 5px;
  color: #1d1f22;
}
.support-structural-section .support-modules-wrapper .support-module .module-body p {
  font-size: 15px;
  line-height: 1.6em;
  color: #666;
  margin: 0;
}
.support-structural-section .support-modules-wrapper .support-module .module-icon {
  font-size: 40px;
  color: #f0f0f0;
  transition: 0.4s;
}
.support-structural-section .support-modules-wrapper .support-module.active, .support-structural-section .support-modules-wrapper .support-module:hover {
  background: #fcfcfc;
  border-left: 5px solid var(--theme-color);
  padding-left: 35px;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}
.support-structural-section .support-modules-wrapper .support-module.active .module-body h4, .support-structural-section .support-modules-wrapper .support-module:hover .module-body h4 {
  color: var(--theme-color);
}
.support-structural-section .support-modules-wrapper .support-module.active .module-icon, .support-structural-section .support-modules-wrapper .support-module:hover .module-icon {
  color: var(--theme-color);
  opacity: 0.1;
  transform: scale(1.2) rotate(-10deg);
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}
@media (max-width: 991px) {
  .support-structural-section .border-end {
    border: none !important;
  }
  .support-structural-section .support-module {
    flex-direction: column;
    align-items: flex-start;
  }
  .support-structural-section .support-module .module-body {
    max-width: 100%;
  }
  .support-structural-section .support-module .module-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
}
.testimonial-verification-section {
  background: #01182f;
  position: relative;
}
.testimonial-verification-section .title-des {
  margin-left: auto;
  margin-right: auto;
}
.testimonial-verification-section .verification-line {
  width: 60px;
  height: 3px;
  background: var(--theme-color);
  border-radius: 10px;
}
.testimonial-verification-section .verification-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  position: relative;
  transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  height: 100%;
  margin: 15px;
}
.testimonial-verification-section .verification-card .card-brackets span {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(0, 117, 177, 0.3);
  transition: 0.4s;
}
.testimonial-verification-section .verification-card .card-brackets span:nth-child(1) {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.testimonial-verification-section .verification-card .card-brackets span:nth-child(2) {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}
.testimonial-verification-section .verification-card .card-brackets span:nth-child(3) {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}
.testimonial-verification-section .verification-card .card-brackets span:nth-child(4) {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}
.testimonial-verification-section .verification-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.testimonial-verification-section .verification-card .card-meta .status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #28a745;
  letter-spacing: 1px;
}
.testimonial-verification-section .verification-card .card-meta .status i {
  margin-right: 5px;
}
.testimonial-verification-section .verification-card .card-meta .rating {
  color: #ffc107;
  font-size: 12px;
}
.testimonial-verification-section .verification-card .card-body p {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6em;
  margin: 0;
}
.testimonial-verification-section .verification-card .card-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}
.testimonial-verification-section .verification-card .card-footer .name {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.testimonial-verification-section .verification-card .card-footer .position {
  font-size: 13px;
  color: var(--theme-color);
  font-weight: 600;
}
.testimonial-verification-section .verification-card .card-footer .report-id {
  font-size: 10px;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
}
.testimonial-verification-section .verification-card:hover, .testimonial-verification-section .verification-card.active {
  background: rgba(0, 117, 177, 0.05);
  border-color: rgba(0, 117, 177, 0.3);
  transform: scale(1.02);
}
.testimonial-verification-section .verification-card:hover .card-brackets span, .testimonial-verification-section .verification-card.active .card-brackets span {
  width: 25px;
  height: 25px;
  border-color: var(--theme-color);
}
.testimonial-verification-section .verification-card:hover::before, .testimonial-verification-section .verification-card.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--theme-color);
  box-shadow: 0 0 15px var(--theme-color);
  animation: cardScan 3s linear infinite;
}

@keyframes cardScan {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.testimonial-verification-section .owl-dots {
  margin-top: 40px;
}
.testimonial-verification-section .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.1) !important;
}
.testimonial-verification-section .owl-dots .owl-dot.active span {
  background: var(--theme-color) !important;
}

.technical-archive-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.technical-archive-section .tech-archive-card {
  background: #f8f9fa;
  padding: 50px 40px 40px;
  border: 1px solid #eee;
  position: relative;
  height: 100%;
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  clip-path: polygon(0% 0%, 70% 0%, 75% 8%, 100% 8%, 100% 100%, 0% 100%);
}
.technical-archive-section .tech-archive-card .card-tab {
  position: absolute;
  top: 15px;
  left: 40px;
  font-size: 10px;
  font-weight: 800;
  color: #bbb;
  letter-spacing: 2px;
}
.technical-archive-section .tech-archive-card .bg-ghost-text {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 100px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1;
  transition: 0.5s;
}
.technical-archive-section .tech-archive-card .card-content {
  position: relative;
  z-index: 2;
}
.technical-archive-section .tech-archive-card .card-content .tech-code {
  display: block;
  font-family: monospace;
  color: var(--theme-color);
  font-size: 12px;
  margin-bottom: 15px;
  background: rgba(0, 117, 177, 0.05);
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 2px;
}
.technical-archive-section .tech-archive-card .card-content h4 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1d1f22;
  margin-bottom: 20px;
  line-height: 1.2;
}
.technical-archive-section .tech-archive-card .card-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6em;
  margin-bottom: 40px;
}
.technical-archive-section .tech-archive-card .card-content .download-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 20px;
  text-decoration: none;
  transition: 0.3s;
}
.technical-archive-section .tech-archive-card .card-content .download-trigger .txt {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1d1f22;
  letter-spacing: 1px;
}
.technical-archive-section .tech-archive-card .card-content .download-trigger .icon {
  color: var(--theme-color);
  font-size: 18px;
}
.technical-archive-section .tech-archive-card .card-content .download-trigger:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
.technical-archive-section .tech-archive-card .card-content .download-trigger:hover .txt, .technical-archive-section .tech-archive-card .card-content .download-trigger:hover .icon {
  color: #fff;
}
.technical-archive-section .tech-archive-card.active, .technical-archive-section .tech-archive-card:hover {
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
  border-color: var(--theme-color);
}
.technical-archive-section .tech-archive-card.active .bg-ghost-text, .technical-archive-section .tech-archive-card:hover .bg-ghost-text {
  color: rgba(0, 117, 177, 0.08);
  transform: scale(1.1);
}
.technical-archive-section .tech-archive-card.active .download-trigger, .technical-archive-section .tech-archive-card:hover .download-trigger {
  border-color: var(--theme-color);
}

@media (max-width: 991px) {
  .technical-archive-section .tech-archive-card {
    margin-bottom: 20px;
    clip-path: none;
    padding: 40px 30px;
  }
}
.industrial-footer {
  background: #090b0c;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.industrial-footer .menu-footer-menu-container ul {
  padding-left: 0;
}
.industrial-footer .footer-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 117, 177, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.industrial-footer .border-end-blueprint {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.industrial-footer .meta-tag, .industrial-footer .column-label, .industrial-footer .label {
  font-size: 11px;
  font-weight: 800;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}
.industrial-footer .column-label {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--theme-color);
  width: -moz-fit-content;
  width: fit-content;
}
.industrial-footer .footer-logo {
  width: 150px;
  filter: brightness(0) invert(1);
}
.industrial-footer .footer-links ul li {
  margin-bottom: 15px;
}
.industrial-footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.industrial-footer .footer-links ul li a .code {
  font-size: 9px;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.2);
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 5px;
}
.industrial-footer .footer-links ul li a:hover {
  color: var(--theme-color);
  padding-left: 10px;
}
.industrial-footer .footer-links ul li a:hover .code {
  border-color: var(--theme-color);
  color: var(--theme-color);
}
.industrial-footer .contact-item .label {
  color: rgba(255, 255, 255, 0.3);
}
.industrial-footer .social-tech-links {
  display: flex;
  gap: 15px;
}
.industrial-footer .social-tech-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
  border: 1px solid transparent;
}
.industrial-footer .social-tech-links a:hover {
  background: var(--theme-color);
  border-color: #fff;
  transform: translateY(-5px);
}
.industrial-footer .footer-bottom .system-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 15px;
  border-radius: 100px;
}
.industrial-footer .footer-bottom .system-status .status-dot {
  width: 6px;
  height: 6px;
  background: #28a745;
  border-radius: 50%;
  box-shadow: 0 0 10px #28a745;
}
.industrial-footer .footer-bottom .system-status .status-txt {
  font-family: monospace;
  font-size: 10px;
  color: #666;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .industrial-footer {
    padding-top: 60px;
    text-align: center;
  }
  .industrial-footer .border-end-blueprint {
    border: none !important;
    margin-bottom: 40px;
  }
  .industrial-footer .column-label {
    margin: 0 auto;
  }
  .industrial-footer .footer-links ul li a {
    justify-content: center;
  }
  .industrial-footer .social-tech-links {
    justify-content: center;
  }
  .industrial-footer .system-status {
    margin-top: 20px;
  }
}
header.sticky {
  background-color: #002d45;
}

/* --- Contact Page Interface --- */
.industrial-contact-page {
  background-color: #ffffff;
  position: relative;
}
.industrial-contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#f1f1f1 1px, transparent 1px), linear-gradient(90deg, #f1f1f1 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}
.industrial-contact-page .container {
  position: relative;
  z-index: 1;
}

.contact-data-sheet .contact-nodes .node-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}
.contact-data-sheet .contact-nodes .node-item .node-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border: 1px solid #0075b1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0075b1;
  font-size: 20px;
  flex-shrink: 0;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}
.contact-data-sheet .contact-nodes .node-item .node-text .label {
  display: block;
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: #0075b1;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-data-sheet .contact-nodes .node-item .node-text p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: #1d1f22;
}

.transmission-module {
  background: #1d1f22;
  padding: 50px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}
.transmission-module .module-header {
  margin-bottom: 30px;
}
.transmission-module .module-header .code {
  font-family: monospace;
  font-size: 10px;
  color: #0075b1;
  display: block;
}
.transmission-module .module-header h3 {
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.input-group-tech label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.input-group-tech input, .input-group-tech textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}
.input-group-tech input:focus, .input-group-tech textarea:focus {
  border-color: #0075b1;
  background: rgba(255, 255, 255, 0.08);
}
.input-group-tech textarea {
  height: 100px;
}

.industrial-submit {
  width: 100%;
  background: #0075b1;
  color: #ffffff;
  border: none;
  padding: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  cursor: pointer;
}
.industrial-submit:hover {
  background: #ffffff;
  color: #0075b1;
}
.industrial-submit:hover i {
  transform: translateX(5px);
}

.map-full-wrapper {
  position: relative;
  border: 1px solid #1d1f22;
  padding: 10px;
  background: #ffffff;
}
.map-full-wrapper .map-meta-tags {
  position: absolute;
  top: -12px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.map-full-wrapper .map-meta-tags .tag {
  background: #1d1f22;
  color: #0075b1;
  font-family: monospace;
  font-size: 10px;
  padding: 2px 10px;
  border: 1px solid #0075b1;
}
.map-full-wrapper iframe {
  filter: grayscale(1) contrast(1.1);
}

@media (max-width: 991px) {
  .transmission-module {
    padding: 30px;
  }
  .industrial-contact-page {
    padding: 60px 0;
  }
}
.blueprint-breadcrumb-area {
  background-color: #1d1f22;
  padding: 240px 0 100px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 117, 177, 0.3);
  border-bottom: 1px solid rgba(0, 117, 177, 0.3);
  color: #fff;
  background-image: linear-gradient(45deg, #01142b, rgba(2, 40, 63, 0.8901960784)), url(img/bnr4.jpg);
}
.blueprint-breadcrumb-area .breadcrumb-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 117, 177, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}
.blueprint-breadcrumb-area .container {
  position: relative;
  z-index: 2;
}
.blueprint-breadcrumb-area .breadcrumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .blueprint-breadcrumb-area .breadcrumb-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blueprint-breadcrumb-area .page-identity .id-tag {
  font-family: monospace;
  font-size: 10px;
  color: #0075b1;
  letter-spacing: 2px;
  margin-bottom: 5px;
  display: block;
}
.blueprint-breadcrumb-area .page-identity .page-title {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.5px;
}
.blueprint-breadcrumb-area .page-identity .page-title span {
  color: #0075b1;
}
.blueprint-breadcrumb-area .breadcrumb-navigation .path-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.blueprint-breadcrumb-area .breadcrumb-navigation .path-list .path-item {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.blueprint-breadcrumb-area .breadcrumb-navigation .path-list .path-item .num {
  font-family: monospace;
  font-size: 10px;
  color: #0075b1;
  border: 1px solid rgba(0, 117, 177, 0.3);
  padding: 1px 4px;
}
.blueprint-breadcrumb-area .breadcrumb-navigation .path-list .path-item .path-link {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
.blueprint-breadcrumb-area .breadcrumb-navigation .path-list .path-item .path-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
.blueprint-breadcrumb-area .breadcrumb-navigation .path-list .path-item.active {
  color: #ffffff;
}
.blueprint-breadcrumb-area .breadcrumb-navigation .path-list .path-item.active .num {
  background: #0075b1;
  color: #ffffff;
  border-color: #0075b1;
}
.blueprint-breadcrumb-area .breadcrumb-navigation .path-list .path-separator {
  color: rgba(0, 117, 177, 0.5);
  font-size: 10px;
}
.blueprint-breadcrumb-area .path-scanner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #0075b1;
  box-shadow: 0 0 10px #0075b1;
  animation: pathScan 6s linear infinite;
}

@keyframes pathScan {
  0% {
    left: -5%;
  }
  100% {
    left: 105%;
  }
}
.story-structural-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.story-structural-section::after {
  content: "HISTORY";
  position: absolute;
  bottom: -50px;
  left: -20px;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  z-index: 0;
  letter-spacing: -10px;
}

.story-content-box {
  position: relative;
  z-index: 2;
}
.story-content-box .narrative-text p {
  margin-bottom: 25px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}
.story-content-box .narrative-text p.lead-text {
  font-size: 20px;
  font-weight: 600;
  color: #1d1f22;
  line-height: 1.5;
  border-left: 4px solid #0075b1;
  padding-left: 20px;
}
.story-content-box .story-footer {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #eee;
  padding-top: 30px;
}
.story-content-box .story-footer .signature .label {
  font-family: monospace;
  font-size: 11px;
  color: #0075b1;
  text-transform: uppercase;
}
.story-content-box .story-footer .signature h5 {
  font-weight: 800;
  margin: 5px 0 0;
  color: #1d1f22;
}
.story-content-box .story-footer .origin-stamp {
  width: 80px;
  height: 80px;
  border: 1px dashed #0075b1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg);
}
.story-content-box .story-footer .origin-stamp span {
  font-size: 10px;
  font-weight: 900;
  color: #0075b1;
  text-align: center;
}

.story-image-frame {
  position: relative;
  padding: 20px;
  z-index: 2;
}
.story-image-frame .image-wrapper {
  position: relative;
  box-shadow: 0 50px 80px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.story-image-frame .image-wrapper img {
  width: 100%;
  transition: transform 0.8s ease;
}
.story-image-frame .image-wrapper .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 117, 177, 0.2), transparent);
  pointer-events: none;
}
.story-image-frame .image-wrapper:hover img {
  transform: scale(1.05);
}
.story-image-frame .frame-markers span {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #1d1f22;
  z-index: 3;
}
.story-image-frame .frame-markers span.mark-tl {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.story-image-frame .frame-markers span.mark-tr {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}
.story-image-frame .frame-markers span.mark-bl {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}
.story-image-frame .frame-markers span.mark-br {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}
.story-image-frame .image-metadata {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-family: monospace;
}
.story-image-frame .image-metadata .code {
  font-size: 10px;
  color: #0075b1;
  font-weight: 700;
}
.story-image-frame .image-metadata .desc {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .story-structural-section {
    padding: 60px 0;
  }
  .story-footer {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }
}
/* --- Product Catalog --- */
.product-catalog-section {
  background-color: #ffffff;
}

.filter-sidebar {
  border: 1px solid #eeeeee;
  background: #fdfdfd;
}
.filter-sidebar .sidebar-header {
  padding: 20px;
  background: #1d1f22;
  color: #fff;
}
.filter-sidebar .sidebar-header .code {
  font-family: monospace;
  font-size: 10px;
  color: #0075b1;
  display: block;
}
.filter-sidebar .sidebar-header h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.blueprint-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #eeeeee;
  background: transparent;
}
.blueprint-accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  color: #1d1f22;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  padding: 20px;
  box-shadow: none;
}
.blueprint-accordion .accordion-item .accordion-header .accordion-button::after {
  filter: grayscale(1);
  transform: scale(0.8);
}
.blueprint-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #0075b1;
}
.blueprint-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  filter: none;
}
.blueprint-accordion .accordion-item .accordion-body {
  padding: 0 20px 20px;
}
.blueprint-accordion .accordion-item .accordion-body .filter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blueprint-accordion .accordion-item .accordion-body .filter-list .filter-item {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.blueprint-accordion .accordion-item .accordion-body .filter-list .filter-item input[type=checkbox] {
  accent-color: #0075b1;
  width: 15px;
  height: 15px;
}
.blueprint-accordion .accordion-item .accordion-body .filter-list .filter-item:hover {
  color: #0075b1;
}

.product-card-tech {
  background: #ffffff;
  border: 1px solid #eeeeee;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-tech .card-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1d1f22;
  color: #0075b1;
  font-family: monospace;
  font-size: 9px;
  padding: 2px 6px;
  z-index: 2;
}
.product-card-tech .product-img {
  overflow: hidden;
  background: #f8f8f8;
}
.product-card-tech .product-img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card-tech .product-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card-tech .product-info h4 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #1d1f22;
}
.product-card-tech .product-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #777;
  margin-bottom: 20px;
}
.product-card-tech .product-info .view-product-btn {
  margin-top: auto;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: #0075b1;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.product-card-tech .product-info .view-product-btn i {
  transition: transform 0.3s;
}
.product-card-tech .product-info .view-product-btn:hover i {
  transform: translateX(5px);
}
.product-card-tech:hover {
  border-color: #0075b1;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.product-card-tech:hover .product-img img {
  transform: scale(1.1);
}

.blueprint-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
}
.blueprint-view-all .text {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1d1f22;
  transition: 0.3s;
}
.blueprint-view-all .line {
  height: 1px;
  flex-grow: 0;
  width: 50px;
  background: #dddddd;
  transition: 0.4s;
}
.blueprint-view-all:hover .text {
  color: #0075b1;
}
.blueprint-view-all:hover .line {
  width: 100px;
  background: #0075b1;
}

.results-count {
  font-family: monospace;
  font-size: 11px;
  color: #999;
}

/* --- Product Details Section --- */
.product-image-module .slider-main-wrap {
  position: relative;
  background: #fdfdfd;
}
.product-image-module .slider-main-wrap .slider-for .item img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-image-module .slider-main-wrap .corner-id {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #1d1f22;
  color: #0075b1;
  font-family: monospace;
  font-size: 10px;
  padding: 3px 10px;
  z-index: 5;
}
.product-image-module .slider-nav-wrap .slider-nav {
  margin: 0 -5px;
}
.product-image-module .slider-nav-wrap .slider-nav .thumb-item {
  padding: 0 5px;
  cursor: pointer;
  outline: none;
}
.product-image-module .slider-nav-wrap .slider-nav .thumb-item img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #eeeeee;
  transition: 0.3s;
  filter: grayscale(1);
}
.product-image-module .slider-nav-wrap .slider-nav .thumb-item.slick-current img {
  border-color: #0075b1;
  filter: grayscale(0);
}

.product-info-module .meta-header .category-tag {
  font-size: 12px;
  font-weight: 700;
  color: #0075b1;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 5px;
}
.product-info-module .meta-header .product-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #1d1f22;
  text-transform: uppercase;
  margin: 0;
}
.product-info-module .meta-header .product-main-title span {
  color: #0075b1;
}
.product-info-module .meta-header .sku-id {
  font-family: monospace;
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}
.product-info-module .product-description .lead {
  font-size: 18px;
  color: #1d1f22;
  font-weight: 500;
  border-left: 3px solid #0075b1;
  padding-left: 20px;
  margin-bottom: 30px;
}
.product-info-module .product-description p {
  color: #666;
  line-height: 1.8;
}

.product-details-section {
  background-color: #f8f9ff;
}
.product-details-section .accordion-item {
  margin-bottom: 15px;
  border: none !important;
  box-shadow: 0 0 48px -43px #000;
}
.product-details-section .accordion-item h4 {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 18px;
}
.product-details-section .accordion-button {
  font-weight: 600;
  font-size: 16px;
}
.product-details-section .accordion-button i {
  margin-right: 10px;
}
.product-details-section .product-tags ul {
  gap: 10px;
  padding-left: 0;
}
.product-details-section .product-tags ul li {
  margin-right: 10px;
  list-style: none;
  background-color: #e9e9e9;
  padding: 6px 14px;
  margin-bottom: 6px;
  display: inline-block;
  font-size: 14px;
}
.product-details-section .vlt-optionss h4 {
  font-size: 17px;
  font-weight: 500;
}
.product-details-section .vlt-optionss ul {
  gap: 10px;
  padding-left: 0;
}
.product-details-section .vlt-optionss ul li {
  list-style: none;
  background-color: #e9e9e9;
  padding: 6px 14px;
  margin-bottom: 6px;
  display: inline-block;
  font-size: 14px;
}

.product-tabs-sections .tabs-container .tabs .tab-btn {
  background-color: rgba(85, 85, 85, 0.2509803922);
  color: #353535;
  border: none;
  padding: 15px;
}
.product-tabs-sections .tabs-container .tabs .tab-btn.active {
  background-color: var(--theme-color);
  color: #fff;
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper .tab-content {
  padding-top: 15px;
  display: none;
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper .tab-content.active {
  display: block;
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper .tab-content form p {
  margin-bottom: 0;
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper .tab-content form br {
  display: none;
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper .tab-content form .wpcf7-list-item label {
  display: flex;
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper .tab-content form .wpcf7-list-item label input {
  width: 10px;
  margin-right: 5px;
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  border-top-width: var(--bs-border-width);
  border-right-width: var(--bs-border-width);
  border-left-width: var(--bs-border-width);
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper table {
  width: 100%;
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper table tr td {
  border: solid;
  border-width: var(--bs-border-width);
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper table tr th {
  border: solid;
  border-width: var(--bs-border-width);
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper table:not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}
.product-tabs-sections .tabs-container .tabs-content-wrtapper table > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

@media (max-width: 991px) {
  .product-image-module .slider-main-wrap .slider-for .item img {
    height: 350px;
  }
}
/* --- Distributor Network Section --- */
.distributor-listing-section {
  background-color: #f8f9fa;
  position: relative;
}

.network-utility-bar {
  background: #ffffff;
  padding: 20px 30px;
  border-left: 4px solid #0075b1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.network-utility-bar .search-box-tech {
  display: flex;
  background: #f1f1f1;
  border: 1px solid #eeeeee;
}
.network-utility-bar .search-box-tech input {
  border: none;
  background: transparent;
  padding: 10px 15px;
  flex-grow: 1;
  font-size: 14px;
  outline: none;
}
.network-utility-bar .search-box-tech button {
  background: #1d1f22;
  color: #0075b1;
  border: none;
  padding: 0 20px;
  transition: 0.3s;
}
.network-utility-bar .search-box-tech button:hover {
  color: #ffffff;
  background: #0075b1;
}

.distributor-card-box {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.distributor-card-box .card-tech-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #dddddd;
}
.distributor-card-box .card-tech-header .dist-id {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  letter-spacing: 1px;
}
.distributor-card-box .card-tech-header .status-dot {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}
.distributor-card-box .dist-info {
  margin-bottom: 30px;
}
.distributor-card-box .dist-info .area-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0075b1;
  background: rgba(0, 117, 177, 0.05);
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 10px;
}
.distributor-card-box .dist-info .dist-name {
  font-size: 20px;
  font-weight: 800;
  color: #1d1f22;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.distributor-card-box .dist-info .address-block {
  display: flex;
  gap: 12px;
}
.distributor-card-box .dist-info .address-block i {
  color: #0075b1;
  font-size: 14px;
  margin-top: 5px;
}
.distributor-card-box .dist-info .address-block p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.distributor-card-box .dist-contact-list {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid #f1f1f1;
}
.distributor-card-box .dist-contact-list .contact-node .label {
  display: block;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #bbb;
}
.distributor-card-box .dist-contact-list .contact-node p {
  font-size: 14px;
  font-weight: 600;
  color: #1d1f22;
  margin: 0;
}
.distributor-card-box .node-link-btn {
  margin-top: 20px;
  display: block;
  width: 100%;
  background: #f8f9fa;
  color: #1d1f22;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #eeeeee;
}
.distributor-card-box .node-link-btn:hover {
  background: #0075b1;
  color: #ffffff;
  border-color: #0075b1;
}
.distributor-card-box .node-link-btn:hover i {
  transform: translateX(5px);
}
.distributor-card-box .node-link-btn i {
  font-size: 10px;
  margin-left: 5px;
  transition: 0.3s;
}
.distributor-card-box:hover {
  transform: translateY(-10px);
  border-color: #0075b1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}
.distributor-card-box:hover .dist-name {
  color: #0075b1;
}

#popup {
  /* Overlay */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  /* Popup Box */
}
#popup .popup-box {
  background: #fff;
  padding: 25px;
  max-width: 400px;
  width: 90%;
  padding-bottom: 0;
  border-radius: 8px;
  position: relative;
}
#popup {
  /* Close Button */
}
#popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 30px;
}
#popup {
  /* Form */
}
#popup .popup-box input:not([type=submit]) {
  width: 100%;
  padding: 10px;
  color: #000;
  margin: 10px 0;
  border: 1px solid #ccc;
}
#popup .popup-box input:not([type=submit])::-moz-placeholder {
  color: #000;
}
#popup .popup-box input:not([type=submit])::placeholder {
  color: #000;
}
#popup .popup-box textarea {
  width: 100%;
  padding: 10px;
  color: #000;
  height: 100px;
  margin: 10px 0;
  border: 1px solid #ccc;
}
#popup .popup-box textarea::-moz-placeholder {
  color: #000;
}
#popup .popup-box textarea::placeholder {
  color: #000;
}
#popup .popup-box input[type=submit] {
  width: 100%;
  padding: 10px;
  background: black;
  color: #fff;
  border: none;
  cursor: pointer;
}
#popup br {
  display: none;
}

@media (max-width: 991px) {
  .distributor-card-box {
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */