@import url(../../../../cdn.jsdelivr.net/npm/remixicon%402.5.0/fonts/remixicon.css);

/* ==========================================================================
   Modern Responsive Header - Best UX for All Devices
   ========================================================================== */

.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 998;
  transition: all 0.3s ease;
  padding: 0;
  opacity: 0;
}

/* Show header when page is loaded */
.js-page-in .modern-header,
body:not(.preloader) .modern-header {
  opacity: 1;
}

.modern-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: relative;
}

.header-logo-wrapper {
  flex-shrink: 0;
  z-index: 10;
}

.header-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.header-logo-link:hover {
  transform: scale(1.05);
}

.header-logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

/* Logo animation on page load */
.js-page-in-out .header-logo-img {
  animation: logoSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes logoSlideIn {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modern-header.scrolled .header-logo-img {
  height: 50px;
}

/* Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-item {
  position: relative;
  margin: 0;
}

.nav-link {
  display: block;
  padding: 12px 20px;
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  width: 0;
  height: 2px;
  background-color: #012A40;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: calc(100% - 40px);
}

.nav-link:hover,
.nav-link:focus {
  color: #012A40;
  outline: none;
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 10px;
  padding: 8px 0;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  padding: 0;
}

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

.dropdown-item {
  margin: 0;
}

.dropdown-link {
  display: block;
  padding: 12px 24px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #012A40;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-link:hover,
.dropdown-link:focus {
  background-color: #f8f9fa;
  color: #012A40;
  padding-left: 28px;
  outline: none;
}

.dropdown-link:hover::before,
.dropdown-link:focus::before {
  transform: scaleY(1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-menu-toggle:focus {
  outline: 2px solid #012A40;
  outline-offset: 4px;
  border-radius: 4px;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #000000;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh; /* Dynamic viewport height for mobile browsers */
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  will-change: opacity, visibility;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Body lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ==========================================================================
   Responsive Design - Tablet & Mobile
   ========================================================================== */

@media screen and (max-width: 1024px) {
  .header-container {
    padding: 12px 20px;
  }

  .header-logo-img {
    height: 50px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 0 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    z-index: 1000;
    gap: 0;
    will-change: right;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link {
    padding: 18px 30px;
    font-size: 16px;
    width: 100%;
    text-align: left;
    border-radius: 0;
    -webkit-tap-highlight-color: rgba(1, 42, 64, 0.1);
    touch-action: manipulation;
    min-height: 48px; /* Better touch target */
    display: flex;
    align-items: center;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link:focus {
    background-color: #f8f9fa;
    color: #012A40;
  }

  /* Mobile Dropdown */
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-link-dropdown {
    width: 100%;
    justify-content: space-between;
    padding-right: 30px;
  }

  .dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .nav-link-dropdown[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    background-color: #f8f9fa;
  }

  .dropdown-menu.active {
    max-height: 500px;
    padding: 8px 0;
    overflow-y: auto;
  }

  .dropdown-link {
    padding: 14px 50px;
    font-size: 15px;
    -webkit-tap-highlight-color: rgba(1, 42, 64, 0.1);
    touch-action: manipulation;
    min-height: 44px; /* Better touch target */
    display: flex;
    align-items: center;
  }

  .dropdown-link::before {
    width: 4px;
  }

  .mobile-menu-overlay {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }

  .header-logo-img {
    height: 45px;
    max-width: 160px;
  }

  .modern-header.scrolled .header-logo-img {
    height: 40px;
  }

  .nav-menu {
    width: 90%;
    max-width: 350px;
    padding: 70px 0 30px;
  }

  .nav-link {
    padding: 16px 25px;
    font-size: 15px;
  }

  .dropdown-link {
    padding: 12px 45px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .header-container {
    padding: 8px 12px;
  }

  .header-logo-img {
    height: 40px;
    max-width: 140px;
  }

  .mobile-menu-toggle {
    width: 32px;
    height: 32px;
    min-width: 44px; /* Better touch target */
    min-height: 44px;
    padding: 6px; /* Extra padding for easier tapping */
  }

  .hamburger-line {
    height: 2.5px;
  }

  .nav-menu {
    width: 100%;
    max-width: 100%;
    padding: 60px 0 20px;
  }

  .nav-link {
    padding: 14px 20px;
    font-size: 14px;
  }

  .dropdown-link {
    padding: 12px 40px;
    font-size: 13px;
  }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .nav-menu {
    padding: 50px 0 20px;
  }

  .nav-link {
    padding: 12px 25px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .nav-link {
    padding: 16px 25px;
    min-height: 48px;
  }

  .dropdown-link {
    padding: 14px 50px;
    min-height: 44px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    min-width: 44px;
    min-height: 44px;
    padding: 6px;
  }

  /* Better touch feedback */
  .nav-link:active,
  .dropdown-link:active {
    background-color: #e9ecef;
    transition: background-color 0.1s ease;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header-logo-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .modern-header,
  .nav-link,
  .dropdown-menu,
  .mobile-menu-toggle,
  .hamburger-line,
  .mobile-menu-overlay {
    transition: none;
  }
}

/* Focus Styles for Accessibility */
.nav-link:focus-visible,
.dropdown-link:focus-visible,
.mobile-menu-toggle:focus-visible {
  outline: 2px solid #012A40;
  outline-offset: 2px;
  border-radius: 4px;
}

.a-btn {
  position: relative;
  display: inline-block;
  background-color: #012A40;
  text-align: center;
  height: 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 10px;
  border-radius: 24px;
  color: #fff !important;
  font-size: 18px;
  padding-top: 7px;
}

.a-btn i {
  vertical-align: middle;
}

.mega-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  top: 0;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1095 !important;
  position: relative;
}

.mega-header .mega {
  background-color: #fff;
  max-width: 100%;
  width: calc( 100% - 200px);
  z-index: 10;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
}

.mega-header .mega ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mega-header .mega ul li {
  margin: 10px 22px;
  display: inline-block;
  position: relative;
}

.mega-header .mega ul li:hover .mega-item {
  display: block;
}

.mega-header .mega ul li .mega-item {
  display: none;
}

.mega-header .mega ul a:not(.a-btn) {
  color: #000;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.mega-header .left-10 {
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

.mega-header .left-50 {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mega-header .mega-item.max-width {
  min-width: 250px;
}

.mega-header .mega-item {
  position: absolute;
  min-width: 600px;
  text-align: left !important;
  top: 20px;
}

.mega-header .mega-item .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px rgba(66, 27, 27, 0.1);
          box-shadow: 0 0 24px rgba(66, 27, 27, 0.1);
  margin-top: 30px;
}

.mega-header .mega-item .row .col-sm-8 {
  max-width: 60%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  position: relative;
  overflow: hidden;
}

.mega-header .mega-item .row .col-sm-4 {
  max-width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.mega-header .mega-item ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.mega-header .mega-item ul a {
  text-transform: capitalize !important;
}

.mega-header .mega-item .mega-preview {
  position: relative;
}

.mega-header .mega-item .thumb {
  position: relative;
}

.mega-header .mega-item .thumb img {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  top: 0;
  left: 0;
  height: inherit;
  /*height: -moz-available;
  height: stretch;*/
  opacity: 0;
  max-height: 280px;
}

.mega-header .mega-item .thumb .visible {
  opacity: 1;
}

.contact-social li {
  margin: 10px 20px;
}

.contact-social li i {
  font-size: 30px;
  color: #000;
}

.padding-10 {
  padding: 10px;
}

.custome-banner-in-design {
  position: relative;
  overflow: visible;
}

.custome-banner-in-design .one-pies {
  position: absolute;
  top: -100px;
  max-width: 300px;
  right: 10%;
}

.un-list li {
  padding-left: 0 !important;
  margin-bottom: 15px;
  margin-top: 15px;
}

.un-list li p {
  font-size: 14px;
  font-weight: bold;
}

.un-list li::before {
  display: none;
}

.product-inner-slider .swiper-slide img {
  width: 100%;
  min-height: 500px;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-inner-slider .swiper-container {
  position: relative;
}

.product-inner-slider img {
  min-height: 380px;
}

.product-inner-slider .btn {
  opacity: 1 !important;
  padding: 10px 0;
  position: absolute !important;
}

.product-inner-slider .btn::after {
  display: none;
}

.product-inner-slider .swiper-button-prev {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.product-inner-slider .swiper-button-next {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  right: 0 !important;
}

.min-logo {
  text-align: center;
}

.min-logo img {
  max-width: 250px;
  display: block;
  margin: 20px auto;
}

.min-logo img:last-child {
  margin-top: 50px;
  max-width: 180px;
}

.design-innovation .img-box img {
  max-width: 80%;
}

.custome-arrow .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custome-arrow .img-box img {
  max-width: 80%;
}

.rimless-gif {
  position: relative;
}

.rimless-gif .arrow.is-inview img {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
  opacity: 1;
}

.rimless-gif .arrow.is-inview .rimless-line {
  right: 30px;
  top: 22%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.rimless-gif .arrow.is-inview .rimaway-line {
  right: 30px;
  top: 40%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.rimless-gif .arrow.is-inview .simphony-line {
  left: 0;
  bottom: 42%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}



.rimless-gif .arrow.is-inview .outlet-line {
  right: 420px;
  top: 65%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.rimless-gif .arrow.is-inview .bowl-line {
  right: 112px;
  top: 53%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.rimless-gif .arrow.is-inview .trapway-line {
  left: 217px;
  bottom: 45%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.rimless-gif .arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rimless-gif .arrow img {
  position: absolute;
  max-width: 300px;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
  opacity: 0;
}

.rimless-gif .arrow .rimless-line {
  right: 30px;
  top: 22%;
  max-width: 120px;
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
}

.rimless-gif .arrow .rimaway-line {
  right: 30px;
  top: 40%;
  max-width: 300px;
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
}

.rimless-gif .arrow .simphony-line {
  left: 0;
  bottom: 42%;
  max-width: 200px;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
}


.rimless-gif .arrow .outlet-line {
  right: 30px;
  top: 44%;
  max-width: 100px;
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
}

.rimless-gif .arrow .bowl-line {
  right: 30px;
  top: 40%;
  max-width: 250px;
  -webkit-transform: translateX(300px);
          transform: translateX(300px);
}

.rimless-gif .arrow .trapway-line {
  left: 0;
  bottom: 42%;
  max-width: 200px;
  -webkit-transform: translateX(-300px);
          transform: translateX(-300px);
}

.tornado-gif {
  position: relative;
}

.tornado-gif .arrow.is-inview img {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
  opacity: 1;
}

.tornado-gif .arrow.is-inview .tornado-line {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.tornado-gif .arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.tornado-gif .arrow .tornado-line {
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
}

.tornado-gif .arrow img {
  position: absolute;
  max-width: 300px;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
}

.hiiden-gif {
  position: relative;
}

.hiiden-gif .arrow.is-inview img {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
}

.hiiden-gif .arrow.is-inview .line-1 {
  opacity: 1;
  top: 40%;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hiiden-gif .arrow.is-inview .line-2 {
  opacity: 1;
  top: 63%;
  left: 30px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hiiden-gif .arrow.is-inview .line-3 {
  opacity: 1;
  top: 85%;
  left: 30px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hiiden-gif .arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hiiden-gif .arrow img {
  position: absolute;
  max-width: 200px;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
  left: 0;
  opacity: 0;
}

.hiiden-gif .arrow .line-1 {
  opacity: 1;
  top: 40%;
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.hiiden-gif .arrow .line-2 {
  opacity: 1;
  top: 63%;
  left: 30px;
  -webkit-transform: translateX(-350px);
          transform: translateX(-350px);
}

.hiiden-gif .arrow .line-3 {
  opacity: 1;
  top: 85%;
  left: 30px;
  -webkit-transform: translateX(-500px);
          transform: translateX(-500px);
}

.about-box-content img {
  margin-right: 0;
  display: block;
}

.about-box-content p {
  padding-top: 20px;
  border-top: 3px solid #012A40;
}

.about-box-content-white img {
  margin-right: 0;
  display: block;
}

.about-box-content-white p {
  padding-top: 20px;
  border-top: 3px solid #fff;
}
/*====================================================================================== */
.detailsBox{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tech-img{
  width: 10rem;
}
.imgBox{
  height: 25rem;
  width: 25rem;
  overflow: hidden;
  
}

.fullImg{
  position: relative;
  top: -4rem;
}

.testing{
  border: 1px solid red;
}

.pedestalBox{
  display: flex;
  flex-wrap: wrap;
}
.pedestalBoxItem{
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.techImg{
  transform: scale(0.8);
}
img{
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .pedestalBox {
    display: block;
  }
  .techImg{
    transform: scale(1);
  }
  
}


.topnav a {
				float: left;
				display: block;
				color: black;
				text-align: center;				
				text-decoration: none;
				font-size: 17px;
			  }
			.mega a.icon {
				display: none;
			  }
			  
			
			@media screen and (max-width: 600px) {
				.mega-header .mega ul {
					display: none !important;
				}
			  .mega-header .mega a.icon{
				float: right;
				display: block !important;
			 }
			
			 .topnav a{
				padding: 14px 16px;
			 }
			 
			.mega-header .mega-item {
				position: relative;
				top:0px;
			}
			.mega-header .mega-item .row .col-sm-8 {
				display: none;
			}
			.mega-header .mega-item .row {
				-webkit-box-shadow: 0 0 0px rgba(66, 27, 27, 0.1);
				box-shadow: 0 0 0px rgba(66, 27, 27, 0.1);
				padding: 0px;
			}

			.mega-header .mega ul a:not(.a-btn){
				line-height: 0px;
			}
			.mega-header .left-10 {
				-webkit-transform: translateX(0%);
    			transform: translateX(0%);
			}
			.mega-header .left-50 {
				-webkit-transform: translateX(0%);
				transform: translateX(0%);
			}
			.mega-header .mega ul li {
				margin: 4px 22px;
				width:100%;
			}
			.mega-header .mega-item {
			min-width: 650px;
			}
			}
			
			@media screen and (max-width: 600px) {
				.mega-header .mega.responsive {
					margin-bottom: 30px;
    				transform: translateX(0);
					height: auto;
					transition-delay: 0.4s;
					position: fixed;
					z-index: 1000;
					top: 0;
					padding-top: 35px;
					padding-bottom: 35px;
					right: 0;
					padding-right: 40px;
					padding-left: 0;
				 }
				.mega-header .mega.responsive .icon {
				right: 0;
				
			  }
			  .mega-header .mega.responsive ul {
				float: none;
				display: block !important;
				text-align: left;
			  }
			  
			}
			
			.display-block{
				display:block;
			}

/* ==========================================================================
   Hero Slider Responsive Styles
   ========================================================================== */

.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.hero-content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-text-container {
  width: 100%;
  padding: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.hero-btn-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navigation Buttons */
.hero-nav-prev,
.hero-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav-prev {
  left: 20px;
}

.hero-nav-next {
  right: 20px;
}

.hero-nav-prev .swiper-button-prev,
.hero-nav-next .swiper-button-next {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-nav-prev .swiper-button-prev:hover,
.hero-nav-next .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.hero-nav-prev .swiper-button-prev:after,
.hero-nav-next .swiper-button-next:after {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

/* Pagination */
.hero-pagination {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: auto;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 8px 0;
  transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* Scroll to bottom button */
.scroll-to-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
  .hero-slide-content {
    min-height: 70vh;
    padding: 15px;
  }

  .hero-content-wrapper {
    padding: 40px 20px !important;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-btn-container {
    margin-top: 20px;
  }

  .hero-nav-prev,
  .hero-nav-next {
    width: 40px;
    height: 40px;
  }

  .hero-nav-prev {
    left: 10px;
  }

  .hero-nav-next {
    right: 10px;
  }

  .hero-nav-prev .swiper-button-prev,
  .hero-nav-next .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
  }

  .hero-nav-prev .swiper-button-prev:after,
  .hero-nav-next .swiper-button-next:after {
    font-size: 16px;
  }

  .hero-pagination {
    right: 15px;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 6px 0;
  }

  .scroll-to-btn {
    bottom: 20px;
  }

  .hero-slide-bg {
    background-attachment: scroll;
  }
}

@media screen and (max-width: 480px) {
  .hero-slide-content {
    min-height: 60vh;
    padding: 10px;
  }

  .hero-content-wrapper {
    padding: 30px 15px !important;
  }

  .hero-title {
    font-size: clamp(1.2rem, 7vw, 2rem);
    margin-bottom: 10px;
  }

  .hero-nav-prev,
  .hero-nav-next {
    width: 35px;
    height: 35px;
  }

  .hero-nav-prev {
    left: 5px;
  }

  .hero-nav-next {
    right: 5px;
  }

  .hero-nav-prev .swiper-button-prev,
  .hero-nav-next .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .hero-nav-prev .swiper-button-prev:after,
  .hero-nav-next .swiper-button-next:after {
    font-size: 14px;
  }

  .hero-pagination {
    right: 10px;
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 5px 0;
  }

  .border-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-slide-content {
    min-height: 80vh;
  }

  .hero-content-wrapper {
    padding: 80px 40px !important;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
}

/* Large Desktop Styles */
@media screen and (min-width: 1440px) {
  .hero-content-wrapper {
    max-width: 1400px;
  }

  .hero-title {
    font-size: 5rem;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .hero-nav-prev .swiper-button-prev,
  .hero-nav-next .swiper-button-next {
    background: rgba(255, 255, 255, 0.4);
  }

  .hero-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
}

/* Landscape Mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero-slide-content {
    min-height: 100vh;
  }

  .hero-content-wrapper {
    padding: 20px !important;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .hero-btn-container {
    margin-top: 15px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-slide-bg {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility Improvements */
.hero-slider-section:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: -2px;
}

/* Smooth Transitions */
.js-home-slider .swiper-slide {
  transition: opacity 0.8s ease-in-out;
}

.js-home-slider .swiper-slide-active {
  opacity: 1;
}

.js-home-slider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
}

/* ==========================================================================
   Group of Companies Section - Responsive & Modern Design
   ========================================================================== */

.group-companies-section {
  position: relative;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.company-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.company-card__link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.company-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%; /* 5:3 Aspect Ratio */
  overflow: hidden;
  background: #f8f9fa;
}

.company-card__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.company-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  background: #ffffff;
}

.company-card:hover .company-card__image {
  transform: scale(1.05);
}

.company-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-card:hover .company-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.company-card__label {
  display: block;
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Responsive Design for Group Companies */
@media only screen and (max-width: 999px) {
  .companies-grid {
    gap: 30px;
    margin-top: 50px;
    padding: 0 15px;
  }

  .company-card__image-wrapper {
    padding-top: 65%;
  }

  .company-card__image {
    padding: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .companies-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin-top: 40px;
    padding: 0 10px;
  }

  .company-card__image-wrapper {
    padding-top: 70%;
  }

  .company-card__image {
    padding: 20px;
  }

  .company-card__overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .company-card__label {
    font-size: 16px;
  }
}

@media only screen and (max-width: 549px) {
  .companies-grid {
    gap: 25px;
    margin-top: 35px;
  }

  .company-card {
    border-radius: 8px;
  }

  .company-card__image-wrapper {
    padding-top: 75%;
  }

  .company-card__image {
    padding: 15px;
  }

  .company-card__label {
    font-size: 15px;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 399px) {
  .companies-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .company-card__image {
    padding: 12px;
  }
}

/* ==========================================================================
   About CTA Section - Enhanced with Better Mobile Support
   ========================================================================== */

.about-cta-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: transparent !important; /* Override section-bg-dark */
}

.about-cta-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a; /* Fallback color if image doesn't load */
  z-index: 0;
}

/* Fallback for browsers that don't support background-image in CSS */
.about-cta-section__background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: -1;
  opacity: 0;
}

.about-cta-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

.about-cta-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.about-cta-section__text-wrapper {
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
  padding: 0 20px;
}

.about-cta-section__text {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 35px;
}

/* Responsive Design for About CTA Section */
@media only screen and (max-width: 999px) {
  .about-cta-section {
    min-height: 350px;
  }

  .about-cta-section__content {
    padding: 60px 0;
  }

  .about-cta-section__text-wrapper {
    max-width: 550px;
    padding: 0 30px;
  }

  .about-cta-section__text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-cta-section {
    min-height: 300px;
  }

  .about-cta-section__content {
    padding: 50px 0;
  }

  .about-cta-section__text-wrapper {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    text-align: center;
  }

  .about-cta-section__text {
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .about-cta-section__background {
    background-position: center center;
  }
}

@media only screen and (max-width: 549px) {
  .about-cta-section {
    min-height: 280px;
  }

  .about-cta-section__content {
    padding: 40px 0;
  }

  .about-cta-section__text-wrapper {
    padding: 0 15px;
  }

  .about-cta-section__text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 399px) {
  .about-cta-section {
    min-height: 250px;
  }

  .about-cta-section__content {
    padding: 35px 0;
  }

  .about-cta-section__text {
    font-size: 13px;
  }
}

/* Landscape Orientation Support */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .about-cta-section {
    min-height: 250px;
  }

  .about-cta-section__content {
    padding: 35px 0;
  }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .about-cta-section__background {
    /* Background image set inline in HTML for better control */
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .company-card,
  .company-card__image,
  .company-card__overlay {
    transition: none;
  }

  .company-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   Brochure CTA Section - Modern Responsive Design with Best UX
   ========================================================================== */

.brochure-cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent !important; /* Override section-bg-dark */
}

.brochure-cta-section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1a1a1a; /* Fallback color if image doesn't load */
  z-index: 0;
  transition: transform 0.6s ease;
}

.brochure-cta-section:hover .brochure-cta-section__background {
  transform: scale(1.05);
}

.brochure-cta-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.brochure-cta-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 20px;
}

.brochure-cta-section__wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.brochure-cta-section__text-content {
  width: 100%;
}

.brochure-cta-section__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 25px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.brochure-cta-section__title-break {
  display: block;
}

.brochure-cta-section__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 40px 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.brochure-cta-section__button-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brochure-cta-section__button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brochure-cta-section__button:hover {
  transform: translateY(-2px);
}

.brochure-cta-section__button:active {
  transform: translateY(0);
}

/* Responsive Design - Tablet */
@media only screen and (max-width: 1024px) {
  .brochure-cta-section {
    min-height: 450px;
  }

  .brochure-cta-section__content {
    padding: 80px 20px;
  }

  .brochure-cta-section__title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 20px;
  }

  .brochure-cta-section__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 35px;
  }

  .brochure-cta-section__button-wrapper {
    margin-top: 25px;
  }
}

/* Responsive Design - Mobile */
@media only screen and (max-width: 767px) {
  .brochure-cta-section {
    min-height: 400px;
  }

  .brochure-cta-section__content {
    padding: 60px 15px;
  }

  .brochure-cta-section__wrapper {
    max-width: 100%;
  }

  .brochure-cta-section__title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .brochure-cta-section__title-break {
    display: inline;
  }

  .brochure-cta-section__subtitle {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .brochure-cta-section__button-wrapper {
    margin-top: 20px;
  }

  .brochure-cta-section__button .border-btn__inner {
    padding: 18px 28px 18px 35px;
    font-size: 11px;
  }

  .brochure-cta-section__background {
    background-attachment: scroll;
  }
}

/* Responsive Design - Small Mobile */
@media only screen and (max-width: 549px) {
  .brochure-cta-section {
    min-height: 350px;
  }

  .brochure-cta-section__content {
    padding: 50px 15px;
  }

  .brochure-cta-section__title {
    font-size: clamp(1.3rem, 7vw, 1.9rem);
    margin-bottom: 15px;
  }

  .brochure-cta-section__subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    margin-bottom: 25px;
  }

  .brochure-cta-section__button-wrapper {
    margin-top: 18px;
  }

  .brochure-cta-section__button .border-btn__inner {
    padding: 16px 24px 16px 30px;
    font-size: 10px;
  }
}

/* Responsive Design - Extra Small Mobile */
@media only screen and (max-width: 399px) {
  .brochure-cta-section {
    min-height: 320px;
  }

  .brochure-cta-section__content {
    padding: 40px 12px;
  }

  .brochure-cta-section__title {
    font-size: clamp(1.2rem, 8vw, 1.7rem);
    margin-bottom: 12px;
  }

  .brochure-cta-section__subtitle {
    font-size: clamp(0.85rem, 4vw, 1rem);
    margin-bottom: 20px;
  }

  .brochure-cta-section__button .border-btn__inner {
    padding: 14px 20px 14px 26px;
    font-size: 9px;
  }
}

/* Landscape Mobile Support */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .brochure-cta-section {
    min-height: 300px;
  }

  .brochure-cta-section__content {
    padding: 40px 15px;
  }

  .brochure-cta-section__title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin-bottom: 15px;
  }

  .brochure-cta-section__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 25px;
  }

  .brochure-cta-section__button-wrapper {
    margin-top: 15px;
  }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .brochure-cta-section__background {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .brochure-cta-section__background {
    transform: none !important;
  }

  .brochure-cta-section__button {
    min-height: 48px; /* Better touch target */
    min-width: 200px;
  }

  .brochure-cta-section__button:active {
    transform: scale(0.98);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .brochure-cta-section__background {
    transition: none;
  }

  .brochure-cta-section:hover .brochure-cta-section__background {
    transform: none;
  }

  .brochure-cta-section__button {
    transition: none;
  }

  .brochure-cta-section__button:hover {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
.brochure-cta-section__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Print Styles */
@media print {
  .brochure-cta-section {
    min-height: auto;
    page-break-inside: avoid;
  }

  .brochure-cta-section__background {
    display: none;
  }

  .brochure-cta-section__overlay {
    background: #ffffff;
  }

  .brochure-cta-section__title,
  .brochure-cta-section__subtitle {
    color: #000000;
    text-shadow: none;
  }
}

/* ==========================================================================
   Products Section - Modern Responsive Design with Best UX
   ========================================================================== */

.products-section {
  position: relative;
  padding: 120px 0 100px;
  background: #ffffff;
  overflow: hidden;
}

.products-section__wrapper {
  width: 100%;
  position: relative;
}

/* Section Title */
.products-section__title-wrapper {
  position: relative;
  margin-bottom: 80px;
  text-align: center;
}

.products-section__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #000000;
  text-stroke: 2px #000000;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Product Card */
.product-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-card__link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Image Wrapper */
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
  background: #f8f9fa;
}

.product-card__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-card:hover .product-card__image {
  transform: scale(1.1);
}

/* Overlay */
.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__cta {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.product-card:hover .product-card__cta {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

/* Content */
.product-card__content {
  padding: 30px 25px;
  position: relative;
}

.product-card__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
}

.product-card:hover .product-card__title {
  color: #012A40;
}

.product-card__underline {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #012A40 0%, #000000 100%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
}

.product-card:hover .product-card__underline {
  width: 100%;
}

/* Responsive Design - Tablet */
@media only screen and (max-width: 1024px) {
  .products-section {
    padding: 100px 0 80px;
  }

  .products-section__title-wrapper {
    margin-bottom: 60px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 0 20px;
  }

  .product-card__image-wrapper {
    padding-top: 80%;
  }

  .product-card__content {
    padding: 25px 20px;
  }
}

/* Responsive Design - Mobile */
@media only screen and (max-width: 767px) {
  .products-section {
    padding: 80px 0 60px;
  }

  .products-section__title-wrapper {
    margin-bottom: 50px;
  }

  .products-section__title {
    -webkit-text-stroke: 1.5px #000000;
    text-stroke: 1.5px #000000;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    padding: 0 15px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-card__image-wrapper {
    padding-top: 75%;
  }

  .product-card__overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  }

  .product-card__cta {
    font-size: 14px;
    padding: 10px 20px;
  }

  .product-card__content {
    padding: 22px 18px;
  }

  .product-card__title {
    font-size: 1.1rem;
  }
}

/* Responsive Design - Small Mobile */
@media only screen and (max-width: 549px) {
  .products-section {
    padding: 60px 0 50px;
  }

  .products-section__title-wrapper {
    margin-bottom: 40px;
  }

  .products-grid {
    gap: 25px;
    padding: 0 10px;
  }

  .product-card {
    border-radius: 10px;
  }

  .product-card__image-wrapper {
    padding-top: 80%;
  }

  .product-card__content {
    padding: 20px 15px;
  }

  .product-card__title {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .product-card__cta {
    font-size: 13px;
    padding: 8px 18px;
  }
}

/* Responsive Design - Extra Small Mobile */
@media only screen and (max-width: 399px) {
  .products-section {
    padding: 50px 0 40px;
  }

  .products-section__title-wrapper {
    margin-bottom: 35px;
  }

  .products-grid {
    gap: 20px;
  }

  .product-card__image-wrapper {
    padding-top: 85%;
  }

  .product-card__content {
    padding: 18px 12px;
  }

  .product-card__title {
    font-size: 0.95rem;
  }
}

/* Landscape Mobile */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .products-section {
    padding: 60px 0 50px;
  }

  .products-section__title-wrapper {
    margin-bottom: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .product-card__image-wrapper {
    padding-top: 70%;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .product-card {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  }

  .product-card:active {
    transform: translateY(-8px) scale(0.98);
  }

  .product-card__overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  }

  .product-card__cta {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .product-card:active .product-card__cta {
    transform: scale(0.95);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .product-card__image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card__image,
  .product-card__overlay,
  .product-card__underline,
  .product-card__cta {
    transition: none;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card:hover .product-card__image {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
.product-card__link:focus-visible {
  outline: 3px solid #012A40;
  outline-offset: 4px;
  border-radius: 16px;
}

/* Print Styles */
@media print {
  .products-section {
    padding: 40px 0;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .product-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
  }

  .product-card__overlay {
    display: none;
  }
}

/* ==========================================================================
   Industries Section - Modern Responsive Design
   ========================================================================== */

.industries-section {
  background: #ffffff !important;
  position: relative;
}

.industries-section__title {
  margin-bottom: 0;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* Industry Card */
.industry-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.industry-card__link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Image Wrapper */
.industry-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
  background: #f8f9fa;
}

.industry-card__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.industry-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.industry-card:hover .industry-card__image {
  transform: scale(1.1);
}

/* Overlay */
.industry-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover .industry-card__overlay {
  opacity: 1;
}

.industry-card__cta {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.industry-card:hover .industry-card__cta {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

/* Content */
.industry-card__content {
  padding: 25px 20px;
  position: relative;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.industry-card__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
  text-align: center;
}

.industry-card:hover .industry-card__title {
  color: #012A40;
}

.industry-card__underline {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #012A40 0%, #000000 100%);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
  margin-top: 8px;
  margin-bottom: 18px;
}

.industry-card:hover .industry-card__underline {
  width: 60px;
}

/* Description */
.industry-card__description {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  margin: 0 0 18px 0;
  text-align: left;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-card__description {
  color: #333333;
}

/* Uses List */
.industry-card__uses {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
  flex: 1;
}

.industry-card__uses li {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.8rem, 1vw, 0.875rem);
  font-weight: 500;
  color: #666666;
  line-height: 1.6;
  padding: 8px 0 8px 22px;
  position: relative;
  transition: all 0.3s ease;
}

.industry-card__uses li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: #012A40;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-card__uses li {
  color: #012A40;
  padding-left: 26px;
}

.industry-card:hover .industry-card__uses li::before {
  transform: scale(1.2);
  color: #012A40;
}

/* Responsive Design - Large Tablet */
@media only screen and (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
  }

  .industry-card__image-wrapper {
    padding-top: 80%;
  }

  .industry-card__content {
    padding: 22px 18px;
  }

  .industry-card__description {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .industry-card__uses {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .industry-card__uses li {
    font-size: 0.85rem;
    padding: 6px 0 6px 20px;
  }
}

/* Responsive Design - Tablet */
@media only screen and (max-width: 1024px) {
  .industries-section {
    padding: 100px 0 80px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
  }

  .industry-card__image-wrapper {
    padding-top: 75%;
  }

  .industry-card__content {
    padding: 25px 20px;
  }

  .industry-card__title {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
  }

  .industry-card__description {
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    margin-bottom: 16px;
  }

  .industry-card__uses {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
  }

  .industry-card__uses li {
    font-size: clamp(0.75rem, 1.2vw, 0.8rem);
    padding: 6px 0 6px 20px;
  }
}

/* Responsive Design - Mobile */
@media only screen and (max-width: 767px) {
  .industries-section {
    padding: 80px 0 60px;
  }

  .industries-section__title {
    margin-bottom: 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 600px;
    margin-top: 45px;
    padding: 0 15px;
  }

  .industry-card {
    border-radius: 12px;
  }

  .industry-card__image-wrapper {
    padding-top: 70%;
  }

  .industry-card__overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  }

  .industry-card__cta {
    font-size: 13px;
    padding: 8px 18px;
  }

  .industry-card__content {
    padding: 20px 18px;
  }

  .industry-card__title {
    font-size: 1.1rem;
    letter-spacing: 0.6px;
  }

  .industry-card__underline {
    width: 50px;
    margin-bottom: 16px;
  }

  .industry-card__description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .industry-card__uses {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .industry-card__uses li {
    font-size: 0.8rem;
    padding: 6px 0 6px 20px;
  }
}

/* Responsive Design - Small Mobile */
@media only screen and (max-width: 549px) {
  .industries-section {
    padding: 60px 0 50px;
  }

  .industries-grid {
    gap: 24px;
    padding: 0 12px;
    margin-top: 40px;
  }

  .industry-card {
    border-radius: 10px;
  }

  .industry-card__image-wrapper {
    padding-top: 75%;
  }

  .industry-card__content {
    padding: 18px 15px;
  }

  .industry-card__title {
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .industry-card__cta {
    font-size: 12px;
    padding: 7px 16px;
  }

  .industry-card__underline {
    width: 45px;
    height: 2.5px;
    margin-bottom: 14px;
  }

  .industry-card__description {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .industry-card__uses {
    gap: 6px;
  }

  .industry-card__uses li {
    font-size: 0.75rem;
    padding: 5px 0 5px 18px;
    line-height: 1.5;
  }

  .industry-card__uses li::before {
    font-size: 0.8rem;
    top: 5px;
  }
}

/* Responsive Design - Extra Small Mobile */
@media only screen and (max-width: 399px) {
  .industries-section {
    padding: 50px 0 40px;
  }

  .industries-grid {
    gap: 20px;
    margin-top: 35px;
  }

  .industry-card__image-wrapper {
    padding-top: 80%;
  }

  .industry-card__content {
    padding: 16px 12px;
  }

  .industry-card__title {
    font-size: 0.95rem;
  }

  .industry-card__cta {
    font-size: 11px;
    padding: 6px 14px;
  }

  .industry-card__underline {
    margin-bottom: 12px;
  }

  .industry-card__description {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .industry-card__uses {
    gap: 5px;
  }

  .industry-card__uses li {
    font-size: 0.7rem;
    padding: 4px 0 4px 16px;
    line-height: 1.4;
  }

  .industry-card__uses li::before {
    font-size: 0.75rem;
    top: 4px;
  }
}

/* Landscape Mobile */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .industries-section {
    padding: 60px 0 50px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .industry-card__image-wrapper {
    padding-top: 65%;
  }

  .industry-card__content {
    padding: 18px 15px;
  }

  .industry-card__description {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .industry-card__uses {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 10px;
  }

  .industry-card__uses li {
    font-size: 0.75rem;
    padding: 5px 0 5px 18px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .industry-card {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  }

  .industry-card:active {
    transform: translateY(-6px) scale(0.98);
  }

  .industry-card__overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  }

  .industry-card__cta {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .industry-card:active .industry-card__cta {
    transform: scale(0.95);
  }

  .industry-card:active .industry-card__image {
    transform: scale(1.05);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .industry-card__image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .industry-card,
  .industry-card__image,
  .industry-card__overlay,
  .industry-card__underline,
  .industry-card__cta,
  .industry-card__description,
  .industry-card__uses li {
    transition: none;
  }

  .industry-card:hover {
    transform: none;
  }

  .industry-card:hover .industry-card__image {
    transform: none;
  }

  .industry-card:hover .industry-card__underline {
    width: 60px;
  }

  .industry-card:hover .industry-card__uses li {
    padding-left: 22px;
  }

  .industry-card:hover .industry-card__uses li::before {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
.industry-card__link:focus-visible {
  outline: 3px solid #012A40;
  outline-offset: 4px;
  border-radius: 16px;
}

/* Print Styles */
@media print {
  .industries-section {
    padding: 40px 0;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .industry-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
  }

  .industry-card__overlay {
    display: none;
  }
}

/* ==========================================================================
   Process Section - Modern Responsive Design with Best UX
   ========================================================================== */

.process-section {
  position: relative;
  padding: 100px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

.process-section__title {
  text-align: center;
  margin-bottom: 80px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Process Steps Grid */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  row-gap: 150px;
  column-gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}



/* Process Step Card */
.process-step-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  overflow: hidden;
  will-change: transform;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #012A40 0%, #000000 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.15);
  border-color: rgba(1, 42, 64, 0.1);
}

.process-step-card:hover::before {
  transform: scaleX(1);
}

/* Card Header */
.process-step-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  position: relative;
}

.process-step-card__number {
  font-family: 'Lato', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: rgba(1, 42, 64, 0.08);
  line-height: 1;
  position: absolute;
  right: 0;
  top: -15px;
  z-index: 0;
  transition: all 0.4s ease;
  user-select: none;
}

.process-step-card:hover .process-step-card__number {
  color: rgba(1, 42, 64, 0.15);
  transform: scale(1.1);
}

.process-step-card__icon-wrapper {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.process-step-card:hover .process-step-card__icon-wrapper {
  background: linear-gradient(135deg, #012A40 0%, #000000 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(1, 42, 64, 0.3);
}

.process-step-card__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) saturate(100%) invert(0);
}

.process-step-card:hover .process-step-card__icon {
  filter: brightness(0) saturate(100%) invert(1);
  transform: scale(1.1);
}

/* Card Content */
.process-step-card__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.process-step-card__title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  margin: 0 0 20px 0;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.process-step-card:hover .process-step-card__title {
  color: #012A40;
}

/* List */
.process-step-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.process-step-card__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-left: 0;
  transition: all 0.3s ease;
}

.process-step-card__list-item:last-child {
  margin-bottom: 0;
}

.process-step-card__list-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #012A40;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(1, 42, 64, 0.3);
}

.process-step-card:hover .process-step-card__list-bullet {
  background: #012A40;
  transform: scale(1.3);
  box-shadow: 0 3px 12px rgba(1, 42, 64, 0.5);
}

.process-step-card__list-item p {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
  flex: 1;
}

.process-step-card:hover .process-step-card__list-item p {
  color: #333333;
}

/* Responsive Design - Large Desktop */
@media only screen and (min-width: 1440px) {
  .process-steps-grid {
    gap: 0;
    row-gap: 180px;
    column-gap: 50px;
    max-width: 1800px;
  }

  .process-step-card {
    padding: 40px 35px;
    margin-bottom: 0;
  }



  .process-step-card__icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .process-step-card__icon {
    width: 55px;
    height: 55px;
  }
}

/* Responsive Design - Tablet */
@media only screen and (max-width: 1024px) {
  .process-section {
    padding: 80px 0 100px;
  }

  .process-section__title {
    margin-bottom: 60px;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    row-gap: 80px;
    column-gap: 35px;
    padding: 0 20px;
  }

  .process-step-card {
    padding: 30px 25px;
    border-radius: 18px;
    margin-bottom: 0;
  }



  .process-step-card__icon-wrapper {
    width: 75px;
    height: 75px;
  }

  .process-step-card__icon {
    width: 45px;
    height: 45px;
  }

  .process-step-card__title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 18px;
  }

  .process-step-card__list-item {
    margin-bottom: 12px;
  }

  .process-step-card__list-item p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  }
}

/* Responsive Design - Mobile */
@media only screen and (max-width: 767px) {
  .process-section {
    padding: 60px 0 80px;
  }

  .process-section__title {
    margin-bottom: 50px;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
    row-gap: 60px;
    column-gap: 0;
    max-width: 600px;
    padding: 0 15px;
  }

  .process-step-card {
    padding: 28px 22px;
    border-radius: 16px;
    margin-bottom: 0;
  }



  .process-step-card__header {
    margin-bottom: 22px;
  }

  .process-step-card__number {
    font-size: clamp(2rem, 8vw, 3.5rem);
    top: -12px;
  }

  .process-step-card__icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
  }

  .process-step-card__icon {
    width: 42px;
    height: 42px;
  }

  .process-step-card__title {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 16px;
    line-height: 1.35;
  }

  .process-step-card__list-item {
    margin-bottom: 12px;
  }

  .process-step-card__list-bullet {
    width: 7px;
    height: 7px;
    margin-right: 10px;
    margin-top: 7px;
  }

  .process-step-card__list-item p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    line-height: 1.65;
  }
}

/* Responsive Design - Small Mobile */
@media only screen and (max-width: 549px) {
  .process-section {
    padding: 50px 0 70px;
  }

  .process-section__title {
    margin-bottom: 40px;
  }

  .process-steps-grid {
    gap: 0;
    row-gap: 50px;
    padding: 0 12px;
  }

  .process-step-card {
    padding: 24px 20px;
    border-radius: 14px;
    margin-bottom: 0;
  }

  .process-step-card__header {
    margin-bottom: 20px;
  }

  .process-step-card__number {
    font-size: clamp(1.8rem, 9vw, 3rem);
    top: -10px;
  }

  .process-step-card__icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 14px;
  }

  .process-step-card__icon {
    width: 38px;
    height: 38px;
  }

  .process-step-card__title {
    font-size: clamp(0.95rem, 4.5vw, 1.15rem);
    margin-bottom: 14px;
  }

  .process-step-card__list-item {
    margin-bottom: 10px;
  }

  .process-step-card__list-bullet {
    width: 6px;
    height: 6px;
    margin-right: 9px;
    margin-top: 6px;
  }

  .process-step-card__list-item p {
    font-size: clamp(0.8rem, 4vw, 0.9rem);
    line-height: 1.6;
  }
}

/* Responsive Design - Extra Small Mobile */
@media only screen and (max-width: 399px) {
  .process-section {
    padding: 40px 0 60px;
  }

  .process-section__title {
    margin-bottom: 35px;
  }

  .process-steps-grid {
    gap: 0;
    row-gap: 45px;
    padding: 0 10px;
  }

  .process-step-card {
    padding: 22px 18px;
    border-radius: 12px;
    margin-bottom: 0;
  }

  .process-step-card__header {
    margin-bottom: 18px;
  }

  .process-step-card__number {
    font-size: clamp(1.6rem, 10vw, 2.5rem);
    top: -8px;
  }

  .process-step-card__icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .process-step-card__icon {
    width: 35px;
    height: 35px;
  }

  .process-step-card__title {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
    margin-bottom: 12px;
  }

  .process-step-card__list-item {
    margin-bottom: 9px;
  }

  .process-step-card__list-bullet {
    width: 5px;
    height: 5px;
    margin-right: 8px;
    margin-top: 5px;
  }

  .process-step-card__list-item p {
    font-size: clamp(0.75rem, 4.5vw, 0.85rem);
    line-height: 1.55;
  }
}

/* Landscape Mobile */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .process-section {
    padding: 50px 0 70px;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    row-gap: 0;
    column-gap: 25px;
  }

  .process-step-card {
    padding: 24px 20px;
    margin-bottom: 45px;
  }

  .process-step-card:last-child,
  .process-step-card:nth-child(2n) {
    margin-bottom: 0;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .process-step-card {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  }

  .process-step-card:active {
    transform: translateY(-6px) scale(0.98);
  }

  .process-step-card__icon-wrapper {
    background: linear-gradient(135deg, #012A40 0%, #000000 100%);
  }

  .process-step-card__icon {
    filter: brightness(0) saturate(100%) invert(1);
  }

  .process-step-card__list-bullet {
    transform: scale(1.2);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .process-step-card__icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .process-step-card,
  .process-step-card__icon-wrapper,
  .process-step-card__icon,
  .process-step-card__number,
  .process-step-card__list-bullet,
  .process-step-card__title,
  .process-step-card__list-item p {
    transition: none;
  }

  .process-step-card:hover {
    transform: none;
  }

  .process-step-card:hover .process-step-card__icon-wrapper {
    transform: none;
  }

  .process-step-card:hover .process-step-card__number {
    transform: none;
  }

  .process-step-card:hover .process-step-card__list-bullet {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
.process-step-card:focus-visible {
  outline: 3px solid #012A40;
  outline-offset: 4px;
  border-radius: 20px;
}

/* Print Styles */
@media print {
  .process-section {
    padding: 40px 0;
    page-break-inside: avoid;
  }

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .process-step-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 30px;
  }

  .process-step-card:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* ==========================================================================
   Catalogue Section - Modern Responsive Design with Best UX
   ========================================================================== */

/* Catalogue Hero Section */
.catalogue-hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: #ffffff;
  overflow: visible !important;
  z-index: 1;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
  min-height: auto;
}

/* Override parent hidden-box overflow for hero section */
section.hidden-box .catalogue-hero-section {
  overflow: visible !important;
}

/* Ensure hero section is visible on page load */
.catalogue-hero-section * {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Override animation classes for hero section to ensure visibility */
.catalogue-hero-section .anim-fade-to-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.catalogue-hero-section .tr-delay-01 {
  transition-delay: 0.1s;
}

.catalogue-hero-content {
  max-width: 100%;
  position: relative;
  z-index: 2;
  display: block;
  visibility: visible;
  opacity: 1;
}

.catalogue-hero-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.catalogue-hero-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000000 !important;
  line-height: 1.3;
  margin: 0 0 25px 0;
  letter-spacing: -0.02em;
  display: block;
  visibility: visible;
  opacity: 1 !important;
}

/* Ensure hero title is visible even if animation doesn't trigger */
.catalogue-hero-section .catalogue-hero-title.anim-fade-to-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.catalogue-hero-description {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: #555555 !important;
  line-height: 1.8;
  margin: 0;
  text-align: center;
  display: block;
  visibility: visible;
  opacity: 1 !important;
}

/* Ensure hero description is visible even if animation doesn't trigger */
.catalogue-hero-section .catalogue-hero-description.anim-fade-to-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

/* Catalogue Features Section */
.catalogue-features-section {
  position: relative;
  padding: 80px 0;
  background: #f8f9fa;
}

.catalogue-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 100%;
}

.catalogue-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 2px solid transparent;
  will-change: transform;
}

.catalogue-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(1, 42, 64, 0.1);
}

.catalogue-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 18px;
  color: #012A40;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.catalogue-feature-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.5;
}

.catalogue-feature-card:hover .catalogue-feature-icon {
  background: linear-gradient(135deg, #012A40 0%, #000000 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(1, 42, 64, 0.3);
}

.catalogue-feature-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #000000;
  margin: 0 0 15px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.catalogue-feature-card:hover .catalogue-feature-title {
  color: #012A40;
}

.catalogue-feature-text {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 400;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.catalogue-feature-card:hover .catalogue-feature-text {
  color: #333333;
}

/* Catalogue Download Section */
.catalogue-download-section {
  position: relative;
  padding: 100px 0 120px;
  background: #ffffff;
}

.catalogue-download-card {
  background: linear-gradient(135deg, #012A40 0%, #000000 100%);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.catalogue-download-card:hover::before {
  opacity: 1;
}

.catalogue-download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.catalogue-download-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.catalogue-download-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-download-card:hover .catalogue-download-icon-wrapper {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(255, 255, 255, 0.3);
}

.catalogue-download-icon {
  width: 48px;
  height: 48px;
  color: #ffffff;
  stroke-width: 2.5;
}

.catalogue-download-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.catalogue-download-description {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0 0 35px 0;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.catalogue-download-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.catalogue-download-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 500;
}

.catalogue-download-info-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.catalogue-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: #ffffff;
  color: #012A40;
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  min-width: 220px;
}

.catalogue-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
  border-color: rgba(1, 42, 64, 0.1);
}

.catalogue-download-btn:active {
  transform: translateY(-1px);
}

.catalogue-download-btn-text {
  position: relative;
  z-index: 1;
}

.catalogue-download-btn-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.catalogue-download-btn:hover .catalogue-download-btn-icon {
  transform: translateY(2px);
}

/* Responsive Design - Tablet */
@media only screen and (max-width: 1024px) {
  .catalogue-hero-section {
    padding: 50px 0 70px;
  }

  .catalogue-hero-title {
    margin-bottom: 20px;
  }

  .catalogue-features-section {
    padding: 70px 0;
  }

  .catalogue-features-grid {
    gap: 25px;
  }

  .catalogue-feature-card {
    padding: 35px 25px;
  }

  .catalogue-feature-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 22px;
  }

  .catalogue-feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .catalogue-download-section {
    padding: 80px 0 100px;
  }

  .catalogue-download-card {
    padding: 50px 40px;
    border-radius: 20px;
  }

  .catalogue-download-icon-wrapper {
    width: 85px;
    height: 85px;
    margin-bottom: 28px;
  }

  .catalogue-download-icon {
    width: 44px;
    height: 44px;
  }

  .catalogue-download-info {
    gap: 20px;
    margin-bottom: 35px;
  }
}

/* Responsive Design - Mobile */
@media only screen and (max-width: 767px) {
  .catalogue-hero-section {
    padding: 40px 0 60px;
  }

  .catalogue-hero-text {
    text-align: left;
  }

  .catalogue-hero-title {
    text-align: center;
    margin-bottom: 18px;
  }

  .catalogue-hero-description {
    text-align: center;
  }

  .catalogue-features-section {
    padding: 60px 0;
  }

  .catalogue-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .catalogue-feature-card {
    padding: 32px 22px;
    border-radius: 14px;
  }

  .catalogue-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .catalogue-feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .catalogue-feature-title {
    margin-bottom: 12px;
  }

  .catalogue-download-section {
    padding: 60px 0 80px;
  }

  .catalogue-download-card {
    padding: 40px 25px;
    border-radius: 18px;
  }

  .catalogue-download-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 25px;
    border-radius: 18px;
  }

  .catalogue-download-icon {
    width: 38px;
    height: 38px;
  }

  .catalogue-download-title {
    margin-bottom: 18px;
  }

  .catalogue-download-description {
    margin-bottom: 30px;
  }

  .catalogue-download-info {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .catalogue-download-info-item {
    justify-content: center;
  }

  .catalogue-download-btn {
    padding: 16px 35px;
    min-width: 200px;
    width: 100%;
    max-width: 300px;
  }
}

/* Responsive Design - Small Mobile */
@media only screen and (max-width: 549px) {
  .catalogue-hero-section {
    padding: 35px 0 50px;
  }

  .catalogue-hero-title {
    margin-bottom: 15px;
  }

  .catalogue-features-section {
    padding: 50px 0;
  }

  .catalogue-features-grid {
    gap: 20px;
  }

  .catalogue-feature-card {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .catalogue-feature-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
    border-radius: 14px;
  }

  .catalogue-feature-icon svg {
    width: 26px;
    height: 26px;
  }

  .catalogue-feature-title {
    margin-bottom: 10px;
  }

  .catalogue-download-section {
    padding: 50px 0 70px;
  }

  .catalogue-download-card {
    padding: 35px 20px;
    border-radius: 16px;
  }

  .catalogue-download-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
    border-radius: 16px;
  }

  .catalogue-download-icon {
    width: 36px;
    height: 36px;
  }

  .catalogue-download-title {
    margin-bottom: 15px;
  }

  .catalogue-download-description {
    margin-bottom: 25px;
  }

  .catalogue-download-info {
    gap: 12px;
    margin-bottom: 28px;
  }

  .catalogue-download-info-item {
    font-size: 0.8rem;
  }

  .catalogue-download-info-item svg {
    width: 18px;
    height: 18px;
  }

  .catalogue-download-btn {
    padding: 14px 30px;
    min-width: 180px;
    font-size: 0.95rem;
  }
}

/* Responsive Design - Extra Small Mobile */
@media only screen and (max-width: 399px) {
  .catalogue-hero-section {
    padding: 30px 0 45px;
  }

  .catalogue-features-section {
    padding: 45px 0;
  }

  .catalogue-feature-card {
    padding: 25px 18px;
  }

  .catalogue-feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .catalogue-feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .catalogue-download-section {
    padding: 45px 0 60px;
  }

  .catalogue-download-card {
    padding: 30px 18px;
  }

  .catalogue-download-icon-wrapper {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }

  .catalogue-download-icon {
    width: 32px;
    height: 32px;
  }

  .catalogue-download-btn {
    padding: 12px 25px;
    min-width: 160px;
    font-size: 0.9rem;
  }
}

/* Landscape Mobile */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .catalogue-hero-section {
    padding: 35px 0 50px;
  }

  .catalogue-features-section {
    padding: 50px 0;
  }

  .catalogue-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .catalogue-download-section {
    padding: 50px 0 70px;
  }

  .catalogue-download-card {
    padding: 35px 25px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .catalogue-feature-card {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  }

  .catalogue-feature-card:active {
    transform: translateY(-6px) scale(0.98);
  }

  .catalogue-feature-card:active .catalogue-feature-icon {
    transform: scale(1.05) rotate(3deg);
  }

  .catalogue-download-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

  .catalogue-download-card:active {
    transform: translateY(-3px);
  }

  .catalogue-download-btn {
    min-height: 48px;
  }

  .catalogue-download-btn:active {
    transform: translateY(-1px) scale(0.98);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .catalogue-feature-icon svg,
  .catalogue-download-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .catalogue-feature-card,
  .catalogue-feature-icon,
  .catalogue-download-card,
  .catalogue-download-icon-wrapper,
  .catalogue-download-btn,
  .catalogue-download-btn-icon {
    transition: none;
  }

  .catalogue-feature-card:hover {
    transform: none;
  }

  .catalogue-feature-card:hover .catalogue-feature-icon {
    transform: none;
  }

  .catalogue-download-card:hover {
    transform: none;
  }

  .catalogue-download-card:hover .catalogue-download-icon-wrapper {
    transform: none;
  }

  .catalogue-download-btn:hover {
    transform: none;
  }

  .catalogue-download-btn:hover .catalogue-download-btn-icon {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
.catalogue-download-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 50px;
}

.catalogue-feature-card:focus-visible {
  outline: 3px solid #012A40;
  outline-offset: 4px;
  border-radius: 16px;
}

/* Print Styles */
@media print {
  .catalogue-hero-section,
  .catalogue-features-section,
  .catalogue-download-section {
    padding: 30px 0;
    page-break-inside: avoid;
  }

  .catalogue-feature-card,
  .catalogue-download-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
  }

  .catalogue-download-card {
    background: #ffffff;
    color: #000000;
  }

  .catalogue-download-title,
  .catalogue-download-description,
  .catalogue-download-info-item {
    color: #000000;
  }
}

/* ==========================================================================
   Modern Contact Section - Fully Responsive Design with Best UX
   ========================================================================== */

/* Contact Page Header */
.contact-page-header {
  padding: 120px 0 40px;
  background: #ffffff;
}

.contact-breadcrumb {
  padding-bottom: 30px;
}

/* Main Contact Section */
.modern-contact-section {
  position: relative;
  padding: 80px 0 100px;
  background: #f8f9fa;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Column */
.contact-form-column {
  position: relative;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 45px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-form-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-form-header {
  margin-bottom: 40px;
}

.contact-form-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.contact-form-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Modern Form Styles */
.modern-contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label .required {
  color: #e74c3c;
  margin-left: 3px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #999999;
  opacity: 1;
}

.form-input:focus {
  border-color: #012A40;
  box-shadow: 0 0 0 3px rgba(1, 42, 64, 0.1);
}

.form-input:hover:not(:focus) {
  border-color: #b0b0b0;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

.form-submit-wrapper {
  margin-top: 35px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 45px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background: #012A40;
  border: 2px solid #012A40;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  position: relative;
  overflow: hidden;
}

.contact-submit-btn:hover {
  background: #000000;
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 42, 64, 0.3);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-submit-btn:focus-visible {
  outline: 3px solid #012A40;
  outline-offset: 4px;
}

.contact-submit-btn.loading .btn-text {
  opacity: 0;
}

.contact-submit-btn.loading .btn-loader {
  display: block !important;
}

/* Contact Alerts */
.contact-alert {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.contact-alert.js-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-alert-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  border: 2px solid #e8f5e9;
}

.contact-alert-content.error {
  border-color: #ffebee;
}

.alert-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
}

.error-icon {
  background: #ffebee;
  color: #c62828;
}

.alert-icon svg {
  width: 36px;
  height: 36px;
}

.alert-message h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
}

.alert-message p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.alert-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666666;
}

.alert-close:hover {
  background: #e0e0e0;
  color: #000000;
  transform: rotate(90deg);
}

.alert-close svg {
  width: 18px;
  height: 18px;
}

/* Contact Info Column */
.contact-info-column {
  position: sticky;
  top: 120px;
}

.contact-info-header {
  margin-bottom: 35px;
}

.contact-info-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.contact-info-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 400;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #012A40;
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  color: #012A40;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-card-icon {
  background: linear-gradient(135deg, #012A40 0%, #000000 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-content {
  flex: 1;
}

.contact-card-title {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.contact-info-card:hover .contact-card-title {
  color: #012A40;
}

.contact-card-link {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #666666;
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.contact-card-link:hover {
  color: #012A40;
  text-decoration: underline;
}

.contact-card-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card-address {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #666666;
  font-style: normal;
  line-height: 1.7;
  margin: 0 0 15px 0;
}

.map-link {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

/* Company Info */
.contact-company-info {
  background: linear-gradient(135deg, #012A40 0%, #000000 100%);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  color: #ffffff;
}

.company-name {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  color: #ffffff;
}

.company-tagline {
  font-family: 'Lato', sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Map Section */
.contact-map-section {
  position: relative;
  width: 100%;
  background: #ffffff;
}

.map-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================================================
   Responsive Design - Tablet
   ========================================================================== */
@media only screen and (max-width: 1024px) {
  .contact-page-header {
    padding: 100px 0 30px;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info-column {
    position: static;
    order: -1;
  }

  .contact-form-card {
    padding: 40px 35px;
  }

  .contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .map-container {
    height: 500px;
  }
}

/* ==========================================================================
   Responsive Design - Mobile
   ========================================================================== */
@media only screen and (max-width: 767px) {
  .contact-page-header {
    padding: 80px 0 25px;
  }

  .modern-contact-section {
    padding: 50px 0 60px;
  }

  .contact-wrapper {
    gap: 40px;
  }

  .contact-form-card {
    padding: 35px 25px;
    border-radius: 16px;
  }

  .contact-form-title,
  .contact-info-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 12px;
  }

  .contact-form-subtitle,
  .contact-info-subtitle {
    font-size: 0.95rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-input {
    padding: 14px 18px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  .form-textarea {
    min-height: 120px;
  }

  .contact-submit-btn {
    width: 100%;
    padding: 16px 35px;
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-info-card {
    padding: 25px 20px;
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .contact-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .contact-card-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .contact-card-link,
  .contact-card-address {
    font-size: 0.9rem;
  }

  .contact-company-info {
    padding: 30px 25px;
    border-radius: 14px;
  }

  .company-name {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .company-tagline {
    font-size: 0.85rem;
  }

  .map-container {
    height: 400px;
  }

  .contact-alert-content {
    padding: 30px 25px;
    max-width: 90%;
  }

  .alert-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .alert-icon svg {
    width: 30px;
    height: 30px;
  }

  .alert-message h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .alert-message p {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Responsive Design - Small Mobile
   ========================================================================== */
@media only screen and (max-width: 549px) {
  .contact-page-header {
    padding: 70px 0 20px;
  }

  .modern-contact-section {
    padding: 40px 0 50px;
  }

  .contact-form-card {
    padding: 30px 20px;
    border-radius: 14px;
  }

  .contact-form-header {
    margin-bottom: 30px;
  }

  .contact-form-title {
    font-size: 1.5rem;
  }

  .form-input {
    padding: 13px 16px;
    font-size: 16px;
  }

  .form-label {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .form-submit-wrapper {
    margin-top: 30px;
  }

  .contact-submit-btn {
    padding: 14px 30px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .contact-info-header {
    margin-bottom: 25px;
  }

  .contact-info-cards {
    gap: 15px;
    margin-bottom: 30px;
  }

  .contact-info-card {
    padding: 22px 18px;
    border-radius: 14px;
    gap: 16px;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
  }

  .contact-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .contact-card-link,
  .contact-card-address {
    font-size: 0.85rem;
  }

  .contact-company-info {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .company-name {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }

  .company-tagline {
    font-size: 0.8rem;
  }

  .map-container {
    height: 350px;
  }
}

/* ==========================================================================
   Responsive Design - Extra Small Mobile
   ========================================================================== */
@media only screen and (max-width: 399px) {
  .contact-form-card {
    padding: 25px 18px;
  }

  .contact-form-title {
    font-size: 1.3rem;
  }

  .contact-form-subtitle {
    font-size: 0.9rem;
  }

  .form-input {
    padding: 12px 14px;
  }

  .contact-info-card {
    padding: 20px 16px;
    gap: 14px;
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .contact-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .map-container {
    height: 300px;
  }
}

/* ==========================================================================
   Landscape Mobile Support
   ========================================================================== */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .contact-page-header {
    padding: 60px 0 20px;
  }

  .modern-contact-section {
    padding: 40px 0 50px;
  }

  .contact-wrapper {
    gap: 35px;
  }

  .map-container {
    height: 350px;
  }
}

/* ==========================================================================
   Touch Device Optimizations
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
  .contact-submit-btn {
    min-height: 52px;
    padding: 16px 40px;
  }

  .contact-submit-btn:active {
    transform: translateY(0) scale(0.98);
  }

  .form-input {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 14px 18px;
  }

  .contact-info-card:active {
    transform: translateY(-3px) scale(0.99);
  }

  .contact-card-link {
    padding: 4px 0;
    margin: -4px 0;
  }
}

/* ==========================================================================
   High DPI Display Support
   ========================================================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .contact-form-card,
  .contact-info-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
}

/* ==========================================================================
   Reduced Motion Support
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .contact-form-card,
  .contact-info-card,
  .contact-card-icon,
  .contact-submit-btn,
  .form-input,
  .contact-alert {
    transition: none;
  }

  .contact-form-card:hover,
  .contact-info-card:hover {
    transform: none;
  }

  .contact-card-icon:hover {
    transform: none;
  }
}

/* ==========================================================================
   Focus Styles for Accessibility
   ========================================================================== */
.contact-card-link:focus-visible,
.alert-close:focus-visible {
  outline: 2px solid #012A40;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
  .modern-contact-section {
    padding: 30px 0;
    page-break-inside: avoid;
  }

  .contact-form-card,
  .contact-info-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
  }

  .map-container {
    display: none;
  }

  .contact-submit-btn {
    display: none;
  }
}

/* ==========================================================================
   Black Masterbatch Page - Modern Responsive Design
   ========================================================================== */

/* Features Section */
.black-masterbatch-features {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #012A40 0%, #000000 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #012A40;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  color: #012A40;
  stroke-width: 2.5;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #012A40 0%, #000000 100%);
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon svg {
  color: #ffffff;
}

.feature-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #012A40;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Applications Section */
.black-masterbatch-applications {
  padding: 100px 0;
  background: #f8f9fa;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.application-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.application-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(1, 42, 64, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%);
  border-radius: 0 0 0 100%;
  transition: all 0.4s ease;
}

.application-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  border-color: #012A40;
}

.application-card:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.application-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #012A40;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.application-card:hover .application-number {
  opacity: 0.25;
  transform: scale(1.1);
}

.application-title {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: #012A40;
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.application-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #666666;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* CTA Section */
.black-masterbatch-cta {
  padding: 80px 0;
  background: #ffffff;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  border: 1px solid #e5e5e5;
}

.cta-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 35px;
  color: #333333;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #012A40 0%, #000000 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(1, 42, 64, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(1, 42, 64, 0.3);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

.cta-button span {
  position: relative;
  z-index: 1;
}

/* Gallery Section */
.black-masterbatch-gallery {
  padding: 100px 0;
  background: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #f0f0f0;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
}

/* Responsive Design - Large Tablet */
@media only screen and (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive Design - Tablet */
@media only screen and (max-width: 1024px) {
  .black-masterbatch-features,
  .black-masterbatch-applications,
  .black-masterbatch-gallery {
    padding: 80px 0;
  }

  .black-masterbatch-cta {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .features-grid {
    gap: 25px;
  }

  .feature-card {
    padding: 30px 25px;
  }

  .applications-grid {
    gap: 20px;
  }

  .application-card {
    padding: 30px 25px;
  }

  .gallery-grid {
    gap: 25px;
  }

  .cta-content {
    padding: 40px 30px;
  }
}

/* Responsive Design - Mobile */
@media only screen and (max-width: 767px) {
  .black-masterbatch-features,
  .black-masterbatch-applications,
  .black-masterbatch-gallery {
    padding: 60px 0;
  }

  .black-masterbatch-cta {
    padding: 50px 0;
  }

  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .feature-card {
    padding: 28px 22px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 30px;
    height: 30px;
  }

  .applications-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }

  .application-card {
    padding: 28px 22px;
  }

  .application-number {
    margin-bottom: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-image-wrapper {
    padding-top: 70%;
  }

  .cta-content {
    padding: 35px 25px;
    margin: 0 15px;
  }

  .cta-text {
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 14px 32px;
    width: 100%;
    justify-content: center;
  }
}

/* Responsive Design - Small Mobile */
@media only screen and (max-width: 549px) {
  .black-masterbatch-features,
  .black-masterbatch-applications,
  .black-masterbatch-gallery {
    padding: 50px 0;
  }

  .black-masterbatch-cta {
    padding: 40px 0;
  }

  .section-title {
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .features-grid,
  .applications-grid {
    gap: 15px;
    margin-top: 35px;
  }

  .feature-card,
  .application-card {
    padding: 25px 20px;
  }

  .feature-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .gallery-grid {
    gap: 15px;
  }

  .gallery-image-wrapper {
    padding-top: 75%;
  }

  .cta-content {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Responsive Design - Extra Small Mobile */
@media only screen and (max-width: 399px) {
  .black-masterbatch-features,
  .black-masterbatch-applications,
  .black-masterbatch-gallery {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .feature-card,
  .application-card {
    padding: 22px 18px;
  }

  .cta-content {
    padding: 25px 18px;
  }
}

/* Landscape Mobile */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .black-masterbatch-features,
  .black-masterbatch-applications,
  .black-masterbatch-gallery {
    padding: 50px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .feature-card,
  .application-card,
  .gallery-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .feature-card:active {
    transform: translateY(-4px) scale(0.98);
  }

  .application-card:active {
    transform: translateY(-3px) scale(0.99);
  }

  .gallery-item:active {
    transform: translateY(-4px) scale(0.98);
  }

  .cta-button:active {
    transform: translateY(0) scale(0.97);
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .feature-card,
  .application-card,
  .gallery-item {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .application-card,
  .gallery-item,
  .cta-button,
  .feature-icon,
  .application-number,
  .gallery-image {
    transition: none;
  }

  .feature-card:hover,
  .application-card:hover,
  .gallery-item:hover {
    transform: none;
  }

  .feature-card:hover .feature-icon,
  .application-card:hover .application-number {
    transform: none;
  }

  .gallery-item:hover .gallery-image {
    transform: none;
  }

  .cta-button:hover svg {
    transform: none;
  }
}

/* Focus Styles for Accessibility */
.feature-card:focus-visible,
.application-card:focus-visible,
.cta-button:focus-visible {
  outline: 3px solid #012A40;
  outline-offset: 3px;
}

/* Print Styles */
@media print {
  .black-masterbatch-features,
  .black-masterbatch-applications,
  .black-masterbatch-cta,
  .black-masterbatch-gallery {
    padding: 30px 0;
    page-break-inside: avoid;
  }

  .feature-card,
  .application-card,
  .gallery-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .cta-button {
    display: none;
  }
}

/* ==========================================================================
   Color Masterbatch Page - Modern Responsive Design
   ========================================================================== */

/* Features Section - Reuse black masterbatch styles */
.color-masterbatch-features {
  padding: 100px 0;
}

.color-masterbatch-applications {
  padding: 100px 0;
  background: #f8f9fa;
}

.color-masterbatch-cta {
  padding: 80px 0;
  background: #ffffff;
}

/* Gallery Section - 3 Column Layout */
.color-masterbatch-gallery {
  padding: 100px 0;
  background: #f8f9fa;
}

.gallery-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-grid-3col .gallery-image-wrapper {
  padding-top: 80%;
}

/* Responsive Design - Large Tablet */
@media only screen and (max-width: 1200px) {
  .color-masterbatch-features,
  .color-masterbatch-applications,
  .color-masterbatch-gallery {
    padding: 80px 0;
  }

  .color-masterbatch-cta {
    padding: 60px 0;
  }

  .gallery-grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Responsive Design - Tablet */
@media only screen and (max-width: 1024px) {
  .color-masterbatch-features,
  .color-masterbatch-applications,
  .color-masterbatch-gallery {
    padding: 80px 0;
  }

  .gallery-grid-3col {
    gap: 25px;
  }
}

/* Responsive Design - Mobile */
@media only screen and (max-width: 767px) {
  .color-masterbatch-features,
  .color-masterbatch-applications,
  .color-masterbatch-gallery {
    padding: 60px 0;
  }

  .color-masterbatch-cta {
    padding: 50px 0;
  }

  .gallery-grid-3col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid-3col .gallery-image-wrapper {
    padding-top: 70%;
  }
}

/* Responsive Design - Small Mobile */
@media only screen and (max-width: 549px) {
  .color-masterbatch-features,
  .color-masterbatch-applications,
  .color-masterbatch-gallery {
    padding: 50px 0;
  }

  .gallery-grid-3col {
    gap: 15px;
  }

  .gallery-grid-3col .gallery-image-wrapper {
    padding-top: 75%;
  }
}

/* Landscape Mobile */
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .gallery-grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Touch Device Optimizations - Color Masterbatch */
@media (hover: none) and (pointer: coarse) {
  .color-masterbatch-features .feature-card,
  .color-masterbatch-applications .application-card,
  .color-masterbatch-gallery .gallery-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .color-masterbatch-features .feature-card:active,
  .color-masterbatch-applications .application-card:active,
  .color-masterbatch-gallery .gallery-item:active {
    transform: translateY(-4px) scale(0.98);
  }
}

/* Print Styles - Color Masterbatch */
@media print {
  .color-masterbatch-features,
  .color-masterbatch-applications,
  .color-masterbatch-cta,
  .color-masterbatch-gallery {
    padding: 30px 0;
    page-break-inside: avoid;
  }
}