/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  height: 80px;
  z-index: 9999;
  padding: 15px 0;
}

#header .logo img {
  max-height: 42px;
}

.header .logo {
  line-height: 1;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 28px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #0056b8;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 20px);
  margin: 0;
  padding: 10px 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown ul li {
  min-width: 220px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #111;
}

.navbar .dropdown ul .dropdown > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.navbar .dropdown ul .dropdown > a i {
  order: -1;
  margin: 0;
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul li:hover > a {
  color: #0056b8;
}

.navbar .dropdown ul .dropdown {
  position: relative;
}

.navbar .dropdown ul .dropdown > ul {
  top: 0;
  left: auto;
  right: calc(100% + 8px);
  visibility: hidden;
  opacity: 0;
}

.navbar .dropdown ul .dropdown:hover > ul {
  top: 0;
  left: auto;
  right: calc(100% + 8px);
  visibility: visible;
  opacity: 1;
}

.mobile-nav-toggle {
  color: #111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/* Footer brand text refinement */
.footer .footer-brand-text {
  max-width: 360px;
}

.footer .footer-tagline {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.footer .footer-brand-text p {
  color: #cfd3da;
  line-height: 1.75;
  margin: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  min-height: 680px;
  max-height: 900px;
  background-image: url("../img/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding-top: 70px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  overflow: visible;
}

#hero > img {
  display: none;
}

#hero::before,
.hero::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.42) 42%,
    rgba(0, 0, 0, 0.10) 100%
  );
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h2 {
  margin: 0;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.05;
  max-width: 620px;
  color: #fff;
}

#hero h3 {
  margin: 16px 0 0 0;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: #fff;
  max-width: 620px;
  margin: 18px 0 0 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
}

.hero h2,
.hero h3,
.hero p {
  color: #fff !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.hero-buttons .btn {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}


.dark-background {
  --background-color: #111;
  --default-color: #fff;
  --heading-color: #fff;
}


@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0056b8;
  content: "/";
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about.section-bg {
  position: relative;
  margin-top: -130px;
  padding: 180px 0 130px;
  overflow: visible;
  background: transparent;
  z-index: 3;
}

.about.section-bg::before {
  content: "";
  position: absolute;
  top: 70px;
  bottom: 60px;
  left: 0;
  right: 0;
  background: #111;
  transform: skewY(-3deg);
  z-index: 1;
}

.about.section-bg .container {
  position: relative;
  z-index: 2;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  color: #fff;
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff !important;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #0056b8;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #0056b8;
  color: #fff !important;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #0056b8;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #d0d0d0;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  border-radius: 4px;
}

.contact .info-box i {
  font-size: 32px;
  color: #0056b8;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #111111;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #0056b8;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #e35052;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# PRODUCTS
--------------------------------------------------------------*/
.products {
    background: #f8f9fa;
}

.products-spacer {
    height: 70px;
}

.products-hero {
    background: #f8f9fa;
    padding: 28px 0;
}

.products-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 8px;
}

.products-hero p {
    margin: 0;
    color: #6c757d;
}

.filter-box {
    position: static;
}

.product-card {
    transition: .2s ease;
    border: 1px solid #e6e6e6;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.product-img {
    height: 220px;
    object-fit: contain;
    background: #f8f9fa;
}

.spec-row {
    font-size: 14px;
}

.product-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    overflow: hidden;
    transition: all .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.product-img {
    height: 220px;
    object-fit: contain;
    background: #f8f9fa;
}

.spec-row {
    font-size: 14px;
}

.product-detail {
    padding-top: 120px;
    background: #f8f9fa;
}

.product-back-link {
    display: inline-block;
    color: #0d6efd;
    font-weight: 600;
}

.product-detail-image {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.product-detail-image img {
    width: 100%;
    display: block;
}

.product-detail h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.product-detail-specs {
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.selection-description {
    border-left: 4px solid #0d6efd;
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.selection-description + .selection-description {
    margin-top: -8px;
}

.selection-description-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-weight: 700;
    letter-spacing: 0;
}

.selection-description-title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0d6efd;
    flex: 0 0 auto;
}

.selection-description-text {
    color: #374151;
    line-height: 1.65;
}

.selection-description-text p:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .filter-box {
        position: static;
    }

    .product-img {
        height: 200px;
    }

    .product-detail h1 {
        font-size: 32px;
    }
}

/*--------------------------------------------------------------
# KNEXXONS Footer Override
--------------------------------------------------------------*/
.footer {
  background: #0f1115;
  color: #cfd3da;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer .footer-cta {
  background: linear-gradient(135deg, #0056b8 0%, #003b7e 100%);
  color: #fff;
  padding: 52px 0;
}

.footer .footer-cta h2 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}

.footer .footer-cta p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}

.footer .footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 28px;
  border-radius: 999px;
  background: #fff;
  color: #0056b8;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.footer .footer-cta-btn:hover {
  background: #101216;
  color: #fff;
}

.footer .footer-main {
  padding: 56px 0 44px;
  background: radial-gradient(circle at 20% 0%, rgba(0, 86, 184, 0.18), transparent 32%), #101216;
}

.footer .footer-logo img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 22px;
}

.footer .footer-brand p {
  color: #cfd3da;
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}

.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 22px;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 0;
  margin: 0 0 12px;
  display: block;
}

.footer .footer-links ul a {
  color: #cfd3da;
  line-height: 1.5;
}

.footer .footer-links ul a:hover {
  color: #0d6efd;
}

.footer .footer-contact p {
  margin: 0 0 18px;
  color: #cfd3da;
  line-height: 1.7;
}

.footer .footer-contact p span {
  display: block;
  color: #fff;
  font-weight: 800;
  margin-bottom: 4px;
}

.footer .footer-contact a {
  color: #cfd3da;
}

.footer .footer-contact a:hover {
  color: #0d6efd;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  margin: 0;
}

.footer .social-links a:hover {
  background: #0056b8;
  border-color: #0056b8;
  color: #fff;
}

.footer .footer-bottom {
  background: #0b0d10;
  color: #9aa3af;
  font-size: 13px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-bottom strong {
  color: #fff;
}

@media (max-width: 991px) {
  .footer .footer-cta {
    text-align: center;
  }

  .footer .footer-cta p {
    margin: 0 auto;
  }

  .footer .footer-logo img {
    width: 190px;
  }
}


/*--------------------------------------------------------------
# KNEXXONS Product Tabs Override
--------------------------------------------------------------*/
.tabs.section {
  background: #f6f8fb;
  padding: 95px 0;
  overflow: hidden;
}

.tabs .section-title {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.tabs .section-title h2 {
  color: #101216;
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.tabs .section-title p {
  color: #5f6877;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.tabs .nav-tabs {
  border: 0;
  margin: 0 0 42px;
}

.tabs .nav-tabs .nav-item {
  padding: 0;
}

.tabs .nav-tabs .nav-link {
  width: 100%;
  min-height: 92px;
  border: 1px solid #e4e8ef;
  border-radius: 18px;
  background: #fff;
  color: #101216;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}

.tabs .nav-tabs .nav-link i {
  padding: 0;
  font-size: 30px;
  line-height: 1;
  color: #0056b8;
  transition: all 0.25s ease;
}

.tabs .nav-tabs .nav-link h4 {
  color: #101216;
  font-family: "Raleway", sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  transition: all 0.25s ease;
}

.tabs .nav-tabs .nav-link:hover,
.tabs .nav-tabs .nav-link.active {
  background: #0056b8;
  border-color: #0056b8;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 86, 184, 0.22);
}

.tabs .nav-tabs .nav-link:hover i,
.tabs .nav-tabs .nav-link.active i,
.tabs .nav-tabs .nav-link:hover h4,
.tabs .nav-tabs .nav-link.active h4 {
  color: #fff;
}

.tabs .tab-content {
  margin-top: 0;
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.tabs .tab-pane h3 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}

.tabs .tabs-intro {
  height: 100%;
  min-height: 420px;
  padding: 34px;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 10%, rgba(0, 86, 184, 0.32), transparent 36%), linear-gradient(135deg, #101216 0%, #172033 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tabs .tabs-intro span {
  display: inline-block;
  color: #5aa2ff;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.tabs .tabs-intro p {
  color: rgba(255, 255, 255, 0.74);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.tabs .tabs-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.tabs .tabs-link:hover {
  background: #0056b8;
  border-color: #0056b8;
  color: #fff;
}

.tabs .tabs-product-card {
  height: 100%;
  display: flex;
  gap: 18px;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #edf0f5;
  border-radius: 20px;
  padding: 18px;
  color: #101216;
  transition: all 0.25s ease;
}

.tabs .tabs-product-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  color: #101216;
}

.tabs .tabs-product-image {
  width: 112px;
  height: 92px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8edf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.tabs .tabs-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.tabs .tabs-product-placeholder {
  color: #0056b8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.tabs .tabs-product-body h4 {
  color: #101216;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
}

.tabs .tabs-product-body p {
  color: #667085;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  margin: 0 0 12px;
}

.tabs .tabs-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tabs .tabs-specs span {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 86, 184, 0.08);
  color: #0056b8;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .tabs.section {
    padding: 75px 0;
  }

  .tabs .tab-content {
    padding: 24px;
  }

  .tabs .tabs-intro {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .tabs .nav-tabs .nav-link {
    min-height: 82px;
    padding: 16px;
  }

  .tabs .nav-tabs .nav-link i {
    font-size: 24px;
  }

  .tabs .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .tabs .tabs-product-card {
    display: block;
  }

  .tabs .tabs-product-image {
    width: 100%;
    height: 150px;
    margin-bottom: 16px;
  }
}
/*--------------------------------------------------------------
# Product Detail Page Refinement
--------------------------------------------------------------*/
.product-detail {
  padding: 120px 0 80px;
  background: #f6f8fb;
}

.product-detail h1 {
  color: #101216;
  font-family: "Raleway", sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 20px 0 22px;
}

.product-detail-image {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.product-detail-image img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.product-detail-specs {
  background: #fff;
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  margin-bottom: 20px;
}

.product-detail-specs ul {
  margin: 0;
  padding-left: 18px;
}

.product-detail-specs li {
  margin-bottom: 7px;
  line-height: 1.45;
}

.product-detail .datasheet-box,
.product-detail a[href$=".pdf"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 13px 24px;
  border-radius: 999px;
  background: #0056b8;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  box-shadow: 0 12px 28px rgba(0, 86, 184, 0.22);
}

.product-detail .datasheet-box:hover,
.product-detail a[href$=".pdf"]:hover {
  background: #003f8a;
  color: #fff !important;
  transform: translateY(-2px);
}

.product-detail .product-back-link {
  color: #0056b8;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

@media (max-width: 991px) {
  .product-detail {
    padding-top: 105px;
  }

  .product-detail h1 {
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services.section {
  position: relative;
  background: transparent;
  padding: 120px 0 145px;
  overflow: visible;
}

.services.section::before {
  content: "";
  position: absolute;
  top: 55px;
  bottom: 70px;
  left: 0;
  right: 0;
  background: #181818;
  transform: skewY(-3deg);
  z-index: 1;
}

.services.section .container {
  position: relative;
  z-index: 2;
}

.services .services-title h2 {
  color: #fff;
}

.services .services-title p {
  color: rgba(255,255,255,.76);
}

.services .service-item {
  height: 100%;
  gap: 28px;
  padding: 34px 36px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
}

.services .service-icon {
  width: 58px;
  flex: 0 0 58px;
}

.services .service-icon i {
  color: #0d6efd;
  font-size: 36px;
}

.services .service-item h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.services .service-item p {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}
 
/*--------------------------------------------------------------
# KNEXXONS Typography System
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title h2,
#hero h2,
#hero h3,
.about .content h3,
.about .icon-boxes .icon-box h4,
.tabs .section-title h2,
.tabs .nav-tabs .nav-link h4,
.tabs .tab-pane h3,
.tabs .tabs-product-body h4,
.services .services-title h2,
.services .service-item h3,
.contact .contact-title h2,
.contact .contact-info-panel h3,
.contact .contact-info-item h4,
.footer .footer-cta h2,
.footer h4,
.product-detail h1 {
  font-family: "Raleway", sans-serif !important;
}

p,
a,
li,
span,
input,
textarea,
button,
.navbar a,
#hero p,
.about .content p,
.about .icon-boxes .icon-box p,
.tabs .section-title p,
.tabs .tabs-intro p,
.tabs .tabs-product-body p,
.services .services-title p,
.services .service-item p,
.contact .contact-title p,
.contact .contact-info-panel p,
.contact .contact-info-item p,
.contact .contact-info-item a,
.footer p,
.footer a,
.footer .footer-cta p {
  font-family: "Poppins", sans-serif !important;
}

.section-title h2,
.tabs .section-title h2,
.services .services-title h2,
.contact .contact-title h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-title p,
.tabs .section-title p,
.services .services-title p,
.contact .contact-title p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

#hero h2 {
  font-family: "Raleway", sans-serif !important;
  font-size: 62px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.04;
}

#hero h3 {
  font-family: "Poppins", sans-serif !important;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

#hero p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.about .content h3,
.about .icon-boxes .icon-box h4,
.services .service-item h3,
.tabs .tabs-product-body h4 {
  font-weight: 800;
  letter-spacing: -0.25px;
}

.about .content p,
.about .icon-boxes .icon-box p,
.services .service-item p,
.tabs .tabs-product-body p,
.footer .footer-brand-text p {
  font-weight: 400;
}

.hero-buttons .btn,
.about .content .about-btn,
.tabs .tabs-link,
.footer .footer-cta-btn,
.product-detail a[href$=".pdf"],
.product-detail .datasheet-box,
.contact .php-email-form button[type=submit] {
  font-family: "Poppins", sans-serif !important;
  font-weight: 700;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 42px;
  }

  .section-title h2,
  .tabs .section-title h2,
  .services .services-title h2,
  .contact .contact-title h2 {
    font-size: 30px;
  }
}
