:root {
  --default-font: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Space Grotesk", sans-serif;
  --nav-font: "Space Grotesk", sans-serif;
}

:root {
  --background-color: #000000;
  --default-color: rgba(255, 255, 255, 1);
  --accent-color: #ed3f27;
  --surface-color: #002366;
  --dark-primery-color: #002366;
  --light-primery-color: #0071bc;
}

:root {
  --nav-color: #6b7280;
  --nav-hover-color: #1a2a52;
  --nav-mobile-background-color: #002366;
  --nav-dropdown-background-color: #002366;
  --nav-dropdown-color: #6b7280;
  --nav-dropdown-hover-color: #1a2a52;
}

.btn-primary {
  --bs-btn-bg: #0069af;
  --bs-btn-border-color: #0069af;
  --bs-btn-hover-bg: #002366;
  --bs-btn-hover-border-color: #002366;
  --bs-btn-active-bg: #002366;
  --bs-btn-active-border-color: #002366;
  --bs-btn-disabled-bg: #0069af;
  --bs-btn-disabled-border-color: #0069af;
  font-size: 1.2em;
  color: #ffffff;
  font-weight: 300;
  padding: 10px 20px;
  border-radius: 10px;
}

.btn-primary img {
  margin-left: 10px;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
  background-color: #000000;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overscroll-behavior: none;
}

/* Home page: complete black background */
body:has(.home-page) {
  background-color: #000000 !important;
  background-image: none;
  /* background-image: url(../img/hero-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; */
}

a {
  color: var(--accent-color);
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  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 {

  color: var(--default-color);
  padding: 10px 0 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #e0e0e0;

}


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


.scrolled .header {
  padding: 10px 0 10px;
  position: fixed;
  background-color: #e0e0e0;
  -webkit-animation: slideDown 1s ease forwards;
  animation: slideDown 1s ease forwards;
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 992px) {
  .navmenu {
    padding: 0 0 0 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 250px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 40px;
    position: relative;

  }

  .navmenu ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: skew(15deg);
    -ms-transform: skew(15deg);
    transform: skew(15deg);
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 15px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 15px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: 400 !important;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Language Switcher - Same Style as Menu Items */
.lang-switch-text {
  font-size: 22px;
  font-weight: 400;
  font-family: var(--nav-font);
  text-decoration: none;
  color: var(--nav-color);
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 15px 15px;
  display: inline-flex;
  align-items: center;
}

.header>.container>.lang-switch-text {
  position: absolute;
  right: 13px;
  padding: 15px 0;
}

.lang-switch-text:hover {
  color: var(--nav-dropdown-hover-color);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.lang-switcher-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

/* Navmenu - Mobile */
@media (max-width: 991px) {
  .header .logo {
    max-width: 260px;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s;
    /* WCAG 2.5.5 - Minimum 44x44px touch target */
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

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

  .navmenu .navmenu-offcanvas {
    list-style: none;
    position: fixed;
    inset: 0px -410px 0px auto;
    padding: 60px 50px;
    width: 90%;
    max-width: 400px;
    background-color: #e0e0e0;
    overflow-y: auto;
    -webkit-transition: 0.6s all ease-in-out;
    -o-transition: 0.6s all ease-in-out;
    transition: 0.6s all ease-in-out;
    z-index: 9998;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 100px;
    bottom: auto !important;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 20px 15px 0px;
    font-family: var(--nav-font);
    font-size: 22px;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-bottom: 1px solid #9ca3af;
  }

  .navmenu li:last-child a,
  .navmenu li:last-child a:focus {
    border-bottom: 0;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {

    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    font-weight: 400 !important;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .header,
  .mobile-nav-active #header,
  .mobile-nav-active .header.sticky-top,
  .mobile-nav-active #header.sticky-top {
    z-index: 100000 !important;
  }

  /* Keep header fixed when scrolled and mobile nav is active */
  .scrolled.mobile-nav-active .header,
  .scrolled.mobile-nav-active #header {
    position: fixed !important;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 100001;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    min-height: 100vh;
    background-color: #000000cc;
    z-index: 99999;
  }

  .mobile-nav-active .navmenu .navmenu-offcanvas {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 100001 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 90%;
    max-width: 400px;
  }

  .navmenu-bottom {
    padding-top: 0px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navmenu-bottom .lang-switcher-simple {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .navmenu-bottom .lang-switcher-simple .lang-switch-text {
    display: inline-block !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    font-family: var(--nav-font) !important;
    color: var(--nav-dropdown-color) !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    text-align: center !important;
    text-decoration: none !important;
  }

  .navmenu-bottom .lang-switcher-simple .lang-switch-text:hover {
    color: var(--nav-dropdown-hover-color) !important;
    font-weight: 900 !important;
    text-decoration: underline !important;
    text-underline-offset: 8px !important;
    text-decoration-thickness: 2px !important;
  }

  .navmenu-bottom ul {
    justify-content: center !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .navmenu-bottom p {
    text-align: center;
    color: #6b7280;
  }

  .navmenu-bottom ul a,
  .navmenu-bottom ul a:focus {
    border: none !important;
    padding: 5px 0px !important;
    margin: 0 5px !important;
  }

  .navmenu-bottom ul a:first-child {
    padding-left: 0;
  }

  .navmenu-bottom ul a i {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    margin-left: 0;
    color: #6b7280;
  }

  .navmenu a i,
  .navmenu a:focus i {
    margin: 0 !important;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#preloader img {
  width: 200px;
  /* adjust size */
  height: auto;
  -webkit-animation: pulse 1.4s infinite ease-in-out;
  animation: pulse 1.4s infinite ease-in-out;
  -webkit-filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  color: #ffffff;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* Floating Quote Button */
.floating-quote-btn {
  display: none !important;
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: linear-gradient(135deg, var(--light-primery-color), var(--dark-primery-color));
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
}

.floating-quote-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.floating-quote-btn i {
  font-size: 18px;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 4px 25px rgba(237, 63, 39, 0.5);
  }
}

/* RTL Support */
html[dir="rtl"] .floating-quote-btn {
  right: auto;
  left: 20px;
}

/* E-Catalog Download Button */
.e-catalog-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ed3f27, #c9311d);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
  z-index: 9998;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.e-catalog-btn:hover {
  transform: translateY(-50%) translateX(5px);
  box-shadow: 6px 0 20px rgba(237, 63, 39, 0.5);
  color: #fff;
}

.e-catalog-btn i {
  font-size: 20px;
}

html[dir="rtl"] .e-catalog-btn {
  left: auto;
  right: 0;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
  flex-direction: row-reverse;
}

html[dir="rtl"] .e-catalog-btn:hover {
  transform: translateY(-50%) translateX(-5px);
}

@media (max-width: 768px) {
  .e-catalog-btn {
    padding: 10px 14px;
    font-size: 12px;
    gap: 8px;
  }

  .e-catalog-btn i {
    font-size: 18px;
  }
}

/* Inline E-Catalog button (for homepage who-we-are section) */
.e-catalog-wrapper {
  margin: 15px 0 20px;
}

.e-catalog-btn.e-catalog-inline {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, #1976D2, #1565C0);
  padding: 20px 48px;
  gap: 14px;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
}

.e-catalog-btn.e-catalog-inline i {
  font-size: 26px;
}

.e-catalog-btn.e-catalog-inline:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.5);
}

html[dir="rtl"] .e-catalog-btn.e-catalog-inline {
  right: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

html[dir="rtl"] .e-catalog-btn.e-catalog-inline:hover {
  transform: translateY(-3px);
}

#request-quote {
  scroll-margin-top: 100px;
}

/****/
.footer {

  background-color: #1a2a52;
  padding: 40px 0 0 20px;
  background-image: none;
  z-index: 2;
  position: relative;
}

.footer .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.footer-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #333333;
  letter-spacing: 1px;
}

.footer-links ul li {
  margin-top: 8px;
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
}

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

.footer-contact-details h3 {
  padding-top: 6px;
  padding-bottom: 0px;
  margin-top: 6px;
  margin-bottom: 0px;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  text-align: left;
}

.footer-contact-details p,
.footer-contact-details a {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}

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

.footer-contact-details a:hover {
  color: var(--accent-color);
}

.footer-links {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 0;
  margin-top: 0;
}

.footer-links ul {
  margin: 0 !important;
  padding: 0 !important;
}

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

.footer-links ul li:first-child a {
  line-height: 1;
  display: block;
  margin-top: 0;
  padding-top: 0;
}

.footer-contact-details {
  padding-left: 20px;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.footer-contact-details h3:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
  line-height: 1;
}

.footer-contact-details .row>div:first-child h3 {
  margin-top: 0;
  padding-top: 0;
}


.footer-top .row {
  align-items: flex-start;
  display: flex;
}

.footer-top .row>[class*='col-'] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer-links,
.footer-contact-details {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-top .row>[class*='col-'] {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 0 !important;
}

.footer-links ul,
.footer-contact-details .row {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 10px;
}

.footer-top {
  padding-bottom: 40px;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.footer-top .row {
  margin: 0 !important;
  padding: 0 !important;
}

.footer-top .row>div,
.footer-top .row>[class*='col-'] {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Mobile Footer Links */
.footer-links-mobile {
  padding: 0px 0;
}

.footer-links-mobile ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.footer-links-mobile ul li a {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom ul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-bottom ul a {
  padding: 5px;
  color: #fff;
  font-size: 14px;
}

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

.footer-bottom p {
  font-size: 12px;
  margin-bottom: 0;
}

.footer-bottom .developed-by {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.footer-bottom .developed-by a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom .developed-by a:hover {
  color: var(--accent-color);
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.footer-map #footer-map {
  width: 100% !important;
  height: 280px !important;
  display: block;
  position: relative;
}


/* Google Maps info window fix */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 8px !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
}

.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-d,
.gm-style .gm-style-iw-d div {
  color: #000 !important;
}

/* Remove close button extra space */
.gm-style .gm-style-iw-tc::after {
  display: none;
}

/* Position close button properly */
.gm-style .gm-style-iw-chr {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
}

.gm-style button.gm-ui-hover-effect {
  top: 2px !important;
  right: 2px !important;
  width: 24px !important;
  height: 24px !important;
}

.gm-style button.gm-ui-hover-effect>span {
  width: 16px !important;
  height: 16px !important;
  margin: 4px !important;
}

.footer-map>img {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .footer-map {
    display: none;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    -webkit-transition-delay: 0 !important;
    -o-transition-delay: 0 !important;
    transition-delay: 0 !important;
  }
}


/***hero-section***/
.hero-section {
  height: 100vh;
  min-height: 600px;
  background-image: url(../img/hero-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 50px 0;
  background-attachment: fixed;
  overflow: visible;
}

.top-pattern-sec {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 2;
}

.top-pattern-sec img {
  max-height: 300px;
  object-fit: cover;
  object-position: top center;
}

/* Mobile hero section adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    background-attachment: scroll;
  }

  .careers-hero-section {
    position: relative;
  }

  .careers-form-section {
    margin-top: 0;
  }
}

.hero-overlay {
  top: 0;
  left: 0;
  background: #000000;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.1)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  padding: 100px 0;
}

.hero-content h1 {
  font-size: 5.2em;
  color: #ffffff;
  font-weight: 300;
  font-family: "Space Grotesk";
}

.hero-bottom-logo {
  position: absolute;
  bottom: -80px;
  left: 0;
  pointer-events: none;
  z-index: 10;
}

.hero-bottom-logo img {
  width: 530px;
  max-width: 100%;
  height: auto;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

a.hero-slide-link {
  display: block;
  cursor: pointer;
  z-index: 2;
  width: 100%;
  height: 100%;
}

a.hero-slide-link.active {
  z-index: 3;
}

a.hero-slide-link:hover {
  opacity: 1;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media.hero-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-media.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Ensure video covers full area on mobile */
@media (max-width: 768px) {
  .hero-media.hero-video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.hero-section.has-slider {
  background-image: none;
}

.hero-text {
  display: none;
}

.hero-text.active {
  display: block;
}

.hero-dots {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 20px 0;
  align-items: center;
  justify-content: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 20px;
  z-index: 10;
}

.hero-prev {
  left: 30px;
}

.hero-next {
  right: 30px;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: 100vh;
  }

  .hero-content {
    padding: 100px 30px 80px;
  }

  .hero-content h1 {
    font-size: 3em;
  }

  .hero-dots {
    bottom: 40px;
    padding: 20px 0;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .hero-prev {
    left: 15px;
  }

  .hero-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 100vh;
    height: 100vh;
  }

  .hero-slider {
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    width: 100%;
    height: 100%;
  }

  .hero-content {
    padding: 80px 20px 60px;
  }

  .hero-content h1 {
    font-size: 2.2em;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-dots {
    bottom: 40px;
    gap: 8px;
    padding: 15px 0;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
  }
}

/* Video Banner Play Icon */
.hero-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

.hero-play-icon i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

a.hero-slide-link:hover .hero-play-icon i {
  transform: scale(1.1);
  color: #fff;
}

@media (max-width: 768px) {
  .hero-play-icon i {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .hero-play-icon i {
    font-size: 50px;
  }

  .spec-tabs-wrapper {
    gap: 6px;
  }

  .spec-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .spec-group-tabs {
    padding: 12px;
    gap: 10px;
  }

  .spec-group-tab {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

.about-us {
  background: url('../img/logo-pettern.webp'), #000000;
  -webkit-mask-image: url("../img/about-path.png");
  mask-image: url("../img/about-path.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  overflow: visible;
  padding: 140px 0 40px;
  position: relative;
}

/* Home page: dark about-us - black background */
.home-page .about-us {
  background: #000000 !important;
  -webkit-mask-image: none;
  mask-image: none;
  padding: 0 0 100px;
  position: relative;

}

/* Hide SOFAN STEEL GROUP line on home page */
.home-page .about-us .company-header {
  display: none;
}

/* Align hero-title and who-we-are h3 on same line */
.home-page .about-us .section-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.home-page .about-us .hero-title {
  margin-bottom: 32px;
  margin-top: 0;
}

.home-page .about-us .hero-description {
  margin-bottom: 0;
}

.home-page .about-us .who-we-are h3 {
  margin-top: 0;
  padding-top: 0;
}

/* Align both headings to same vertical position */
.home-page .about-us .about-right {
  padding-top: 0;
  margin-top: 0;
}

.home-page .about-us .who-we-are {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.home-page .about-us .why-do-we {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.home-page .about-us .e-catalog-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

/* Increase font sizes for Who Are We Today section */
.home-page .about-us .who-we-are h3 {
  font-size: 3.2em;
  margin-bottom: 1.5rem;
}

.home-page .about-us .who-we-are p {
  font-size: clamp(1.2em, 1.3vw + 0.5rem, 1.55em);
  line-height: 1.65;
  margin-bottom: 0;
}

.about-top-logo img {
  max-width: 100%;
  width: 200px;
}

.sub-title {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
}

.main-title {
  font-size: 3em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  font-family: "Space Grotesk";
}

.who-we-are,
.why-do-we {
  padding-bottom: 2em;
}

.who-we-are {
  margin-bottom: 1rem;
}

.about-right h3 {
  font-size: 1.85em;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  font-family: "Space Grotesk", sans-serif;
}

.about-right p {
  text-align: justify;
  font-weight: 400;
  line-height: 1.75;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.about-right-img {
  padding-bottom: 3em;
}

.about-us-left {
  background: url(../img/about-left-bg.webp);
  background-position: left bottom -10%;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

/* Home page: dark about-us-left */
.home-page .about-us-left {
  background: none;
  align-content: center;
}

/* New Hero Design Styles - Enhanced */
.company-header {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 0;
  position: relative;
}

.red-line {
  width: 3px;
  height: 45px;
  background: linear-gradient(180deg, #ed3f27 0%, #0071bc 100%);
  display: inline-block;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(237, 63, 39, 0.4);
}

.company-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #e0e7ff;
  text-transform: uppercase;
  margin: 0;
  padding-left: 16px;
  position: relative;
  opacity: 1;
  font-family: "Space Grotesk", sans-serif;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 32px;
  text-transform: uppercase;
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-title .white-text {
  color: #ffffff;
  display: block;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-title .blue-text {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  position: relative;
  filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.4));
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 620px;
  margin-top: 1.5rem;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Our Values Section - grey background */
.our-values-section {
  background: #e5e7eb !important;
  padding: 80px 0;
  position: relative;
  background-attachment: scroll;
}

.our-values-title h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

.our-values-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.value-item {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.value-icon i {
  font-size: 28px;
  color: #ffffff;
}

.value-icon img {
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}

.value-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 767px) {
  .our-values-grid {
    gap: 30px 20px;
  }

  .value-item {
    flex: 1 1 140px;
    max-width: 160px;
  }

  .our-values-title h2 {
    font-size: 1.8em;
  }

  .value-icon {
    width: 56px;
    height: 56px;
  }

  .value-icon i {
    font-size: 22px;
  }
}

.about-left-btn {
  margin-top: auto;
  padding-bottom: 10em;
}

.pdf-download {
  background-color: #ed3f27;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 10px;
  padding: 0;
  border: none;
  outline: none;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  cursor: pointer;
}

.pdf-download:hover {
  background-color: var(--background-color);
}

.pdf-download span {
  padding: 10px 15px;
  color: #fff;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.pdf-download img {
  width: 45px;
  background-color: #fff;
  padding: 10px;
  border-right: 4px solid #0069af;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}


a.featured-product-item {
  text-decoration: none;
  color: inherit;
}

.featured-product-item {
  background-color: #0d0d0d;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-product-img {
  position: relative;
  overflow: hidden;
  background-color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.featured-product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  transition: transform 0.4s ease;
}

.featured-product-item:hover .featured-product-img img {
  transform: scale(1.05);
}

.featured-product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--light-primery-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.5px;
}

.featured-product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-product-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1em;
  margin: 0 0 8px;
  text-transform: uppercase;
  text-align: left;
}

.featured-product-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85em;
  line-height: 1.5;
  margin: 0 0 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  flex: 1;
}

.featured-product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: auto;
}

.featured-product-size {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8em;
}

.featured-product-link {
  color: var(--light-primery-color);
  font-size: 0.8em;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-product-link:hover {
  color: #fff;
  gap: 10px;
}

.featured-product-link i {
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.featured-products-list {
  position: relative;
}

.featured-slider-wrapper {
  position: relative;
  padding-bottom: 20px;
}

/* Featured Products Swiper Slider */
.featured-products-swiper {
  overflow: hidden;
  padding-bottom: 0;
}

.featured-products-swiper .swiper-slide {
  height: auto;
}

/* Ensure consistent card styling for Featured Products */
.featured-products-swiper .featured-product-item {
  height: 100%;
  min-height: 420px;
}

.featured-products-swiper .featured-product-img {
  aspect-ratio: 4/3;
}

/* Navigation Arrows */
.featured-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-primery-color);
  border: 2px solid var(--light-primery-color);
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.featured-nav-btn:hover {
  background: var(--dark-primery-color);
  border-color: var(--dark-primery-color);
  transform: translateY(-50%) scale(1.1);
}

.featured-prev {
  left: -50px;
}

.featured-next {
  right: -50px;
}

.featured-pagination {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
  margin-top: 20px;
  padding-top: 0;
  text-align: center;
  width: 100%;
  display: block;
}

.featured-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px;
}

.featured-pagination .swiper-pagination-bullet-active {
  background: var(--light-primery-color);
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .featured-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1em;
  }

  .featured-prev {
    left: -5px;
  }

  .featured-next {
    right: -5px;
  }

  .featured-product-img {
    aspect-ratio: 1 / 1;
  }

  .featured-product-info {
    padding: 15px;
  }

  .featured-product-name {
    font-size: 1em;
  }
}

.featured-products .section-small-title {
  padding-bottom: 1em;
}

.section-small-title h2 {
  font-size: 2.5em;
  color: #ffffff;
  font-weight: 400;
}

.section-small-title {
  padding-bottom: 4em;
}

.featured-products {
  background: #000000;
  padding: 80px 0 80px;
  overflow: visible;
  position: relative;
}

.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-primery-color), var(--light-primery-color));
  z-index: 1;
}

/* Home page: lighter shade featured-products for alternating pattern */
.home-page .featured-products {
  background: #000000 !important;
  background-image: none !important;
}

.home-page .featured-overlay {
  display: none;
}


.feature-block {
  padding: 100px 0 0px;
  position: relative;
  margin-top: 100px;
  overflow: visible;
}

.feature-block::before {
  content: "";
  width: 100%;
  background-image: url(../img/feature-block-lightbg.webp);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f1f1f1;
  -webkit-mask-image: url("../img/feature-block-path.svg");
  mask-image: url("../img/feature-block-path.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: top right;

}

.feature-block-content {
  padding-top: 130px;
}

.feature-block-content .section-small-title {
  padding-bottom: 1em;
}

.feature-block-content,
.feature-block-content .section-small-title h2 {
  color: #002366;
}

.feature-block-logo {
  padding-top: 20px;
  padding-bottom: 60px;
}

.feature-block-logo img {
  width: 200px;
  height: auto;
}

.feature-block-img {
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.feature-block-img img {
  width: 100%;
  height: auto;
}

.feature-block .row {
  margin-top: -3vw;
}

.about-hero-section.hero-section {
  background-image: url(../img/about-bg.webp);
}

.hero-section p {
  color: #ffffff;
  font-weight: 300;
}

.about-hero-content {
  background-color: #1a1a1a;
  padding: 60px 0;
}

.about-hero-content .about-hero-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-content h1 {
  color: #b8860b;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-hero-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 768px) {
  .about-hero-content {
    padding: 40px 0;
  }

  .about-hero-content h1 {
    font-size: 28px;
  }

  .about-hero-content p {
    font-size: 16px;
  }
}

.about-us-page .about-us {
  background: url(../img/about-us-bg.webp), linear-gradient(75deg, #666666 0%, #666666 24%, #666666 100%);
  -webkit-mask-image: none;
  mask-image: none;
  padding-bottom: 80px;
}

.about-chairman h3 {
  text-align: center;
  margin-top: 20px;
  font-size: 30px;
}

.company-vision {
  background-image: url(../img/company-vision.webp), url(../img/about-left-bg.webp);
  background-size: 40% 100%, 50%;
  background-position: right center, left top;
  background-attachment: fixed, scroll;
  background-repeat: no-repeat, no-repeat;
  min-height: 100vh;
}



.company-vision-content h2 {
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Our Message Section */
/* Message and Vision Wrapper - Side by Side */
.message-vision-wrapper {
  width: 100%;
  background: #e5e7eb;
  padding: 80px 0;
}

.message-vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  align-items: stretch;
}

.our-message-section {
  background: #ffffff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.our-message-content {
  width: 100%;
}

.our-message-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e40af;
  margin: 0 0 35px 0;
  padding: 0;
  letter-spacing: 2px;
  line-height: 1.2;
  text-align: start;
  text-indent: 0;
}

.our-message-content p {
  font-size: 1.2rem;
  color: #3772c9;
  line-height: 1.9;
  margin: 0;
  font-weight: 400;
  text-align: start;
  text-indent: 0;
}

@media (max-width: 992px) {
  .message-vision-wrapper {
    padding: 60px 0;
  }

  .message-vision-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }

  .our-message-section {
    padding: 50px 40px;
  }

  .our-message-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .our-message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

@media (max-width: 576px) {
  .message-vision-wrapper {
    padding: 50px 0;
  }

  .message-vision-container {
    gap: 30px;
    padding: 0 20px;
  }

  .our-message-section {
    padding: 40px 25px;
  }

  .our-message-content h2 {
    font-size: 1.8rem;
  }

  .our-message-content p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.section-divider {
  display: none;
}

/* Thin white section divider */
.bottom-section-divider {
  height: 0;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 2;
}

/* Top pattern image overlay */
.top-pattern-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.top-pattern-overlay .top-pattern-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Company Vision Banner Style */
.company-vision-banner {
  position: relative;
  background: #ffffff;
  background-image: none;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.company-vision-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 20, 40, 0.8);
}

.company-vision-banner .company-vision-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.company-vision-banner .company-vision-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e40af;
  margin: 0 0 35px 0;
  padding: 0;
  letter-spacing: 2px;
  line-height: 1.2;
  text-align: start;
  text-indent: 0;
}

.company-vision-banner .company-vision-content p {
  font-size: 1.2rem;
  color: #3772c9;
  line-height: 1.9;
  margin: 0;
  font-weight: 400;
  text-align: start;
  text-indent: 0;
}

@media (max-width: 992px) {
  .company-vision-banner {
    padding: 50px 40px;
  }

  .company-vision-banner .company-vision-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .company-vision-banner .company-vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

@media (max-width: 576px) {
  .company-vision-banner {
    padding: 40px 25px;
  }

  .company-vision-banner .company-vision-content h2 {
    font-size: 1.8rem;
  }

  .company-vision-banner .company-vision-content p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

.footer-phone {
  letter-spacing: 3px;
}

.careers-hero-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/careers.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  padding: 250px 0 40px;
  z-index: 1;
}

.inner-hero-section {
  background: url(../img/careers.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 250px 0 40px;
}

.careers-hero-section .hero-content p,
.inner-hero-section .hero-content p {
  font-size: 18px;
}

.careers-hero-section .hero-content,
.inner-hero-section .hero-content {
  padding: 0 0;
}

.form-control {
  background: #d3d3d3;
  border: none;
  height: 42px;
  border-radius: 0;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='red' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #d3d3d3;
  border-radius: 0;
  height: 42px;
}

textarea.form-control {
  height: 220px;
}

.btn-custom {
  width: 130px;
  border-radius: 25px;
  padding: 8px 0;
}

.btn-upload {
  background: #002f6c;
  /* dark blue */
  color: #fff;
}

.btn-upload:hover {
  background: #007bff;
}

.btn-send {
  background: #007bff;
  /* bright blue */
  color: #fff;
}

.btn-send:hover {
  background: #002f6c;
}

.upload-label {
  margin-top: 20px;
}

input[type="file"] {
  display: none;
}

.careers-form-section {
  padding: 10px 0 80px;
  background-color: #E6E7EB;
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.careers-form-section .container {
  max-width: 900px;
}

.careers-form-section form {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.careers-form-section .form-label {
  font-weight: 600;
  color: var(--light-primery-color);
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.careers-form-section .form-control {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  height: 48px;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.careers-form-section .form-control:focus {
  background: #ffffff;
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  outline: none;
}

.careers-form-section textarea.form-control {
  /* height: 180px; */
  resize: vertical;
}

.careers-form-section .btn-custom {
  width: 160px;
  height: 48px;
  border-radius: 8px;
  padding: 0;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}

.careers-form-section .btn-upload {
  background: #2c3e50;
  color: #fff;
}

.careers-form-section .btn-upload:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.careers-form-section .btn-send {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  width: 220px;
}

.careers-form-section .btn-send:hover {
  background: linear-gradient(135deg, #0056b3, #003d82);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

@media (max-width: 768px) {
  .careers-form-section form {
    padding: 35px 25px;
    border-radius: 12px;
  }

  .careers-form-section .btn-custom {
    width: 140px;
  }
}

.contact-hero-section.inner-hero-section {
  background-image: url(../img/contact-hero-bg.webp);
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  min-height: 600px;
  display: flex;
  align-items: end;
}

.contact-hero-section.inner-hero-section .hero-content {
  padding-bottom: 10px;
  padding-left: 20px;
}

.inner-hero-section .container {
  position: relative;
  z-index: 10;
}

.loc-line {
  width: 1px;
  background-color: #707070;
  height: 100%;
  display: block;
  margin: 0 auto;
}

.contact-loc-section h3 {
  font-weight: 400;
  margin-bottom: 20px;
  color: #ffffff;
}

.loc-list ul {
  margin-bottom: 40px;
}

.loc-list ul li::before {
  content: "-";
  margin-right: 10px;
}

.loc-list .location-item {
  margin-bottom: 20px;
}

.loc-list .location-item strong {
  color: var(--default-color);
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.loc-list .location-item ul li {
  color: var(--default-color);
  opacity: 0.9;
}

.loc-list .location-item ul li::before {
  content: "";
  margin-right: 0;
}

.loc-list .location-item ul li i {
  margin-right: 8px;
  color: var(--accent-color);
}

.loc-list .location-item ul li a {
  color: var(--default-color);
  text-decoration: none;
}

.loc-list .location-item ul li a:hover {
  color: var(--accent-color);
}

[dir="rtl"] .loc-list .location-item ul li i {
  margin-right: 0;
  margin-left: 8px;
}

.contact-loc-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}

.location-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  border: 1px solid #e0e0e0;
}

.location-card .location-type-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--light-primery-color);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

.location-card .location-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--light-primery-color);
  margin-bottom: 15px;
}

.location-card .location-details {
  margin: 0;
}

.location-card .location-details li {
  color: #2c2c2c;
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.location-card .location-details li:last-child {
  margin-bottom: 0;
}

.location-card .location-details li i {
  color: var(--light-primery-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.location-card .location-details li a {
  color: #2c2c2c;
  text-decoration: none;
  transition: color 0.3s;
}

.location-card .location-details li a:hover {
  color: var(--accent-color);
}

.contact-info-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.contact-info {
  color: #fff;
  font-size: 18px;
}

.contact-info .label {
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-info .value a {
  color: #fff;
  text-decoration: none;

}

.contact-info .value a:hover {
  color: var(--accent-color);
}

.contact-sec-title {
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-main-section {
  padding: 80px 0;
}

.contact-main-section .locations-wrapper {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}

.contact-main-section .locations-wrapper::-webkit-scrollbar {
  width: 4px;
}

.contact-main-section .locations-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.contact-main-section .locations-wrapper::-webkit-scrollbar-thumb {
  background: var(--light-primery-color);
  border-radius: 2px;
}

.quote-form-wrapper {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-form-wrapper .contact-sec-title {
  margin-bottom: 25px;
}

.contact-form-section {
  padding: 80px 0;
  background-color: #E6E7EB;
}

.contact-form-section .container {
  max-width: 900px;
}

.contact-form-section .contact-sec-title {
  color: #000000;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-form-section form {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-form-section .form-label {
  font-weight: 600;
  color: var(--light-primery-color);
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  height: 48px;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  background: #ffffff;
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  outline: none;
}

.contact-form-section textarea.form-control {
  height: 180px;
  resize: vertical;
}

.contact-form-section .btn-custom {
  width: 160px;
  height: 48px;
  border-radius: 8px;
  padding: 0;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}

.contact-form-section .btn-upload {
  background: #2c3e50;
  color: #fff;
}

.contact-form-section .btn-upload:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.contact-form-section .btn-send {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  width: 220px;
}

.contact-form-section .btn-send:hover {
  background: linear-gradient(135deg, #0056b3, #003d82);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

@media (max-width: 768px) {
  .contact-form-section form {
    padding: 35px 25px;
    border-radius: 12px;
  }

  .contact-form-section .btn-custom {
    width: 140px;
  }
}

.footer-center li a {
  padding: 0 30px 10px 0;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.footer-center li a:hover {
  color: var(--accent-color);
}

.product-hero-section {
  background-image: url(../img/products.webp);
  padding-bottom: 150px;
  overflow: hidden;
}

.tab-nav-custom {
  background-color: var(--dark-primery-color);
  border-radius: 50px;
  overflow: hidden;
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.product-listing h2 {
  font-weight: 400;
  margin-bottom: 30px;
}

.tab-nav-custom.nav-pills .nav-link {
  border-radius: 50px;
  color: #fff;
}

.tab-nav-custom.nav-pills .nav-link.active,
.tab-nav-custom.nav-pills .show>.nav-link {
  background-color: var(--accent-color);
}

/* Category tabs horizontal scroll */
.category-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.category-tabs-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 100%;
  flex: 1;
  background-color: var(--dark-primery-color);
  border-radius: 50px;
  padding: 6px 0;
}

.category-tabs-container::-webkit-scrollbar {
  display: none;
}

.category-tabs-container .tab-nav-custom {
  flex-wrap: nowrap;
  white-space: nowrap;
  margin-bottom: 0 !important;
  background-color: transparent;
  padding: 0 20px;
}

.category-tabs-container .tab-nav-custom .nav-item {
  flex-shrink: 0;
}

.category-tabs-container .tab-nav-custom .nav-link {
  background-color: transparent;
  color: #fff;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-tabs-container .tab-nav-custom .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.category-tabs-container .tab-nav-custom .nav-link.active {
  background-color: var(--accent-color);
  color: #fff;
}

/* Scroll buttons */
.category-scroll-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-scroll-btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.category-scroll-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.category-scroll-btn i {
  font-size: 18px;
  line-height: 1;
}

/* Spacing between tabs and product grid */
.product-listing .tab-content {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .category-tabs-wrapper {
    gap: 10px;
    margin-bottom: 30px;
  }

  .category-scroll-btn {
    width: 36px;
    height: 36px;
  }

  .category-tabs-container .tab-nav-custom .nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Products Page Enhanced Grid */
.products-page-grid .product-card-enhanced {
  display: flex;
  flex-direction: column;
  background-color: #1a1a2e;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  height: 100%;
}

.products-page-grid .product-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.products-page-grid .featured-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background-color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-page-grid .featured-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.products-page-grid .product-card-enhanced:hover .featured-product-img img {
  transform: scale(1.05);
}

.products-page-grid .featured-product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products-page-grid .featured-product-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  text-align: left;
  background: none;
  padding: 0;
  border-radius: 0;
}

.products-page-grid .featured-product-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 15px;
  flex: 1;
}

.products-page-grid .featured-product-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.products-page-grid .featured-product-size {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.products-page-grid .featured-product-link {
  color: var(--light-primery-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.products-page-grid .product-card-enhanced:hover .featured-product-link {
  color: #fff;
}

/* Responsive for products page grid */
@media (max-width: 991px) {
  .products-page-grid .featured-product-info {
    padding: 15px;
  }

  .products-page-grid .featured-product-name {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .products-page-grid {
    margin-top: 30px;
  }

  .products-page-grid .product-grid-container {
    row-gap: 20px;
    --bs-gutter-x: 20px;
  }

  .products-page-grid .product-card-enhanced {
    margin-bottom: 0;
  }

  .products-page-grid .featured-product-img {
    aspect-ratio: 1 / 1;
  }

  .products-page-grid .featured-product-info {
    padding: 15px;
  }

  .products-page-grid .featured-product-desc {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* Original product listing styles (kept for backwards compatibility) */
.product-listing .featured-product-item:not(.product-card-enhanced) {
  margin-bottom: 40px;
  background-color: var(--dark-primery-color);
  padding: 20px;
  border-radius: 10px;
}

.product-listing .featured-product-item:not(.product-card-enhanced) figure {
  padding-top: 100%;
  position: relative;
}

.product-listing .featured-product-item:not(.product-card-enhanced) figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 15px;
}

.product-listing .featured-product-item:not(.product-card-enhanced) .featured-product-name {
  text-align: center;
  padding: 25px 15px;
  background-color: var(--light-primery-color);
  border-radius: 15px;
  color: #fff;
  font-weight: 400;
  font-size: 1.3em;
  margin: 0;
  text-transform: none;
}

.product-listing .featured-product-item:not(.product-card-enhanced) figure::before {
  content: "";
  background-color: var(--dark-primery-color);
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 3;
  width: 80px;
  height: 80px;
}

.product-listing .featured-product-item:not(.product-card-enhanced) figure::after {
  content: "";
  background-color: #ed3f27;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 3;
  width: 60px;
  height: 60px;
}

.product-listing {
  margin: -100px 0 0;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

.product-listing.no-hero {
  margin-top: 100px;
  padding-top: 40px;
}

/* Product Pagination */
.product-pagination {
  margin-top: 40px;
  padding-top: 20px;
}

.product-pagination .pagination {
  gap: 8px;
}

.product-pagination .page-item .page-link {
  border: none;
  background: #f5f5f5;
  color: #333;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.product-pagination .page-item .page-link:hover {
  background: var(--accent-color);
  color: #fff;
}

.product-pagination .page-item.active .page-link {
  background: var(--accent-color);
  color: #fff;
}

.product-pagination .page-item.disabled .page-link {
  background: #eee;
  color: #aaa;
  cursor: not-allowed;
}

.product-pagination .page-item.disabled .page-link:hover {
  background: #eee;
  color: #aaa;
}

.product-grid-container {
  transition: opacity 0.3s ease;
}

/* Products page grid spacing */
.products-page-grid {
  margin-top: 40px;
}

.products-page-grid .product-grid-container {
  row-gap: 30px;
  --bs-gutter-x: 30px;
}

.products-page-grid .product-grid-container>[class*="col-"] {
  margin-bottom: 0;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

/* Product Detail Page */
.product-detail-page {
  margin-top: 0;
  padding-top: 0;
  min-height: auto !important;
  padding-bottom: 40px !important;
}

/* Product Hero Section - Full Width Spanning Image */
.product-hero-section {
  width: 100%;
  margin: 0 0 60px 0;
  padding: 0;
  position: relative;
  background: #000000;
}

.product-hero-image {
  width: 100%;
  height: 85vh;
  min-height: 700px;
  padding: 40px;
  margin: 0 auto;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.product-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 120px 100px 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  pointer-events: auto;
}

.product-category-badge {
  display: inline-block;
  background: #0071bc;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
  border-radius: 4px;
  max-width: 600px;
}

.product-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.1;
  letter-spacing: 2px;
  text-align: left;
  max-width: 700px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product-hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 600px;
  text-align: left;
  margin-bottom: 0;
}

.hero-back-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-top: 100px;
  margin-bottom: auto;
}

html[dir="rtl"] .hero-back-btn i {
  transform: rotate(180deg);
  margin-top: -13px;
}

.hero-back-btn:hover {
  color: #ffffff;
  transform: translateX(-5px);
}

.hero-back-btn i {
  font-size: 18px;
}

/* Product Hero Section - Responsive */
@media (max-width: 1200px) {
  .product-hero-image {
    height: 80vh;
    min-height: 650px;
    background-size: contain !important;
    background-position: center center !important;
  }

  .product-hero-title {
    font-size: 3.5rem;
  }

  .product-hero-content {
    padding: 0 80px 80px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .hero-back-btn {
    margin-bottom: auto;
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .product-hero-image {
    height: 75vh;
    min-height: 550px;
    background-size: cover !important;
    background-position: left center !important;
  }



  .product-hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .product-hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 100%;
    margin-top: 15px;
  }

  .product-hero-content {
    padding: 0 40px 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .product-category-badge {
    font-size: 11px;
    padding: 6px 16px;
    margin-bottom: 12px;
  }

  .hero-back-btn {
    margin-bottom: auto;
    font-size: 13px;
    margin-top: 100px;
  }


  .hero-back-btn i {
    font-size: 16px;
  }

}

@media (max-width: 576px) {
  .product-hero-image {
    height: auto;
    min-height: auto;
    background-size: contain !important;
    background-position: center top !important;
    padding-bottom: 20px;
  }

  .product-hero-section {
    margin-bottom: 10px;
  }

  .product-hero-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
    word-break: break-word;
    margin-bottom: 15px;
  }

  .product-hero-description {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 100%;
    margin-top: 15px;
    margin-bottom: 0;
    word-spacing: 1px;
  }

  .product-hero-content {
    padding: 0 30px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: auto;
  }

  .product-category-badge {
    font-size: 10px;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .hero-back-btn {
    margin-bottom: auto;
    font-size: 12px;
  }

  .hero-back-btn i {
    font-size: 13px;
  }
}

/* RTL Support for Product Hero Section */
[dir="rtl"] .product-hero-content {
  align-items: flex-start;
}

[dir="rtl"] .product-hero-title,
[dir="rtl"] .product-hero-description {
  text-align: right;
}

.back-to-category {
  margin-bottom: 20px;
}

.btn-back-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-back-category:hover {
  background: var(--accent-color);
  color: #fff;
}

.btn-back-category i {
  font-size: 1.1em;
}

.product-actions .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
}

.product-actions .btn-outline-secondary {
  border-color: #666;
  color: #666;
}

.product-actions .btn-outline-secondary:hover {
  background: #666;
  color: #fff;
}

.product-actions .btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.product-actions .btn-primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}

:root {
  --pill-border: rgba(255, 255, 255, 0.35);
  --pill-bg: rgba(255, 255, 255, 0.06);
  --heading-pill-bg: #0aa2ff;
}

/* .table-box {
  background: var(--surface-gradient);
  border-radius: 18px;
  padding: 36px 40px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
} */


.heading-pill {
  background: var(--heading-pill-bg);
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  font-size: 17px;
  letter-spacing: .3px;
  color: #fff;
}


.col-label {
  font-weight: 500;
  margin: 26px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 22px;
}


.col-label .arrow {
  display: none;
}


.data-pill {
  border: 2px solid var(--light-primery-color);
  border-radius: 40px;
  padding: 16px 36px;
  margin: 12px 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  font-size: 22px;
  letter-spacing: .3px;
  text-align: center;
  color: #fff;
}

.product-details {
  background-color: #0a2366;
  padding: 30px;
  border-radius: 10px;
  background-image: url(../img/product-details-bg.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.product-size {
  padding: 0 30px;
}

.product-size-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-left: 1px solid #3171ba;
  border-right: 1px solid var(--light-primery-color);
}

.product-size-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.product-size-info {
  max-width: 700px;
}

.product-details-section {
  padding: 80px 0;
}

.sheet-product-details .product-size-info {
  max-width: 100%;
}

.sheet-product-details .product-size-info .data-pill {
  display: inline-block;
}

/* Specification Accordion Styles */
/* Always Expanded Specification (No Accordion) */
.spec-expanded {
  margin-bottom: 10px;
  border: 1px solid var(--light-primery-color);
  border-radius: 8px;
  overflow: hidden;
}

.spec-expanded-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: rgba(49, 113, 186, 0.05);
}

.spec-expanded-header .col-label {
  margin: 15px 0;
  flex: 1;
}

.spec-expanded-header .col-label .arrow {
  border-top: 10px solid var(--accent-color);
  border-bottom: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.spec-expanded .product-size {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  padding: 10px 12px 15px !important;
  margin: 0 !important;
  border: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.spec-accordion {
  margin-bottom: 10px;
  border: 1px solid var(--light-primery-color);
  border-radius: 8px;
  overflow: hidden;
}

.spec-accordion-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
  background: rgba(49, 113, 186, 0.05);
  transition: background 0.3s ease;
}

.spec-accordion-header:hover {
  background: rgba(49, 113, 186, 0.1);
}

.spec-accordion-header .col-label {
  margin: 15px 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-accordion-header .col-label .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.spec-accordion.active .spec-accordion-header .col-label .arrow {
  transform: rotate(90deg);
}

/* RTL/Arabic Support for Accordion */
[dir="rtl"] .spec-accordion-header {
  justify-content: flex-start;
}

[dir="rtl"] .spec-accordion-header .col-label {
  flex-direction: row;
  flex: none;
}

[dir="rtl"] .spec-accordion-header .col-label .arrow {
  border-left: none;
  border-right: 9px solid var(--accent-color);
  margin-left: 10px;
  margin-right: 0;
}

[dir="rtl"] .spec-accordion.active .spec-accordion-header .col-label .arrow {
  transform: rotate(-90deg);
}

[dir="rtl"] .spec-accordion-content .product-size,
[dir="rtl"] .sheet-product-details .product-size {
  direction: rtl;
  justify-content: flex-start !important;
}

.spec-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.spec-accordion.active .spec-accordion-content {
  max-height: 2000px;
  transition: max-height 0.6s ease-in;
}

.spec-accordion-content .product-size,
.sheet-product-details .product-size {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  padding: 10px 12px 15px !important;
  border: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.sheet-product-details .data-pill {
  margin: 4px !important;
  width: auto !important;
  min-width: 60px !important;
  max-width: fit-content !important;
  padding: 8px 14px !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  overflow: visible !important;
  position: static !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 14px !important;
}

.sheet-product-details .data-pill span {
  white-space: nowrap;
  display: block;
  text-align: center;
}

/* Justified grid for data pills */
.product-size.justified-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.product-size.justified-grid .data-pill {
  width: 100%;
  text-align: center;
}

.product-details .border-bottom {
  border-color: #3171ba !important;
  border-bottom: none !important;
  padding-bottom: 15px;
}

.col-inner-label::before {
  content: "-";
  font-weight: 700;
  color: var(--light-primery-color);
  margin-right: 10px;
  font-size: 18px;
}

.col-inner-label {
  font-size: 18px;
}

.coating-item figure {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.coating-item figure figcaption {
  position: absolute;
  bottom: 10px;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  padding: 5px;
  background-color: #0a2366;
  text-align: center;
  border-radius: 10px;
}

.coating-patterne {
  padding-left: 20px;
  padding-bottom: 30px;
}

.coating-patterne-list {
  padding-top: 15px;
  padding-left: 20px;
}

.coating-item figure {
  position: relative;
  padding-bottom: 100%;
}

.coating-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  top: 0;
}

.coating-item {
  margin-bottom: 20px;
}

.coating-item .coating-color {
  margin-top: 10px;
  gap: 8px;
}

.ral-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px 10px;
  justify-items: center;
  margin-top: 20px;
}

.ral-item {
  text-align: center;
}

.ral-badge {
  width: 120px;
  padding: 10px 10px;
  border-radius: 40px;
  border: 3px solid #ffffff;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.ral-name {
  margin-top: 12px;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.9;
}

/* Color Plate Grid for Colored PPGI Sheet */
.color-plate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 20px 15px;
  margin-top: 15px;
}

.color-plate-item {
  text-align: center;
}

.color-plate {
  width: 100%;
  height: 45px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 3px solid #fff;
}

.color-plate.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.color-plate span {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.color-plate.light-bg span {
  color: #333;
  text-shadow: none;
}

.color-plate-name {
  margin-top: 8px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
}

/* Vertical Layout for Product Details */
.vertical-specs-container {
  background: rgba(10, 35, 102, 0.5);
  border-radius: 10px;
  padding: 20px 15px;
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(var(--column-count, 5), minmax(min-content, 1fr));
  gap: 0;
}

.vertical-group-headers {
  display: none;
}

.vertical-group-header {
  display: none;
}

.vertical-group-header .heading-pill {
  white-space: nowrap;
}

.vertical-column-labels {
  display: contents;
}

.vertical-column-label {
  border-left: 1px solid #3171ba;
  padding: 0 8px 20px;
  text-align: center;
  border-bottom: 1px solid #3171ba;
  margin-bottom: 15px;
}

.vertical-column-label:first-child {
  border-left: none;
}

.vertical-column-label .col-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
}

/* RTL support for vertical layout */
[dir="rtl"] .vertical-column-label {
  border-left: none;
  border-right: 1px solid #3171ba;
  padding-left: 0;
  padding-right: 15px;
}

[dir="rtl"] .vertical-column-label:first-child {
  border-right: none;
  padding-right: 0;
}

/* RTL arrow for vertical column labels */
[dir="rtl"] .vertical-column-label .col-label .arrow {
  border-left: none;
  border-right: 9px solid var(--accent-color);
}

.vertical-specs-table {
  display: contents;
}

.vertical-spec-column {
  text-align: center;
  border-left: 1px solid #3171ba;
  padding: 0 8px;
}

.vertical-spec-column:first-child {
  border-left: none;
}

/* RTL support for vertical spec columns */
[dir="rtl"] .vertical-spec-column {
  border-left: none;
  border-right: 1px solid #3171ba;
}

[dir="rtl"] .vertical-spec-column:first-child {
  border-right: none;
}

.vertical-spec-values {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.vertical-spec-values .data-pill {
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .vertical-specs-container {
    padding: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .vertical-group-headers,
  .vertical-column-labels,
  .vertical-specs-table {
    min-width: max-content;
  }

  .vertical-group-header {
    min-width: 130px;
    max-width: none;
    flex: 0 0 130px;
  }

  .vertical-column-label {
    min-width: 130px;
    max-width: none;
    flex: 0 0 130px;
  }

  .vertical-spec-column {
    min-width: 130px;
    max-width: none;
    flex: 0 0 130px;
  }

  .vertical-spec-values .data-pill {
    padding: 8px 15px !important;
    font-size: 13px !important;
    min-width: 70px !important;
  }

  .vertical-group-header .heading-pill {
    font-size: 11px;
    padding: 6px 10px;
    white-space: nowrap;
  }

  .vertical-column-label .col-label {
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .color-plate-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
  }

  .color-plate {
    height: 40px;
  }
}

.sheet-product-details .featured-product-name {
  font-size: 18px;
  padding: 16px 10px;
}

.show-mobile {
  display: none;
}

/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/
.timeline-section {
  background-color: #000000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  --scroll-progress: 0;
}

.timeline-header {
  margin-bottom: 60px;
}

.timeline-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.timeline-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 40px;
}

/* Center line - no background */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 40px;
  width: 4px;
  background: transparent;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 2px;
}

/* Timeline fill - grows with scroll via CSS variable */
.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-primery-color);
  border-radius: 2px;
  transform: scaleY(var(--scroll-progress, 0));
  transform-origin: top;
}

/* Timeline items */
.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  width: 100%;
  gap: 0;
  will-change: transform, opacity;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content-left,
.timeline-content-right {
  flex: 1;
  box-sizing: border-box;
}

.timeline-content-left {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.timeline-content-right {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Content alignment - center for better visual balance */
.timeline-item.timeline-right .timeline-content-left {
  text-align: center;
}

.timeline-item.timeline-left .timeline-content-right {
  text-align: center;
}

/* Timeline center with glowing dot */
.timeline-center {
  position: relative;
  width: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 30px;
  z-index: 2;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.9),
    0 0 40px rgba(255, 255, 255, 0.6),
    0 0 60px rgba(255, 255, 255, 0.4);
  position: relative;
  animation: pulse-glow-white 2.5s ease-in-out infinite;
  transform: translateX(-6px);
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Dot appears when timeline item is in view */
.timeline-item.aos-animate .timeline-dot {
  opacity: 1;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 113, 188, 0.8),
      0 0 40px rgba(0, 113, 188, 0.5),
      0 0 60px rgba(0, 113, 188, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 113, 188, 1),
      0 0 60px rgba(0, 113, 188, 0.7),
      0 0 90px rgba(0, 113, 188, 0.5);
  }
}

@keyframes pulse-glow-white {

  0%,
  100% {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9),
      0 0 50px rgba(255, 255, 255, 0.6),
      0 0 75px rgba(255, 255, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 35px rgba(255, 255, 255, 1),
      0 0 70px rgba(255, 255, 255, 0.8),
      0 0 100px rgba(255, 255, 255, 0.6);
  }
}

/* White ball at the end of timeline - follows line fill end */
.timeline-end-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9),
    0 0 50px rgba(255, 255, 255, 0.6),
    0 0 75px rgba(255, 255, 255, 0.4);
  z-index: 10;
  animation: pulse-glow-white 2.5s ease-in-out infinite;
  opacity: 1;
  display: block !important;
  pointer-events: none;
}

/* Year marker - pill shape on right side */
.timeline-marker {
  position: relative;
  z-index: 2;
  padding: 0;
  background: transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
  margin-bottom: 20px;
  box-shadow: none;
}

.timeline-year {
  font-size: 3.5rem;
  font-weight: 900;
  font-style: normal;
  font-family: "Arial Black", "Impact", sans-serif;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color 0.4s ease;
  transform: skewX(-10deg);
}

/* Image styling */
.timeline-image {
  width: 100%;
  max-width: 500px;
  height: 333px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease, filter 0.6s ease, opacity 0.6s ease;
  filter: grayscale(100%) brightness(1);
  opacity: 1;
}

.timeline-image img:hover {
  filter: grayscale(0%) brightness(1);
}

/* All timeline items show in color */
.timeline-item.timeline-active .timeline-image img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* Text styling - starts very faded */
.timeline-text {
  padding-top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.8s ease, opacity 0.8s ease;
  opacity: 0.4;
}

.timeline-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.8;
  margin: 0;
  transition: color 0.8s ease, opacity 0.8s ease;
  opacity: 0.3;
}

/* Text becomes vibrant when item is in view */
.timeline-item .timeline-text h3 {
  color: #fff !important;
  opacity: 1 !important;
}

.timeline-item .timeline-text p {
  color: rgba(255, 255, 255, 0.8) !important;
  opacity: 1 !important;
}

/* Text alignment - center aligned for all items */
.timeline-item.timeline-right .timeline-content-left .timeline-text {
  text-align: center;
}

.timeline-item.timeline-left .timeline-content-right .timeline-text {
  text-align: center;
}

/* Active state - removed, using aos-animate instead */

/* RTL Support */
[dir="rtl"] .timeline-content-left {
  padding-right: 0;
  padding-left: 40px;
  align-items: flex-start;
}

[dir="rtl"] .timeline-content-right {
  padding-left: 0;
  padding-right: 40px;
  align-items: flex-end;
}

[dir="rtl"] .timeline-item.timeline-left .timeline-content-right .timeline-text {
  text-align: center;
}

[dir="rtl"] .timeline-item.timeline-right .timeline-content-left .timeline-text {
  text-align: center;
}

/* Center timeline year in RTL mode */
[dir="rtl"] .timeline-content-left,
[dir="rtl"] .timeline-content-right {
  align-items: center;
}

[dir="rtl"] .timeline-marker {
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .timeline-section {
    padding: 60px 0;
  }

  .timeline-header {
    margin-bottom: 40px;
  }

  .timeline-title {
    font-size: 2rem;
  }

  .timeline-line {
    display: none;
  }

  .timeline-center {
    display: none;
  }

  .timeline-end-dot {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 60px;
  }

  .timeline-content-left,
  .timeline-content-right {
    width: 100%;
    padding: 0;
  }

  .timeline-content-left {
    order: 2;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .timeline-content-right {
    order: 1;
    align-items: flex-start;
  }

  .timeline-marker {
    margin-bottom: 15px;
    padding: 0;
  }

  .timeline-year {
    font-size: 2.8rem;
    font-weight: 900;
    font-style: italic;
    font-family: "Arial Black", "Impact", sans-serif;
    letter-spacing: 2px;
    transform: skewX(-10deg);
  }

  .timeline-image {
    max-width: 100%;
    height: 250px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline-text {
    padding-top: 0;
  }

  .timeline-text h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .timeline-text p {
    font-size: 0.95rem;
  }

  /* RTL mobile */
  [dir="rtl"] .timeline-content-left,
  [dir="rtl"] .timeline-content-right {
    padding: 0;
    text-align: center !important;
  }

  [dir="rtl"] .timeline-content-right {
    align-items: center;
  }

  [dir="rtl"] .timeline-content-left {
    align-items: center;
  }

  [dir="rtl"] .timeline-marker {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  [dir="rtl"] .timeline-text {
    text-align: center !important;
    width: 100%;
  }

  [dir="rtl"] .timeline-text h3,
  [dir="rtl"] .timeline-text p {
    text-align: center !important;
  }

  .beams-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .timeline-title {
    font-size: 1.6rem;
  }

  .timeline-text h3 {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Product Display System
--------------------------------------------------------------*/

/* Product Page Layout - Sidebar + Main Content */
.product-page-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 0;
}

.product-sidebar-wrapper {
  position: sticky;
  top: 120px;
  height: fit-content;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.product-main-content {
  min-width: 0;
}

/* Product Sidebar Styles */
.product-sidebar {
  background: linear-gradient(180deg, rgba(0, 35, 102, 0.95) 0%, rgba(0, 25, 70, 0.98) 100%);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-sidebar .sidebar-section {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-sidebar .sidebar-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-sidebar h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Category List */
.category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list li a {
  display: block;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.category-list li a:hover,
.category-list li.hover a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.category-list li.active a {
  background: var(--accent-color);
  color: #fff;
  font-weight: 500;
}

/* Key Features Box */
.key-features-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 18px;
}

.key-features-box h4 i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.key-features-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-features-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.key-features-box li i {
  color: #3b82f6;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* E-Catalog Download Button in Sidebar */
.sidebar-section.e-catalog-download {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0;
}

.sidebar-section.e-catalog-download h4 {
  display: none;
}

.e-catalog-download p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: none;
}

/* E-Catalog Button - Blue Design */
.sidebar-section .e-catalog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.sidebar-section .e-catalog-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  color: #ffffff;
}

.sidebar-section .e-catalog-btn i {
  font-size: 1.2rem;
}

/* Disabled E-Catalog Button */
.sidebar-section .e-catalog-btn.disabled {
  background: rgba(100, 100, 100, 0.3);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  box-shadow: none;
}

.sidebar-section .e-catalog-btn.disabled:hover {
  background: rgba(100, 100, 100, 0.3);
  transform: none;
  box-shadow: none;
}

/* Spacing between key features and e-catalog */
.sidebar-section.key-features-box {
  margin-bottom: 20px;
  min-height: 200px;
  overflow: visible;
}

/* Slicer Container */
.slicer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(0, 35, 102, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slicer-group {
  flex: 1;
  min-width: 150px;
}

.slicer-group label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slicer-select {
  width: 100%;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slicer-select:hover,
.slicer-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  outline: none;
}

.slicer-select option {
  background: var(--dark-primery-color);
  color: #fff;
}

.slicer-reset {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.slicer-no-results {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.6);
}

/* Product Cards Grid */
.product-cards-section {
  padding: 0;
}

.product-cards-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.product-cards-header .product-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.product-card-large {
  background: linear-gradient(135deg, var(--dark-primery-color) 0%, rgba(0, 50, 120, 0.9) 100%);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-card-large .card-image {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}

.product-card-large .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card-large:hover .card-image img {
  transform: scale(1.05);
}

.product-card-large .card-content {
  padding: 20px;
}

.product-card-large .card-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.product-card-large .card-group {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 20px;
  margin-bottom: 15px;
}

.product-card-large .card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card-large .card-specs .data-pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
}

/* Matrix Table */
.product-matrix-section {
  padding: 0;
}

.product-matrix-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.product-matrix-header .header-content {
  flex: 1;
}

.product-matrix-header .product-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 10px;
  color: #fff;
}

.product-matrix-header .header-image {
  width: 200px;
  flex-shrink: 0;
}

.product-matrix-header .header-image img {
  width: 100%;
  border-radius: 10px;
}

.matrix-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 35, 102, 0.5);
}

.matrix-table th,
.matrix-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.matrix-table th {
  background: var(--dark-primery-color);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.matrix-table td {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.matrix-table tbody tr {
  transition: background 0.2s ease;
}

.matrix-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.matrix-table tbody tr:last-child td {
  border-bottom: none;
}

[dir="rtl"] .matrix-table th,
[dir="rtl"] .matrix-table td {
  text-align: right;
}

/* PPGI Layout - Three Column */
.ppgi-page {
  display: block;
}

.ppgi-layout {
  display: grid;
  grid-template-columns: 32% 68%;
  gap: 0;
  min-height: auto;
}

/* PPGI Left Column */
.ppgi-left {
  background: linear-gradient(180deg, #1e2433 0%, #171c28 100%);
  border-radius: 0;
  padding: 0;
  border: none;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.ppgi-left .sidebar-section {
  margin-bottom: 0;
  padding: 25px 30px;
  border-bottom: none;
}

.ppgi-left .sidebar-section:last-child {
  border-bottom: none;
}

.ppgi-left h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ppgi-left h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ppgi-left h4 i {
  font-size: 1.2rem;
  color: #3b82f6;
}

/* Key Features - PPGI Style */
.ppgi-left .key-features-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppgi-left .key-features-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ppgi-left .key-features-box .feature-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #3b82f6;
  border-radius: 50%;
  margin-top: 7px;
}

/* E-Catalog PPGI Style */
.ppgi-ecatalog {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  margin: 0 20px 25px 20px !important;
  padding: 0 !important;
  overflow: hidden;
}

.ppgi-ecatalog h4 {
  font-size: 1rem !important;
  margin-bottom: 12px !important;
  letter-spacing: 1px !important;
  display: none !important;
}

.ppgi-ecatalog p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
  line-height: 1.6;
  display: none !important;
}

.ppgi-download-btn i {
  font-size: 1.2rem;
}

.ppgi-download-btn {
  position: static !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100% !important;
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  border: none !important;
  border-radius: 12px !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
  z-index: 1 !important;
  transition: all 0.3s ease !important;
}

.ppgi-download-btn:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5) !important;
}

.ppgi-download-btn i {
  font-size: 1rem;
}

/* New 2-Column Layout for Standard Product Details */
.ppgi-left-new {
  background: linear-gradient(180deg, #1e2433 0%, #171c28 100%);
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ppgi-right-new {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #0f1419;
}

.ppgi-right-new .ppgi-main-image {
  width: 100%;
  max-width: 850px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.ppgi-right-new .ppgi-main-image:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.ppgi-right-new .ppgi-main-image img {
  width: 100%;
  height: auto;
  min-height: 700px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Product Info Box */
.product-info-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 15px 15px 10px 15px;
}

.product-title-main {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-info-box .product-description-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 0;
}

.product-info-box .product-description-text p {
  margin: 0;
}

/* Description - Show Full Text */
.description-preview {
  cursor: default;
  position: relative;
}

.description-truncated {
  display: block;
  overflow: visible;
  text-overflow: clip;
}

.description-preview::after {
  content: none;
}

/* Description Modal */
.description-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

.description-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.description-modal-content {
  background: linear-gradient(180deg, #1e2433 0%, #171c28 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

.description-modal-body {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  overflow-y: auto;
  flex: 1;
  margin-bottom: 20px;
  padding-right: 10px;
}

.description-modal-body::-webkit-scrollbar {
  width: 6px;
}

.description-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.description-modal-body::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.5);
  border-radius: 3px;
}

.description-modal-ok {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  min-width: 120px;
}

.description-modal-ok:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* E-Catalog at top of left column */
.ppgi-left-new .ppgi-ecatalog {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

/* Key Features in Left Column */
.key-features-box-left {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 15px;
  min-height: 200px;
  overflow: visible;
}

.key-features-box-left h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.key-features-box-left h4 i {
  font-size: 1.2rem;
  color: #3b82f6;
}

.key-features-box-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-features-box-left li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  overflow: visible;
  white-space: normal;
}

.key-features-box-left .feature-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #3b82f6;
  border-radius: 50%;
  margin-top: 7px;
}

/* Image Zoom Modal */
.image-zoom-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  cursor: zoom-out;
  animation: fadeIn 0.3s ease;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.image-zoom-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-zoom-modal img {
  max-width: 90vw;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
  margin: auto;
  display: none !important;
  position: relative;
}

.image-zoom-modal.active img {
  display: block !important;
}

/* Force hide zoom modal elements */
#imageZoomModal,
#zoomedImage {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

.image-zoom-close {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  line-height: 1;
  z-index: 99999;
  pointer-events: auto;
}

.image-zoom-close:hover {
  background: rgba(255, 0, 0, 1);
  transform: translateY(-50%);
  box-shadow: 0 0 30px rgba(255, 0, 0, 1);
  border-color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Full Width Product Details Section */
.product-details-full {
  background: linear-gradient(180deg, #1e2433 0%, #171c28 100%);
  padding: 40px;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Slicer Section */
.slicer-section-wrapper {
  margin-bottom: 48px;
}

.slicer-section-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Diameter Slicer Buttons */
.diameter-slicer-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.diameter-slicer-btn {
  padding: 16px 40px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.diameter-slicer-btn:hover {
  border-color: #3b82f6;
  color: #fff;
  background: rgba(59, 130, 246, 0.1);
}

.diameter-slicer-btn.active {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.2);
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Available Specs Section */
.available-specs-section {
  margin-top: 24px;
}

.specs-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.specs-heading i {
  color: #3b82f6;
  font-size: 1.3rem;
}

/* Tabs Wrapper with Arrows */
.spec-tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

.spec-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.2);
  border: 2px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.spec-arrow:hover {
  background: rgba(59, 130, 246, 0.4);
  border-color: #3b82f6;
  transform: scale(1.1);
}

.spec-arrow:active {
  transform: scale(0.95);
}

/* Group Header Tabs Container */
.spec-group-tabs {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  flex: 1;
  scrollbar-width: none;
}

.spec-group-tabs::-webkit-scrollbar {
  display: none;
}

.spec-group-tab {
  padding: 18px 40px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.spec-group-tab:hover {
  border-color: rgba(59, 130, 246, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.spec-group-tab.active {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.15);
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.spec-group-tab.active:hover {
  transform: none;
}

/* Specs Section Container */
.specs-section {
  padding: 32px;
  background: rgb(19 36 57);
  border-radius: 16px;
}

/* Specs Cards Grid */
.specs-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 0;
}

.spec-card-item {
  background: rgb(255 255 255);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 28px;
  transition: all 0.3s ease;
  overflow: hidden;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* .spec-card-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(0, 0, 0, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
} */

.spec-card-left {
  flex: 1;
  text-align: left;
  min-width: 0;
  max-width: 65%;
}

.spec-card-right {
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}

.spec-card-size {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4a90e2;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.spec-card-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.spec-card-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: #132439;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

/* RTL Support for Arabic */
[dir="rtl"] .spec-card-left {
  text-align: right;
}

[dir="rtl"] .spec-card-right {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] .spec-card-item {
  flex-direction: row-reverse;
}

.slicer-no-results {
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.slicer-no-results p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin: 0;
}

.product-details-full .product-specs-list {
  margin-bottom: 32px;
}

.product-details-full .key-features-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  margin-top: 32px;
  min-height: 200px;
  overflow: visible;
}

.product-details-full .key-features-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-details-full .key-features-box h4 i {
  font-size: 1.2rem;
  color: #3b82f6;
}

.product-details-full .key-features-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-details-full .key-features-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  overflow: visible;
  white-space: normal;
}

.product-details-full .key-features-box .feature-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: #3b82f6;
  border-radius: 50%;
  margin-top: 7px;
}

/* Available Profiles - PPGI Style */
.ppgi-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.ppgi-profiles .profile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

/* Hover effect removed - auto-selection active */

.ppgi-profiles .profile-item.active {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.ppgi-profiles .profile-image-wrapper {
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 0;
}

.ppgi-profiles .profile-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ppgi-profiles .profile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppgi-profiles .profile-placeholder i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.25);
}

.ppgi-profiles .profile-name {
  font-size: 0.7rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  padding: 10px 6px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* PPGI Center - Main Image */
.ppgi-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a2238 0%, #0d1320 100%);
}

.ppgi-main-image {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: none;
}

.ppgi-main-image img {
  max-width: 100%;
  max-height: 700px;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* PPGI Right - Color Selector */
.ppgi-right {
  background: linear-gradient(180deg, #1e2433 0%, #171c28 100%);
  border-radius: 0;
  padding: 25px 20px;
  border: none;
  height: 100%;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.ppgi-right::-webkit-scrollbar {
  width: 4px;
}

.ppgi-right::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.ppgi-right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.color-selector-header {
  margin-bottom: 25px;
  padding-bottom: 0;
  border-bottom: none;
}

.color-selector-header .ppgi-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 3px;
}

.color-options-label {
  display: flex;
  align-items: center;
  gap: 15px;
}

.color-options-label span:first-child {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.selected-color-code {
  display: inline-block;
  padding: 4px 12px;
  background: transparent;
  color: #fff;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Product Description Text */
.product-description-text {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-description-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* Product Specifications List */
.product-specs-list {
  margin-bottom: 25px;
}

.product-specs-list .spec-group {
  margin-bottom: 20px;
}

.product-specs-list .spec-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 500;
}

.product-specs-list .spec-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-specs-list .spec-value-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Coatings Section Container */
.coatings-section-container {
  margin-top: 40px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.coatings-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

/* Coatings Cards Grid */
.coatings-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.coating-card-item {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hover effect removed - auto-selection active */

.coating-image-large {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.coating-placeholder {
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
}

/* Hover effect removed - auto-selection active */

.coating-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coating-name-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.coating-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.coating-variant-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

/* Matrix Table Section (Vertical Layout) */
.matrix-section-container {
  margin-top: 0px;
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(30, 35, 45, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

/* Matrix Range Filter Tabs */
.matrix-range-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.matrix-range-tab {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.matrix-range-tab:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  color: #3b82f6;
}

.matrix-range-tab.active {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

/* Enhanced Matrix - Two-Tier Header */
.enhanced-matrix .matrix-category-row {
  background: rgba(0, 0, 0, 0.5);
}

.enhanced-matrix .matrix-category-header {
  background: rgba(59, 130, 246, 0.3) !important;
  color: #3b82f6;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

.enhanced-matrix .matrix-values-row th {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 600;
}

.enhanced-matrix .matrix-label-header {
  vertical-align: middle;
  font-size: 0.95rem;
}

.matrix-table-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.5);
  min-width: 600px;
}

.matrix-table thead th {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  padding: 16px 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-align: center;
}

.matrix-label-header {
  position: sticky !important;
  left: 0 !important;
  z-index: 100 !important;
  background: #3b82f6 !important;
  min-width: 180px !important;
  max-width: 180px !important;
  width: 180px !important;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.5);
  color: #ffffff !important;
  font-weight: 700;
}

.matrix-table tbody td {
  padding: 16px 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}

.matrix-table tbody tr:nth-child(even) {
  background: rgba(59, 130, 246, 0.08);
}

.matrix-table tbody tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.3);
}

.matrix-table tbody tr:hover td {
  background: rgba(59, 130, 246, 0.2);
}

.matrix-label-cell {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  position: sticky !important;
  left: 0 !important;
  z-index: 50;
  min-width: 180px;
  max-width: 180px;
  width: 180px;
  border-right: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.matrix-table tbody .matrix-label-cell {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}

.matrix-value-cell {
  font-size: 0.9rem;
  min-width: 80px;
}

.matrix-value-cell i {
  font-size: 1.5rem;
  color: #10b981;
  font-weight: bold;
}

/* Colors Section Container */
.colors-section-container {
  margin-top: 40px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.colors-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

/* Colors Cards Grid - 4 per row */
.colors-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.color-card-item {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.color-card-item:hover {
  border-color: #3b82f6;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.color-swatch-large {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.color-card-item:hover .color-swatch-large {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.color-swatch-large.swatch-image {
  background-size: cover;
  background-position: center;
}

.color-swatch-large.swatch-pattern {
  background: repeating-linear-gradient(45deg,
      #ccc,
      #ccc 3px,
      #fff 3px,
      #fff 6px);
}

.color-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.color-code-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.color-name-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Color Grid - PPGI Style */
.ppgi-colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 15px;
  max-height: none;
  overflow-y: visible;
  padding-right: 0;
}

.ppgi-colors .color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.ppgi-colors .color-swatch:hover .swatch {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.ppgi-colors .color-swatch.active .swatch {
  box-shadow: 0 0 0 3px #fff;
}

.ppgi-colors .swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.ppgi-colors .swatch-image {
  background-size: cover;
  background-position: center;
}

.ppgi-colors .swatch-pattern {
  background: repeating-linear-gradient(45deg,
      #ccc,
      #ccc 3px,
      #fff 3px,
      #fff 6px);
}

.ppgi-colors .color-code {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 3px;
  text-align: center;
}

.ppgi-colors .color-name {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.ppgi-description {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ppgi-description p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Product Image Active/Inactive States */
.product-image-container {
  transition: all 0.3s ease;
}

.product-image-container.inactive {
  opacity: 0.5;
  filter: grayscale(50%);
}

.product-image-container.inactive:hover {
  opacity: 0.8;
  filter: grayscale(20%);
}

/* Responsive Styles */
@media (max-width: 1399px) {
  .ppgi-layout {
    grid-template-columns: 280px 1fr 280px;
  }

  .ppgi-colors .swatch {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 1199px) {
  .ppgi-layout {
    grid-template-columns: 260px 1fr 260px;
  }

  .ppgi-colors {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .ppgi-colors .swatch {
    width: 50px;
    height: 50px;
  }

  .color-selector-header .ppgi-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 991px) {
  .product-page-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-sidebar-wrapper {
    position: relative;
    top: 0;
    max-height: none;
  }

  .ppgi-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ppgi-left,
  .ppgi-right {
    position: relative;
    top: 0;
    max-height: none;
    height: auto;
    border: none;
  }

  .ppgi-left {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .ppgi-left .key-features-box {
    grid-column: 1;
  }

  .ppgi-left .ppgi-ecatalog {
    grid-column: 2;
    margin: 25px 20px !important;
  }

  .ppgi-left .available-profiles {
    grid-column: 1 / -1;
  }

  .ppgi-profiles {
    grid-template-columns: repeat(4, 1fr);
  }

  .ppgi-center {
    order: 2;
    min-height: auto;
  }

  .ppgi-right {
    order: 3;
    padding: 30px;
  }

  .ppgi-colors {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  .ppgi-colors .swatch {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 767px) {
  .product-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
  }

  .slicer-container {
    flex-direction: column;
    align-items: stretch;
  }

  .slicer-group {
    min-width: 100%;
  }

  .product-matrix-header {
    flex-direction: column;
  }

  .product-matrix-header .header-image {
    width: 100%;
    max-width: 200px;
  }

  .ppgi-main-image {
    min-height: auto;
    padding: 30px;
  }

  .ppgi-left {
    display: block;
  }

  .ppgi-left .sidebar-section {
    padding: 20px;
  }

  .ppgi-left .ppgi-ecatalog {
    margin: 0 15px 20px 15px !important;
  }

  .ppgi-profiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ppgi-right {
    padding: 25px 20px;
  }

  .ppgi-colors {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .ppgi-colors .swatch {
    width: 50px;
    height: 50px;
  }

  .ppgi-colors .color-code {
    font-size: 0.65rem;
  }

  .ppgi-colors .color-name {
    font-size: 0.6rem;
  }

  /* New 2-column layout responsive */
  .ppgi-layout {
    grid-template-columns: 1fr;
  }

  .ppgi-left-new {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .ppgi-right-new {
    padding: 30px 20px;
  }

  .product-title-main {
    font-size: 1.4rem;
  }

  .product-info-box {
    padding: 20px;
  }

  .product-details-full {
    padding: 25px 20px;
  }

  .spec-tabs-wrapper {
    gap: 8px;
  }

  .spec-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .spec-group-tabs {
    gap: 12px;
    padding: 16px;
  }

  .spec-group-tab {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .specs-section {
    padding: 24px;
  }

  .specs-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }

  .spec-card-item {
    padding: 20px 16px;
    min-height: 80px;
    gap: 20px;
  }

  .spec-card-left {
    max-width: 60%;
  }

  .spec-card-size {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .spec-card-value {
    font-size: 0.95rem;
  }

  .spec-card-label {
    font-size: 0.6rem;
  }

  .matrix-section-container {
    padding: 24px 16px;
  }

  .matrix-table {
    min-width: 500px;
  }

  .matrix-table thead th {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .matrix-table tbody td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .matrix-label-header,
  .matrix-label-cell {
    min-width: 100px;
  }

  .matrix-value-cell {
    min-width: 60px;
  }

  .matrix-value-cell i {
    font-size: 1.2rem;
  }

  .coatings-section-container {
    padding: 24px;
  }

  .coatings-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .coating-card-item {
    padding: 16px;
  }

  .coating-image-large {
    height: 120px;
  }

  .coatings-heading {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .colors-section-container {
    padding: 24px;
  }

  .colors-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }

  .color-card-item {
    padding: 20px 16px;
  }

  .color-swatch-large {
    width: 60px;
    height: 60px;
  }

  .colors-heading {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .specs-heading {
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  .product-cards-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-cards-header .product-title {
    font-size: 1.4rem;
  }

  .ppgi-profiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .ppgi-colors {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .ppgi-colors .swatch {
    width: 45px;
    height: 45px;
  }

  .color-selector-header .ppgi-title {
    font-size: 1.4rem;
  }

  .color-options-label span:first-child {
    font-size: 0.7rem;
  }
}

/* RTL Support for Product Display System */
[dir="rtl"] .product-page-layout {
  direction: rtl;
}

[dir="rtl"] .ppgi-layout {
  direction: rtl;
}

/* RTL Support for Spec Tabs */
[dir="rtl"] .spec-tabs-wrapper {
  direction: rtl;
}

[dir="rtl"] .spec-group-tabs {
  direction: rtl;
}

[dir="rtl"] .spec-arrow-left {
  order: 2;
}

[dir="rtl"] .spec-arrow-right {
  order: 0;
}

/* RTL Support for Matrix Table */
[dir="rtl"] .matrix-table {
  direction: rtl;
}

[dir="rtl"] .matrix-label-header {
  left: auto;
  right: 0;
}

[dir="rtl"] .matrix-label-cell {
  left: auto;
  right: 0;
  text-align: center;
  border-right: none;
  border-left: 2px solid rgba(59, 130, 246, 0.3);
}

[dir="rtl"] .ppgi-image-info .color-code {
  margin-left: 0;
  margin-right: 8px;
}

[dir="rtl"] .color-grid {
  padding-right: 0;
  padding-left: 5px;
}

[dir="rtl"] .key-features-box li {
  flex-direction: row-reverse;
}

[dir="rtl"] .e-catalog-btn {
  flex-direction: row-reverse;
}

/*--------------------------------------------------------------
# Products Page - Sidebar Layout
--------------------------------------------------------------*/
.product-listing-new {
  padding: 120px 0 80px;
  min-height: auto;
  background-color: #000;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 35, 102, 0.1) 100%);
}

/* Category Sidebar */
.category-sidebar {
  position: sticky;
  top: 120px;
  padding: 24px;
  background-color: #0a0a0a;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.category-sidebar .sidebar-title {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(237, 63, 39, 0.3);
  text-transform: uppercase;
}

.category-sidebar .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-sidebar .category-list li {
  margin-bottom: 4px;
}

.category-sidebar .category-link {
  display: block;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-left: 3px solid transparent;
}

.category-sidebar .category-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(0, 113, 188, 0.5);
  padding-left: 22px;
}

.category-sidebar .category-link.active {
  color: #fff;
  background: rgba(0, 113, 188, 0.15);
  border-left-color: var(--light-primery-color);
  padding-left: 22px;
  font-weight: 500;
}

/* Products Top Bar */
.products-top-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.products-top-bar .search-box {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.products-top-bar .search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}

.products-top-bar .search-box input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.products-top-bar .search-box input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.products-top-bar .search-box input:focus {
  outline: none;
  border-color: var(--light-primery-color);
  background: rgba(255, 255, 255, 0.08);
}

.products-top-bar .btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.products-top-bar .btn-catalog:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.products-top-bar .btn-catalog i {
  font-size: 18px;
}

/* Mobile Category Dropdown */
.mobile-category-dropdown {
  width: 100%;
  margin-bottom: 8px;
}

.mobile-category-dropdown .form-select {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 40px 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
}

.mobile-category-dropdown .form-select:focus {
  border-color: var(--light-primery-color);
  box-shadow: none;
}

.mobile-category-dropdown .form-select option {
  background: #1a1a1a;
  color: #fff;
}

/* Products Grid Container */
.products-grid-container {
  margin-top: 10px;
}

.products-grid-container .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.products-grid-container .product-item {
  margin-bottom: 0;
}

.products-grid-container .featured-product-item {
  height: 100%;
  transition: all 0.4s ease;
}

.products-grid-container .featured-product-img {
  aspect-ratio: 4/3;
}

/* Grayscale Effect for Product Images - Default state */
.product-image-grayscale {
  filter: grayscale(80%) brightness(0.7);
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* Remove grayscale on hover - Active state */
.product-card-hover:hover .product-image-grayscale {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

/* When one product is hovered, keep others greyed out */
.products-grid-container:has(.product-card-hover:hover) .product-card-hover:not(:hover) .product-image-grayscale {
  filter: grayscale(100%) brightness(0.5);
}

/* Apply same grayscale effect to Featured Products on home page */
.featured-products-swiper:has(.product-card-hover:hover) .product-card-hover:not(:hover) .product-image-grayscale {
  filter: grayscale(100%) brightness(0.5);
}

/* Featured Products slider - ensure hover effects work properly */
.featured-products-swiper .product-card-hover {
  display: flex;
  flex-direction: column;
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.featured-products-swiper .product-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 113, 188, 0.3);
  z-index: 10;
}

/* Featured Products - Product Specs styling */
.featured-products-swiper .product-specs-text {
  color: #0071bc;
  font-size: 0.85em;
  font-weight: 500;
  margin: 8px 0;
  text-align: left;
}

/* Featured Products - Product info background */
.featured-products-swiper .featured-product-info {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
}

/* Featured Products - Bottom section alignment */
.featured-products-swiper .featured-product-bottom {
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Featured Products - Description limit */
.featured-products-swiper .featured-product-desc {
  -webkit-line-clamp: 2;
  min-height: 2.6em;
}

/* Blue Badge on Products */
.product-badge-blue {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #0071bc;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 113, 188, 0.4);
}

/* Product Specifications Text */
.product-specs-text {
  color: #0071bc;
  font-size: 0.85em;
  font-weight: 500;
  margin: 8px 0;
  text-align: left;
}

/* Enhanced hover state for product cards */
.product-card-hover {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 113, 188, 0.3);
}

/* Product Cards - Vertical Style */
.product-card-vertical {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.product-card-vertical:hover {
  transform: translateY(-4px);
}

.product-card-vertical .product-card-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card-vertical .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-vertical:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-vertical .product-card-body {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-vertical .product-card-name {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.product-card-vertical .product-card-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-card-vertical .product-card-action {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
}

.product-card-vertical .view-details-link {
  color: var(--light-primery-color);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-vertical:hover .view-details-link {
  color: var(--accent-color);
}

.product-card-vertical .view-details-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.product-card-vertical:hover .view-details-link i {
  transform: translateX(4px);
}

/* No products message */
.no-products-message {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
}

/* RTL Support for Sidebar Layout */
[dir="rtl"] .category-sidebar {
  padding-right: 0;
  padding-left: 20px;
}

[dir="rtl"] .products-top-bar .search-box i {
  left: auto;
  right: 16px;
}

[dir="rtl"] .products-top-bar .search-box input {
  padding: 14px 48px 14px 16px;
}

[dir="rtl"] .product-card-vertical .product-card-action {
  justify-content: flex-start;
}

[dir="rtl"] .product-card-vertical:hover .view-details-link i {
  transform: translateX(-4px);
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
  .product-card-vertical .product-card-name {
    font-size: 15px;
  }

  .product-card-vertical .product-card-text {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .product-listing-new {
    padding-top: 100px;
  }

  .products-top-bar {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .mobile-category-dropdown {
    order: 1;
    width: 100%;
    margin-bottom: 12px;
  }

  .mobile-category-dropdown .form-select {
    padding: 12px 40px 12px 14px !important;
    width: 100%;
    font-size: 13px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    line-height: normal;
    text-overflow: clip;
    overflow: visible;
  }

  .products-top-bar .search-box {
    order: 2;
    flex: 1;
    min-width: 0;
    margin-right: 8px;
  }

  .products-top-bar .btn-catalog {
    order: 3;
    padding: 14px 16px;
    font-size: 0;
    width: auto;
    min-width: 52px;
    flex-shrink: 0;
  }

  .products-top-bar .btn-catalog i {
    font-size: 20px;
    margin: 0 !important;
  }

  .products-top-bar .btn-catalog span {
    display: none;
  }
}

@media (max-width: 767px) {
  .products-top-bar {
    gap: 12px;
  }

  .products-top-bar .search-box,
  .products-top-bar .btn-catalog {
    display: inline-flex;
  }

  .product-card-vertical .product-card-image {
    aspect-ratio: 16/10;
  }

  .product-card-vertical .product-card-body {
    padding: 16px 0;
  }

  .product-card-vertical .product-card-name {
    font-size: 14px;
  }

  .product-card-vertical .product-card-text {
    font-size: 13px;
    margin-bottom: 12px;
  }

  /* Mobile Touch Optimization */
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  }

  a,
  button,
  .clickable {
    touch-action: manipulation;
  }

  /* Ensure glightbox images are clickable */
  img {
    pointer-events: auto;
  }

  .glightbox img {
    cursor: pointer;
  }
}

/* ===========================
   PPGI Layout Styles
   =========================== */

.ppgi-layout-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 15px;
}

.ppgi-three-column {
  display: grid;
  grid-template-columns: 340px minmax(400px, 1fr) 340px;
  gap: 5px;
  min-height: 750px;
  align-items: stretch;
}

/* Left Sidebar */
.ppgi-left-sidebar {
  background: linear-gradient(180deg, #1e2433 0%, #171c28 100%);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ppgi-section-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.ppgi-section-title i {
  color: #3b82f6;
  font-size: 1.1rem;
}

/* Key Features */
.key-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.key-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.6;
}

.key-features-list li i {
  color: #3b82f6;
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 8px;
}

/* E-Catalog Section */
.ecatalog-box {
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.ecatalog-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.ecatalog-box p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-download-catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-download-catalog:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  color: #ffffff;
}

.btn-download-catalog i {
  font-size: 1.2rem;
}

/* Profiles Grid */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.profile-item {
  background: #1a1d28;
  border: 2px solid #5a5d68;
  border-radius: 6px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Hover effect removed - auto-selection active */

.profile-image,
.profile-image-wrapper {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background: #0f1117;
  border-radius: 0;
  padding: 12px;
}

.profile-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.profile-name {
  font-size: 0.7rem;
  font-weight: 400;
  color: #e0e0e0;
  text-transform: none;
  text-align: center;
  padding: 10px 8px;
  width: 100%;
  background: #16181f;
  border-top: none;
}

/* Coatings Grid */
.coatings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.coating-item {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect removed - auto-selection active */

.coating-image {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 10px;
}

.coating-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.coating-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}

/* New Coating Grid Layout - Dark Theme */
.ppgi-coatings-section .coatings-grid-new {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  margin-top: 15px !important;
}

.ppgi-coatings-section .coating-card {
  background: linear-gradient(135deg, #1a1d29 0%, #0f1117 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  transition: none !important;
  /* Disabled to remove hover effect appearance */
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 180px !important;
  height: auto !important;
}

/* Hover effect removed - auto-selection active */

.ppgi-coatings-section .coating-card-image {
  background: #ffffff !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.ppgi-coatings-section .coating-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: grayscale(0%) brightness(1) !important;
  transition: filter 0.4s ease, transform 0.4s ease !important;
  display: block !important;
}

/* Active coating card - scale up slightly */
.ppgi-coatings-section .coating-card.active .coating-card-image img {
  transform: scale(1.05) !important;
}

/* Hover effect removed - auto-selection active */

/* Hover effect removed - auto-selection active */

.ppgi-coatings-section .coating-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
}

.ppgi-coatings-section .coating-card-label {
  display: block !important;
  background: #000000 !important;
  padding: 8px 10px !important;
  text-align: center !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  text-transform: capitalize !important;
  letter-spacing: 0.2px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  flex-shrink: 0 !important;
  height: auto !important;
  line-height: 1.3 !important;
  min-height: 30px !important;
}

/* Coating Card Lightbox Link */
.ppgi-coatings-section .coating-card-image-link {
  display: flex !important;
  flex: 1 !important;
  text-decoration: none !important;
  cursor: zoom-in !important;
  position: relative !important;
  overflow: hidden !important;
}

/* GLightbox Description Styling - Center at Top */
.gslide-description,
.glightbox-clean .gslide-description,
.glightbox-modern .gslide-description {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  margin: 0 !important;
  padding: 20px 30px !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%) !important;
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* GLightbox Close Button Background */
.gclose,
.glightbox-clean .gclose,
.glightbox-modern .gclose {
  background: rgba(0, 0, 0, 0.8) !important;
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}

.gclose:hover,
.glightbox-clean .gclose:hover,
.glightbox-modern .gclose:hover {
  background: rgba(255, 0, 0, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: scale(1.1) !important;
}

.gclose svg,
.glightbox-clean .gclose svg,
.glightbox-modern .gclose svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) !important;
}

/* Center Image */
.ppgi-center-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(180deg, #1a2238 0%, #0d1320 100%);
  border-radius: 12px;
  padding: 0;
  min-height: 950px !important;
  overflow: hidden;
}

.ppgi-center-image .product-main-image {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  cursor: zoom-in !important;
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  position: relative;
}

.product-main-image:hover {
  transform: scale(1.02);
}

.ppgi-center-image .product-main-image img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  max-width: 100% !important;
  object-fit: contain !important;
  border-radius: 0;
  position: relative !important;
}

/* Right Sidebar */
.ppgi-right-sidebar {
  background: linear-gradient(180deg, #1e2433 0%, #171c28 100%);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ppgi-right-sidebar .sidebar-section {
  background: transparent;
  border-radius: 0;
  padding: 25px 0;
  margin-bottom: 20px;
}

.ppgi-right-sidebar h4 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ppgi-product-header {
  margin-bottom: 30px;
}

.ppgi-product-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.color-options-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(59, 130, 246, 0.15);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
}

.badge-count {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  padding: 6px 14px;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
}

/* Colors Section Title */
.colors-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 20px 0;
  padding: 0 0 15px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #3b82f6;
  display: inline-block;
  width: auto;
}

/* Colors Grid - 4 per row on desktop */
.ppgi-colors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ppgi-color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ppgi-color-item:hover {
  transform: translateY(-4px);
}

.color-swatch {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ppgi-color-item:hover .color-swatch {
  border-color: #3b82f6;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  transform: scale(1.05);
}

.color-info {
  text-align: center;
}

.color-code {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.color-name {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
}

/* Clickable Color Swatches */
.clickable-color {
  cursor: pointer;
  position: relative;
}

.clickable-color:hover {
  transform: scale(1.05);
}

/* Color Modal */
.color-modal-content {
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.color-display-large {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.color-details h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.color-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.color-hex-display {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: inline-block;
}

.hex-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-right: 8px;
}

.hex-value {
  color: #3b82f6;
  font-weight: 700;
  font-size: 1rem;
  font-family: monospace;
}

/* Responsive */
@media (max-width: 1199px) {
  .ppgi-three-column {
    grid-template-columns: 300px 1fr 300px;
    gap: 8px;
  }

  .ppgi-product-title {
    font-size: 1.5rem;
  }

  .ppgi-colors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ppgi-three-column {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .ppgi-left-sidebar,
  .ppgi-right-sidebar {
    order: 2;
  }

  .ppgi-center-image {
    order: 1;
    min-height: 500px !important;
    padding: 30px 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .ppgi-center-image .product-main-image-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .ppgi-center-image .product-main-image {
    margin: 0 auto !important;
  }

  .ppgi-center-image .product-main-image img {
    height: 450px !important;
    max-height: 600px !important;
    margin: 0 auto !important;
  }

  .ppgi-colors-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ppgi-right-sidebar {
    max-height: none;
  }
}

@media (max-width: 767px) {
  .pro-key-features {
    padding-left: 0 !important;
  }

  .ppgi-layout-container {
    padding: 20px 0;
  }

  .ppgi-left-sidebar,
  .ppgi-right-sidebar {
    padding: 20px;
  }

  .ppgi-center-image {
    padding: 15px 0;
    min-height: 300px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .ppgi-center-image .product-main-image-container {
    display: block !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
  }

  .ppgi-coatings-section .coatings-grid-new {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .ppgi-row {
    flex-direction: column-reverse;
  }

  .ppgi-left-new .ppgi-ecatalog {
    padding: 0 20px 15px !important;
  }

  .ppgi-left-sidebar {
    margin-top: 30px;
  }

  .ppgi-center-image .product-main-image {
    margin: 0 auto !important;
  }

  .ppgi-center-image .product-main-image img {
    height: 280px !important;
    max-height: 350px !important;
    margin: 0 auto !important;
  }

  .profiles-grid,
  .coatings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ppgi-colors-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .color-swatch {
    width: 35px;
    height: 35px;
  }

  .color-info {
    font-size: 0.7rem;
  }

  .color-code {
    font-size: 0.65rem !important;
  }

  .color-name {
    font-size: 0.6rem !important;
  }

  .ppgi-product-title {
    font-size: 1.3rem;
  }
}

/* RTL Support */
[dir="rtl"] .ppgi-section-title,
[dir="rtl"] .key-features-list li {
  flex-direction: row-reverse;
}

[dir="rtl"] .color-options-badge {
  flex-direction: row-reverse;
}

/* Force remove all bottom spacing on product detail pages - OVERRIDE EVERYTHING */
.product-listing.product-detail-page {
  min-height: auto !important;
  height: auto !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.product-listing.product-detail-page .container {
  min-height: auto !important;
  height: auto !important;
  padding-bottom: 40px !important;
}

.product-page-layout {
  min-height: auto !important;
  height: auto !important;
}

section.product-listing {
  min-height: auto !important;
  height: auto !important;
  padding-bottom: 40px !important;
}

/* Force body and main to not have excessive height */
body {
  min-height: auto !important;
  height: auto !important;
}

main {
  min-height: auto !important;
  height: auto !important;
  background-color: #000000;
}

main .container {
  min-height: auto !important;
  height: auto !important;
}

/* ===========================
   FINAL FIX: Remove all bottom space on product pages
   =========================== */
.product-detail-page,
.product-detail-page *,
.ppgi-layout-container,
.ppgi-layout-container *,
.ppgi-three-column,
.ppgi-center,
.ppgi-main-image,
.ppgi-left-sidebar,
.ppgi-right-sidebar,
.product-listing-new .container,
section.product-listing .container {
  min-height: auto !important;
}

/* Ensure sections don't add extra space */
section.product-listing,
section.product-detail-page {
  padding-bottom: 40px !important;
  margin-bottom: 0 !important;
}

/* Container should fit content */
.product-detail-page .container,
.product-listing .container {
  padding-bottom: 40px !important;
  margin-bottom: 0 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  max-width: 1400px !important;
}

/* Product detail page specific fixes */
section.product-listing.product-detail-page {
  margin-top: 100px !important;
  margin-bottom: 0 !important;
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  min-height: auto !important;
  max-height: none !important;
  height: fit-content !important;
  display: block !important;
}

/* Force all child elements to fit content */
section.product-listing.product-detail-page>*,
section.product-listing.product-detail-page .container,
section.product-listing.product-detail-page .container>*,
.ppgi-layout-container,
.ppgi-layout-container>*,
.product-content-wrapper,
.specs-section-container,
.matrix-section-container,
.coatings-section,
.colors-section {
  min-height: auto !important;
  height: auto !important;
  flex-grow: 0 !important;
}

/* ========================================
   GLightbox Image Display Fixes
   ======================================== */
.glightbox-container .gslide-image img,
.glightbox-container .gslide-media img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.glightbox-container .gslide-image,
.glightbox-container .gslide-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.glightbox-container img {
  pointer-events: auto;
}

/* Force GLightbox Image Visibility */
.glightbox-container .gslide-image img {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 10000 !important;
  position: relative !important;
}

.glightbox-container .gslide-media {
  background: transparent !important;
}

.glightbox-container .ginner-container {
  z-index: 9999 !important;
}

/* Remove any dark overlays on image */
.gslide-image::before,
.gslide-image::after,
.gslide-media::before,
.gslide-media::after {
  display: none !important;
}

/* Ensure proper background */
.glightbox-container {
  background: rgba(0, 0, 0, 0.95) !important;
}

.goverlay {
  background: rgba(0, 0, 0, 0.95) !important;
}

/* Responsive Styles for Hero Title */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .company-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    padding-left: 14px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .red-line {
    height: 35px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .company-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.2px;
    padding-left: 12px;
  }

  .red-line {
    height: 30px;
  }

  .hero-description {
    font-size: 0.95rem;
  }
}

/* Featured Products Header with View All Button */
.featured-header {
  margin-bottom: 3rem !important;
}

.featured-header .section-small-title h2 {
  margin-bottom: 0;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #4a9eff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.view-all-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #4a9eff;
  transition: width 0.3s ease;
}

.view-all-btn:hover {
  color: #0071bc;
  transform: translateX(5px);
}

.view-all-btn:hover::before {
  width: 100%;
}

.view-all-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* RTL Support for View All Button */
[dir="rtl"] .view-all-btn {
  flex-direction: row-reverse;
}

[dir="rtl"] .view-all-btn:hover {
  transform: translateX(-5px);
}

[dir="rtl"] .view-all-btn:hover i {
  transform: translateX(-5px);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .featured-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }

  .view-all-btn {
    font-size: 12px;
    padding: 10px 20px;
  }
}

/* Product Hero Section - Full Width Image at Top */
.product-page-layout .product-hero-section {
  position: relative;
  width: 100vw;
  height: auto;
  min-height: auto;
  max-height: none;
  background: #f5f5f5;
  overflow: hidden;
  margin-top: 120px;
  margin-bottom: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.product-page-layout .product-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-page-layout .product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-title-overlay {
  position: absolute;
  left: 40px;
  top: 40px;
  background: rgba(30, 40, 60, 0.95);
  padding: 30px 40px;
  border-radius: 0;
  max-width: 500px;
  z-index: 10;
}

.product-title-hero {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

/* Content Below Image */
.product-content-below {
  padding: 0 0 40px;
}

.product-content-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.product-details-column {
  max-width: 900px;
}

.product-catalog-column {
  min-width: 300px;
}

/* RTL Support */
[dir="rtl"] .product-title-overlay {
  left: auto;
  right: 40px;
}

/* Responsive */
@media (max-width: 992px) {
  .product-hero-section {
    height: 50vh;
    min-height: 350px;
  }

  .product-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-title-overlay {
    left: 20px;
    padding: 20px 30px;
    max-width: calc(100% - 40px);
  }

  [dir="rtl"] .product-title-overlay {
    right: 20px;
  }

  .product-title-hero {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-hero-section {
    height: auto;
    min-height: auto;
    margin-bottom: 20px;
  }

  .product-title-overlay {
    left: 15px;
    padding: 15px 20px;
  }

  [dir="rtl"] .product-title-overlay {
    right: 15px;
  }

  .product-title-hero {
    font-size: 1.25rem;
  }

  .product-content-below {
    padding: 0 0 30px;
  }
}

/* Two-Column Layout with Wider Image */
.ppgi-layout-wide {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 40px;
  margin-bottom: 40px;
}

.ppgi-left-narrow {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ppgi-right-wide {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppgi-right-wide .ppgi-main-image {
  display: block;
  width: 100%;
  cursor: pointer;
}

.ppgi-right-wide .ppgi-main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 750px;
}

/* Responsive */
@media (max-width: 992px) {
  .ppgi-layout-wide {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ppgi-right-wide {
    order: -1;
  }
}

@media (max-width: 768px) {
  .ppgi-layout-wide {
    gap: 20px;
  }

  .ppgi-right-wide {
    padding: 20px;
  }
}

/* Responsive Colors Grid */
@media (max-width: 768px) {
  .colors-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .color-card-item {
    padding: 10px;
  }

  .color-swatch-large {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .colors-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .color-card-item {
    padding: 8px;
  }

  .color-swatch-large {
    width: 32px;
    height: 32px;
  }

  .color-code-text,
  .color-name-text {
    font-size: 0.65rem;
  }
}

/* ============================================
   BEAMS TABLE LAYOUT
   ============================================ */

.beams-section {
  background: rgb(74 144 226 / 25%);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}

/* Tabs */
.beams-tabs {
  display: inline-flex;
  gap: 16px;
  margin-bottom: 32px;
  padding: 8px;
  background: #0b1622;
  border-radius: 12px;
  max-width: 100%;
  overflow: auto;


}

.beams-tab {
  background: #fff;
  border: 2px solid #4A90E2;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.beams-tab:hover {
  color: #fff;
  border-color: rgba(74, 144, 226, 0.5);
  background: rgba(74, 144, 226, 0.1);
}

.beams-tab.active {
  color: #ffffff;
  border-color: #4A90E2;
  background: rgb(19 36 57);
  box-shadow: 0 0 15px rgb(19 36 57);
}

/* Table Container */
.beams-table-container {
  overflow-x: auto;
}

.beams-table-wrapper {
  min-width: 100%;
 overflow-x: auto;
}

/* Table */
.beams-table {
  width: auto;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  margin: 0 auto;
}

.beams-table thead {
  background: #002366 !important;
}

.beams-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.beams-table th,
.beams-table td {
  text-align: center;
}

.beams-table th {
  padding: 16px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.beams-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

.beams-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.beams-table tbody tr:last-child {
  border-bottom: none;
}

.beams-table td {
  padding: 16px;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

/* Column Specific Styles */
.beams-col-num {
  width: 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.beams-col-height {
  color: #4A90E2;
  font-weight: 600;
  font-size: 1rem;
  text-align: left !important;
  padding-left: 24px !important;
}

.beams-col-width,
.beams-col-web,
.beams-col-flange {
  text-align: center;
}

/* RTL Support */
[dir="rtl"] .beams-col-height {
  text-align: right !important;
  padding-left: 0 !important;
  padding-right: 24px !important;
}

[dir="rtl"] .beams-col-num,
[dir="rtl"] .beams-col-width,
[dir="rtl"] .beams-col-web,
[dir="rtl"] .beams-col-flange {
  text-align: center !important;
}

[dir="rtl"] .beams-tabs {
  direction: rtl;
}

[dir="rtl"] .beams-tab {
  direction: rtl;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .beams-section {
    padding: 16px;
    border-radius: 12px;
  }

  .beams-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px;
    gap: 12px;
    margin-bottom: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }

  .beams-tabs::-webkit-scrollbar {
    display: none;
  }

  .beams-tab {
    padding: 10px 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .beams-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .beams-table {
    font-size: 0.8rem;
    min-width: 100%;
  }

  .beams-table th {
    padding: 10px 8px;
    font-size: 0.65rem;
    letter-spacing: 0.8px;
  }

  .beams-table td {
    padding: 12px 8px;
    font-size: 0.8rem;
  }

  .beams-col-num {
    width: 35px;
    font-size: 0.7rem;
    padding: 12px 6px;
  }

  .beams-col-height {
    font-size: 0.85rem;
    padding-left: 12px !important;
  }

  .beams-col-width,
  .beams-col-web,
  .beams-col-flange {
    font-size: 0.8rem;
  }

  [dir="rtl"] .beams-col-height {
    padding-right: 12px !important;
    padding-left: 0 !important;
  }

  .beams-table td,
  .beams-table th {
    white-space: nowrap;
  }

  .beams-table-wrapper {
    min-width: 100%;
    overflow: auto;
  }
}

/* Product Hero Image Lightbox/Modal */
.product-hero-image-clickable {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-hero-image-clickable:hover {
  transform: scale(1.01);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.image-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #ffffff;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.image-modal-close:hover,
.image-modal-close:focus {
  color: #ed3f27;
}

@media (max-width: 768px) {
  .image-modal-close {
    top: 10px;
    right: 20px;
    font-size: 40px;
  }

  .image-modal-content {
    max-width: 95%;
    max-height: 80vh;
  }
}

/* ===========================
   PPGI Interactive Image Transitions
   =========================== */

/* Smooth image transitions */
#ppgi-main-display {
  transition: opacity 0.3s ease-in-out;
  will-change: opacity;
}

/* Loading state during image transition */
#ppgi-main-display.loading {
  filter: blur(2px);
  opacity: 0.5 !important;
}

/* Active profile highlight */
.ppgi-profiles .profile-item {
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.ppgi-profiles .profile-item.active {
  border-color: #3b82f6 !important;
  background: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5) !important;
  transform: scale(1.05);
}

/* Hover effect removed - auto-selection active */

/* Active color highlight */
.ppgi-color-item {
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.ppgi-color-item.active .color-swatch {
  border: 4px solid #3b82f6 !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6) !important;
  transform: scale(1.1);
}

.ppgi-color-item:hover:not(.active) .color-swatch {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Image container positioning */
.product-main-image-container {
  position: relative;
  width: 100%;
  height: 100%;

}

/* Prevent text selection during interactions */
.profile-item,
.ppgi-color-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .ppgi-profiles .profile-item.active {
    transform: scale(1.03);
  }

  .ppgi-color-item.active .color-swatch {
    transform: scale(1.08);
  }
}

/* Active coating highlight */
.coating-card {
  cursor: pointer;
  user-select: none;
  transition: none;
  /* Disabled to remove hover effect appearance */
  position: relative;
}

.coating-card.active {
  border: 3px solid #3b82f6 !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6) !important;
  transform: scale(1.05);
  background: rgba(59, 130, 246, 0.1) !important;
}

/* Hover effect removed - auto-selection active */

.coating-card.active::after {
  content: '✓';
  position: absolute;
  top: 5px;
  right: 5px;
  background: #3b82f6;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
}

/* Prevent glightbox link from blocking coating selection */
.coating-card .glightbox {
  pointer-events: auto;
  position: relative;
  z-index: 5;
}

a.hero-back-btn.heroback {
  margin-top: 0;
  margin-bottom: 20px;
}

.ppgi-center-image .product-main-image {
  align-items: flex-start;
}

.ppgi-center-image .product-main-image img {

  height: auto !important;
}

.ppgi-center-image {
  padding: 0;
}

/* FORCE TABLE STYLING - Very High Specificity */
.product-page-layout.simple-table-layout .specifications-container-simple-table {
  background: rgba(45, 55, 72, 0.9) !important;
  border-radius: 16px !important;
  padding: 60px !important;
}

.product-page-layout.simple-table-layout .simple-data-table {
  background: transparent !important;
  border-collapse: collapse !important;
}

.product-page-layout.simple-table-layout .simple-data-table thead th {
  background: rgba(0, 35, 102, 1) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 22px 25px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  text-transform: uppercase !important;
}

.product-page-layout.simple-table-layout .simple-data-table tbody tr:nth-child(odd) td {
  background: rgba(0, 0, 0, 0.6) !important;
  color: #ffffff !important;
  padding: 18px 25px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.product-page-layout.simple-table-layout .simple-data-table tbody tr:nth-child(even) td {
  background: rgba(30, 41, 59, 0.8) !important;
  color: #ffffff !important;
  padding: 18px 25px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.product-page-layout.simple-table-layout .simple-data-table .row-number {
  background: rgba(66, 99, 235, 1) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

.product-page-layout.simple-table-layout .simple-data-table tbody tr:hover td {
  background: rgba(55, 65, 81, 1) !important;
}

/* FORCE PROPER TABLE WIDTH */
.product-page-layout.simple-table-layout {
  width: 100% !important;
  max-width: 100% !important;
}

.product-page-layout.simple-table-layout .product-details-full {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 60px 30px !important;
}

.product-page-layout.simple-table-layout .specifications-section-simple-table {
  width: 100% !important;
  max-width: 100% !important;
}

.product-page-layout.simple-table-layout .specifications-container-simple-table {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.product-page-layout.simple-table-layout .table-responsive {
  width: 100% !important;
  overflow-x: auto !important;
}

.product-page-layout.simple-table-layout .simple-data-table {
  width: 100% !important;
  min-width: 900px !important;
  table-layout: auto !important;
}

.product-page-layout.simple-table-layout .simple-data-table th,
.product-page-layout.simple-table-layout .simple-data-table td {
  min-width: 200px !important;
}

.product-page-layout.simple-table-layout .simple-data-table .row-number-header,
.product-page-layout.simple-table-layout .simple-data-table .row-number {
  min-width: 80px !important;
  width: 80px !important;
  max-width: 80px !important;
}

.product-page-layout.simple-table-layout {
  display: block !important;
}

/* COMPLETE RESET AND FULL WIDTH TABLE */
body .product-page-layout.simple-table-layout {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  padding: 80px 5vw !important;
  background: #000000 !important;
}

body .simple-table-layout .product-details-full {
  width: 100% !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body .simple-table-layout .specifications-container-simple-table {
  width: 100% !important;
  padding: 60px !important;
  background: rgba(45, 55, 72, 0.9) !important;
  border-radius: 20px !important;
  box-sizing: border-box !important;
}

body .simple-table-layout .table-responsive {
  width: 100% !important;
}

body .simple-table-layout .simple-data-table {
  width: 100% !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
}

body .simple-table-layout .simple-data-table .row-number-header,
body .simple-table-layout .simple-data-table .row-number {
  width: 10% !important;
}

body .simple-table-layout .simple-data-table th:not(.row-number-header),
body .simple-table-layout .simple-data-table td:not(.row-number) {
  width: 45% !important;
}

body .simple-table-layout .simple-data-table thead th {
  background: #002366 !important;
  color: white !important;
  padding: 25px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

body .simple-table-layout .simple-data-table tbody td {
  background: rgba(30, 41, 59, 0.9) !important;
  color: white !important;
  padding: 20px !important;
  font-size: 1.05rem !important;
  text-align: center !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body .simple-table-layout .simple-data-table tbody tr:nth-child(odd) td {
  background: rgba(0, 0, 0, 0.7) !important;
}

body .simple-table-layout .simple-data-table .row-number {
  background: #4263EB !important;
  font-weight: 700 !important;
}

/* FIT TABLE WITHOUT HORIZONTAL SCROLL */
body .simple-table-layout {
  width: 100% !important;
  margin: 0 !important;
  padding: 60px 3% !important;
  box-sizing: border-box !important;
}

body .simple-table-layout .product-details-full {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

body .simple-table-layout .specifications-container-simple-table {
  width: 100% !important;
  max-width: 100% !important;
  padding: 40px !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

body .simple-table-layout .table-responsive {
  width: 100% !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

body .simple-table-layout .simple-data-table {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed !important;
  word-wrap: break-word !important;
}

body .simple-table-layout .simple-data-table .row-number-header,
body .simple-table-layout .simple-data-table .row-number {
  width: 8% !important;
  min-width: 60px !important;
}

body .simple-table-layout .simple-data-table th:not(.row-number-header),
body .simple-table-layout .simple-data-table td:not(.row-number) {
  width: 46% !important;
  word-wrap: break-word !important;
  white-space: normal !important;
}

/* ============================================
   RTL (Arabic) Support & Mobile Responsiveness
   ============================================ */

/* RTL Support for Admin Table Builder */
[dir="rtl"] .table-header-row .col-auto:first-child,
[dir="rtl"] .table-data-row .grip-handle {
  margin-right: 0;
  margin-left: 0.5rem;
}

[dir="rtl"] .btn i {
  margin-right: 0;
  margin-left: 0.5rem;
}

[dir="rtl"] .badge i {
  margin-right: 0;
  margin-left: 0.25rem;
}

/* RTL Support for Live Preview Table */
[dir="rtl"] #live-table-preview {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .table-preview .badge {
  margin-right: 0;
  margin-left: 0.5rem;
}

/* Mobile Responsiveness - Admin Table Builder */
@media (max-width: 768px) {

  /* Simplify table header rows on mobile */
  .table-header-row {
    margin-bottom: 1rem !important;
  }

  .table-header-row .col-md-7 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }

  .table-header-row .col-auto {
    width: auto;
  }

  /* Stack buttons vertically on mobile */
  .table-header-row .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Data rows on mobile */
  .table-data-row .row {
    margin-bottom: 1rem;
  }

  .table-data-row .col-md-4,
  .table-data-row .col-md-8 {
    width: 100%;
    max-width: 100%;
  }

  /* Add Column button full width on mobile */
  #add-table-header,
  #add-table-row {
    width: 100%;
  }

  /* Live preview table - enable horizontal scroll */
  #live-preview-card .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #live-table-preview {
    min-width: 500px;
  }

  /* Admin cards spacing */
  .card-header {
    font-size: 0.95rem;
  }

  .card-body {
    padding: 1rem;
  }
}

/* Mobile - PPGI Three Column Layout */
@media (max-width: 992px) {
  .ppgi-three-column {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    min-height: auto !important;
  }

  .ppgi-sidebar-left,
  .ppgi-sidebar-right,
  .ppgi-center {
    width: 100% !important;
    max-width: 100% !important;
  }

  .ppgi-center-image {
    min-height: auto !important;
    max-height: auto !important;
    margin-bottom: 20px;
  }

  /* Profile items stack on mobile */
  .profile-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Color swatches smaller on mobile */
  .color-swatch {
    width: 40px !important;
    height: 40px !important;
  }

  .ppgi-color-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* RTL Support for PPGI Layout */
[dir="rtl"] .ppgi-three-column {
  direction: rtl;
}

[dir="rtl"] .ppgi-sidebar-left {
  order: 3;
}

[dir="rtl"] .ppgi-sidebar-right {
  order: 1;
}

[dir="rtl"] .ppgi-center {
  order: 2;
}

/* Mobile - Timeline Section */
@media (max-width: 768px) {
  .timeline-wrapper {
    padding: 2rem 1rem;
  }

  .timeline-item {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .timeline-image {
    max-width: 100%;
    height: auto !important;
  }

  .timeline-content h3 {
    font-size: 1.5rem;
  }

  .timeline-year {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    font-family: "Arial Black", "Impact", sans-serif;
    letter-spacing: 2px;
    transform: skewX(-10deg);
  }
}

/* RTL Support for Timeline */
[dir="rtl"] .timeline-item {
  padding-right: 3rem;
  padding-left: 1rem;
}

[dir="rtl"] .timeline-line-container {
  right: auto;
  left: 0;
}

[dir="rtl"] .timeline-dot {
  right: auto;
  left: -8px;
}

/* Mobile - Hero Section */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem !important;
  }

  .company-name {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 8px 16px;
    font-size: 1rem;
  }
}

/* RTL Support for Hero Section */
[dir="rtl"] .hero-content {
  text-align: right;
}

[dir="rtl"] .btn-primary img {
  margin-left: 0;
  margin-right: 10px;
}

/* Mobile - Simple Data Table (Frontend) */
@media (max-width: 768px) {
  .simple-data-table {
    font-size: 0.85rem;
  }

  .simple-data-table th,
  .simple-data-table td {
    padding: 0.5rem;
  }

  /* Enable horizontal scroll for tables on mobile */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .simple-data-table {
    min-width: 500px;
  }
}

/* RTL Support for Data Tables */
[dir="rtl"] .simple-data-table {
  direction: rtl;
  text-align: right;
}

/* Mobile - Product Cards */
@media (max-width: 768px) {
  .product-card {
    margin-bottom: 1.5rem;
  }

  .product-title {
    font-size: 1.25rem;
  }

  .product-description {
    font-size: 0.9rem;
  }
}

/* Ensure buttons stack properly on mobile */
@media (max-width: 576px) {
  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
    border-radius: 0.25rem !important;
    margin-bottom: 0.5rem;
  }

  .btn-group .btn:last-child {
    margin-bottom: 0;
  }
}

/* RTL Support for Forms */
[dir="rtl"] .form-label {
  text-align: right;
}

[dir="rtl"] .input-group {
  flex-direction: row-reverse;
}

/* Mobile - Admin Panel Cards */
@media (max-width: 768px) {

  /* Stack admin table columns */
  .table-header-row .col-auto:first-child {
    display: none;
    /* Hide drag handle on mobile */
  }

  /* Remove button stays visible */
  .remove-header,
  .remove-row {
    white-space: nowrap;
  }

  /* Card headers smaller text */
  .card-header strong {
    font-size: 0.9rem;
  }

  /* Alert text smaller */
  .alert {
    font-size: 0.85rem;
    padding: 0.75rem;
  }

  /* Badge text smaller */
  .badge {
    font-size: 0.75rem;
  }

  /* Empty state icons smaller */
  .fs-1 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.5rem !important;
  }
}

/* Touch-friendly click targets on mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    padding: 0.5rem 1rem;
  }

  .form-control {
    min-height: 44px;
  }

  input[type="text"],
  input[type="number"],
  textarea {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* RTL Support for Icons */
[dir="rtl"] .bi-chevron-right::before {
  content: "\f285";
  /* chevron-left */
}

[dir="rtl"] .bi-chevron-left::before {
  content: "\f286";
  /* chevron-right */
}

[dir="rtl"] .bi-arrow-right::before {
  content: "\f128";
  /* arrow-left */
}

[dir="rtl"] .bi-arrow-left::before {
  content: "\f130";
  /* arrow-right */
}

/* Accessibility - Focus states */
.btn:focus,
.form-control:focus,
input:focus {
  outline: 2px solid #0071bc;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .card-header {
    background-color: #f8f9fa !important;
    color: #000 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .btn,
  .remove-header,
  .remove-row,
  .bi-grip-vertical {
    display: none !important;
  }

  .table {
    page-break-inside: avoid;
  }

  #live-preview-card {
    page-break-before: always;
  }
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "⏳";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

/* Smooth transitions for better UX */
.table-header-row,
.table-data-row,
.badge,
.btn {
  transition: all 0.2s ease-in-out;
}

.table-header-row:hover,
.table-data-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* High contrast mode support */
@media (prefers-contrast: high) {

  .btn-outline-primary,
  .btn-outline-secondary {
    border-width: 2px;
  }

  .table {
    border: 2px solid currentColor;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {}


.pro-key-features .product-hero-description {
  color: #fff;
  border: 2px solid #4A90E2;
  background: rgba(74, 144, 226, 0.25);
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
  padding: 20px;
  border-radius: 16px;

}

.sidebar-section {
  padding: 30px;
}

.sidbar-key-features {
  padding: 30px 30px 0;
}

.beams-table.table-bordered td,
.beams-table.table-bordered th {
  border-color: rgba(255, 255, 255, 0.05);
}

.beams-table.table-bordered {
  border-color: rgba(255, 255, 255, 0.05);

}

.table-striped>tbody>tr:nth-of-type(even) {
  background: #142539 !important;

}

.ppgi-row {
  flex-flow: row-reverse;
}

.sidbar-key-features {
  color: #fff;
  border: 2px solid #4A90E2;
  background: rgba(74, 144, 226, 0.25);
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
  padding: 20px;
  border-radius: 16px;
}

.ppgi-col-right {
  padding-right: 32px;
}

.sidbar-divider {
  height: 1px;
  background-color: rgba(74, 144, 226, 0.25);
  margin: 40px 0 0;
  display: inline-block;
  width: 100%;
}

.sidbar-key-features {
  margin-bottom: 15px;
}

.footer-top .row>[class*='col-'].foot-mt-3 {
  margin-top: 20px !important;
}

ul.footer-social-media {
  width: 100%;
  justify-content: center;
  margin-left: -30px;
}

.footer-social-media a {
  color: #fff;
  font-size: 36px;
  padding: 10px;
}

ul.footer-social-media li {
  margin: 0 10px;
}

ul.footer-social-media {
  margin-top: 15px;
}

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

/* Center social icons on mobile */
@media (max-width: 767px) {
  .footer-links-mobile ul {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px 10px;
  }

  ul.footer-social-media {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
    display: flex !important;
  }

  .footer-top .row>div,
  .footer-top .row>[class*='col-'] {
    padding: 0 0;
  }

  ul.footer-social-media {
    margin-top: 15px;
    margin-bottom: 0;
  }

  body main.main {
    padding-top: 73px;
  }
}

.hero_bottom_logo img {
  width: 30%;
  margin-bottom: -1.5%;
  z-index: 2;
  position: relative;
  margin-right: 2%;
}

.home-page .hero-section.has-slider {
  background-image: none;
  z-index: 0;
}

.hero-media.hero-video {
  position: fixed;
}

.navmenu-bottom .lang-switcher-simple .lang-switch-text:hover {
  color: var(--nav-dropdown-hover-color) !important;
  text-decoration: none !important;
}

.coatings-grid-new .coating-card.profile-item.hidden{
  display: none !important;
}
.product-main-image-div{
  min-height: 400px;
}

.timeline-item.active .timeline-image img{
  filter: grayscale(0) brightness(1);
}