/* Magwerks */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
  
  scrollbar-gutter: stable;
  background: transparent !important;
  background-color: transparent !important;
}

body,
html {
  min-width: 400px;
}

.container {
  width: 100%;
  margin: 0;
  padding: 0 20px;
  background: transparent;
  min-width: 400px;
}

.top-bar {
  background: transparent;
  backdrop-filter: none;
  padding: 15px 0;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  box-shadow: none;
  transition: all 0.1s ease;
  width: 100vw;
  min-width: 400px;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 0 40px;
}

.logo-contact {
  flex-shrink: 0;
}

.logo-contact h1 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  transition: transform 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo-contact h1:hover {
  transform: scale(1.05);
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.red {
  color: rgb(244, 67, 67);
}

.black {
  color: #000000;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  flex-wrap: nowrap;
  background: transparent;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-menu a:hover {
  color: rgb(244, 67, 67);
  background: rgba(244, 67, 67, 0.2);
  transform: translateY(-2px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.nav-menu a.active {
  color: rgb(244, 67, 67);
  background: rgba(244, 67, 67, 0.2);
  transform: translateY(-2px);
}

.nav-menu a.active:hover {
  background: rgba(244, 67, 67, 0.25);
}

.dropdown {
  position: relative;
}

.dropdown:last-child .dropdown-menu {
  right: 0;
  left: auto;
  transform: translateX(0);
}

.dropdown-toggle::after {
  content: '';
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  flex-direction: column;
  min-width: 220px;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: flex;
}

.dropdown-menu a {
  padding: 8px 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: normal;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: block;
  width: 100%;
}

.dropdown-menu a:hover {
  background-color: rgba(244, 67, 67, 0.2);
  color: rgb(244, 67, 67);
  border-radius: 4px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle .arrow {
  font-size: 12px;
  transform: rotate(0deg);
}

.arrow {
  color: inherit;
  font-weight: bold;
}

.dropdown-user-label {
  display: block;
  padding: 8px;
}

.dropdown-hidden {
  display: none !important;
}

.mobile-nav-dropdown {
  display: none;
}

.header-dialog-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.header-dialog {
  background: rgba(10, 15, 30, 0.95);
  border-radius: 14px;
  padding: 32px;
  max-width: 400px;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-dialog-icon {
  font-size: 48px;
  color: #4CAF50;
  margin-bottom: 16px;
}

.header-dialog-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 12px;
}

.header-dialog-message {
  font-size: 1.1em;
  margin-bottom: 24px;
}

.header-dialog-button {
  background: linear-gradient(135deg, #f43f43 0%, #d32f2f 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
}

main.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 400px;
  padding: 0;
  margin: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  padding: 8px 14px;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2000;
  transition: top 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.skip-link:focus-visible {
  top: 10px;
  opacity: 1;
}

.footer {
  background: radial-gradient(
      circle at top left,
      rgba(244, 67, 67, 0.12),
      rgba(18, 28, 52, 0.94)
    ),
    linear-gradient(135deg, #141b2c, #1b2234);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -18px 45px rgba(0, 0, 0, 0.65);
  padding: 40px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: auto;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-left {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  color: #ffffff;
}

.footer-contact-info {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.footer-contact-item i {
  color: rgb(244, 67, 67);
  font-size: 15px;
  width: 16px;
  text-align: center;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.footer-contact-item:not(:last-child)::after {
  content: '•';
  color: rgba(255, 255, 255, 0.45);
  margin-left: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 10px;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 0.9rem;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: rgb(244, 67, 67);
  transition: width 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  width: 100%;
}

.footer-right {
  flex: 0 1 380px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-columns {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 24px;
}

.footer-column {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-heading {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgb(244, 67, 67);
  transition: width 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #ffffff;
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  width: 100%;
}

.footer-nav--faqs a {
  opacity: 0.9;
}

.footer-bottom {
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 12px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0 24px;
  }

  .footer-inner {
    padding: 0 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    align-items: center;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-info {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-contact-item:not(:last-child)::after {
    display: none;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 0 20px;
  }

  .footer-inner {
    padding: 0 12px;
  }
}

.hero.split-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
  width: 100vw;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.05);
  transform: none;
  opacity: 1;
}

.hero-bg .reveal-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  z-index: 3;
  transform: translateY(0);
  transition: transform 800ms cubic-bezier(0.25, 1, 0.3, 1);
}

.hero-bg.is-loaded .reveal-cover {
  transform: translateY(100%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.45) 0%,
    rgba(22, 33, 62, 0.35) 50%,
    rgba(15, 52, 96, 0.45) 100%
  );
}

.hero-content .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 40px;
}

.hero-text {
  text-align: center;
  margin: 0 auto;
}

.hero-logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  max-width: 1000px;
  height: auto;
  max-height: 1000px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero-buttons .btn-primary,
.cta-buttons .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
  text-align: center;
  background: rgba(244, 67, 67, 0.78);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(244, 67, 67, 0.45);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-logo img,
.hero-title {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 700ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-buttons {
  opacity: 0;
  transform: scale(0.9);
  filter: blur(6px);
  transition: opacity 800ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
}

.hero-content.hero-reveal-active .appear-1 {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
  transition-delay: 50ms;
}

.hero-content.hero-reveal-active .appear-2 {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
  transition-delay: 250ms;
  transition-duration: 1200ms;
}

.hero-content.hero-reveal-active .appear-3 {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition-delay: 200ms;
  transition-duration: 400ms;
}

.hero-title.shape-wipe {
  clip-path: inset(0 100% 0 0);
}

.hero-content.hero-reveal-active .hero-title.shape-wipe {
  animation: titleWipeLR 800ms ease-in-out both 200ms;
}

@keyframes titleWipeLR {
  to {
    clip-path: inset(0 0 0 0);
  }
}

.hero-buttons .btn {
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.hero-buttons .btn:hover,
.hero-buttons .btn:focus-visible {
  animation: softPulse 700ms ease-out 1;
  transform: scale(1.04);
  box-shadow: 0 8px 26px rgba(244, 67, 67, 0.5);
}

@keyframes softPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(244, 67, 67, 0.45);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 10px 30px rgba(244, 67, 67, 0.6);
  }
  100% {
    transform: scale(1.04);
    box-shadow: 0 8px 26px rgba(244, 67, 67, 0.5);
  }
}

@media (max-width: 768px) {
  .hero-content .container {
    padding: 0 20px !important;
    width: 100% !important;
  }

  .hero-logo img {
    max-width: 80vw !important;
    height: auto !important;
    max-height: 200px !important;
  }

  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
    margin-bottom: 15px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
  }

  .hero-buttons .btn {
    width: 200px !important;
    padding: 15px 20px !important;
    font-size: 1.1rem !important;
  }
}

@media (max-width: 480px) {
  .hero-content .container {
    padding: 0 15px !important;
  }

  .hero-logo {
    margin-bottom: 20px !important;
  }

  .hero-logo img {
    max-width: 90vw !important;
    max-height: 150px !important;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
  }

  .hero-buttons .btn {
    width: 180px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem !important;
  }

  .hero-logo img {
    max-height: 120px !important;
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 60px;
  position: relative;
}

.clients .section-title {
  color: #ffffff;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #f43f43 0%, #d32f2f 100%);
  border-radius: 2px;
}

.features {
  padding: 60px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url('/assets/images/Industrial Image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.features .container {
  background: transparent !important;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px !important;
  margin-top: 40px;
  padding: 0 5% !important;
  min-width: 320px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch !important;
  justify-content: space-between !important;
}

.feature-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  aspect-ratio: 1.2 !important;
  min-height: 280px !important;
  max-height: 320px !important;
  width: 100% !important;
  max-width: none !important;
  padding: 25px 20px !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  border: 1px solid rgba(244, 67, 67, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.feature-card--why-choose {
  
  background: rgba(255, 255, 255, 0.96) !important;
}

.feature-card--why-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/Index Images/Indu.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
  z-index: 0;
}

.feature-card--why-choose::after {
  content: '?';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20rem;
  font-weight: 700;
  color: rgba(244, 67, 67, 0.35);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1;
  pointer-events: none;
}

.feature-card--why-choose h3,
.feature-card--why-choose p {
  position: relative;
  z-index: 1;
}

.feature-card--why-choose:hover::before,
.feature-card--why-choose:focus-visible::before {
  opacity: 0.9;
  filter: blur(3px);
  transform: scale(1.03);
}

.feature-card--why-choose:hover::after,
.feature-card--why-choose:focus-visible::after {
  opacity: 0.8;
  transform: scale(1.02);
}

.feature-card h3 {
  margin-bottom: 18px !important;
  margin-top: 0 !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #f43f43 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  position: relative !important;
  z-index: 2 !important;
  line-height: 1.2 !important;
}

.feature-card p {
  margin: 0 !important;
  line-height: 1.7 !important;
  font-size: 0.95rem !important;
  color: #000000 !important;
  font-weight: 400 !important;
  position: relative !important;
  z-index: 2 !important;
  max-width: 280px !important;
  overflow: hidden !important;
}

.feature-card:nth-child(1) {
  
  background: #ffffff !important;
}

.feature-card:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    url('/assets/images/equip/Equipment/10-01-08.jpg'),
    url('/assets/images/equip/Equipment/11-01-04.jpg'),
    url('/assets/images/equip/Equipment/11-08-04.jpg');
  background-size: 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%;
  background-position: 0%, 50%, 100%, 0%, 50%, 100%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: local, local, local, local, local, local;
  filter: blur(1.2px);
  transform: scale(1.02);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.feature-card:nth-child(1):hover::before,
.feature-card:nth-child(1):focus-visible::before {
  opacity: 0.9;
  filter: blur(3px);
  transform: scale(1.03);
}

.feature-card:nth-child(2) {
  
  background: #ffffff !important;
}

.feature-card:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    url('/assets/images/equip/Accessories/11-03-03-01.jpg'),
    url('/assets/images/equip/Accessories/13-011-01-01.jpg'),
    url('/assets/images/equip/Accessories/13-012.jpg');
  background-size: 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%;
  background-position: 0%, 50%, 100%, 0%, 50%, 100%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: local, local, local, local, local, local;
  filter: blur(1.2px);
  transform: scale(1.02);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.feature-card:nth-child(2):hover::before,
.feature-card:nth-child(2):focus-visible::before {
  opacity: 0.9;
  filter: blur(3px);
  transform: scale(1.03);
}

.feature-card:nth-child(3) {
  
  background: #ffffff !important;
}

.feature-card:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.6)),
    url('/assets/images/equip/Supplies/Sump_Screen.png'),
    url('/assets/images/equip/Supplies/5_gal_MT_oil.png'),
    url('/assets/images/equip/Supplies/Bath_Nozzles.png');
  background-size: 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%, 33.33% 100%;
  background-position: 0%, 50%, 100%, 0%, 50%, 100%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: local, local, local, local, local, local;
  filter: blur(1.2px);
  transform: scale(1.02);
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.feature-card:nth-child(3):hover::before,
.feature-card:nth-child(3):focus-visible::before {
  opacity: 0.9;
  filter: blur(3px);
  transform: scale(1.03);
}

.clickable-tile:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.4);
}

.clickable-tile:hover h3 {
  color: #000000 !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.feature-card-link,
.feature-card-link:visited {
  text-decoration: none;
  color: inherit;
}

.feature-card-link:focus-visible {
  outline: 3px solid rgba(244, 67, 67, 0.7);
  outline-offset: 3px;
}

.clients {
  padding: 100px 0;
  background: linear-gradient(
      rgba(26, 26, 46, 0.8),
      rgba(22, 33, 62, 0.8)
    ),
    url('/assets/images/Industrial Image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.clients .container {
  background: transparent !important;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 60px;
  align-items: stretch;
}

.client-badge {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 140px;
  min-height: 140px;
  max-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.client-badge img {
  max-width: 100%;
  max-height: 100px;
  height: auto;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.1);
  transition: all 0.3s ease;
  display: block;
}

.client-badge:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.certifications {
  padding: 100px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.8)
    ),
    url('/assets/images/Industrial Image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.certifications .container {
  width: 100%;
  margin: 0;
  padding: 0 20px;
  background: transparent !important;
  position: relative;
  z-index: 2;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 60px;
  align-items: stretch;
}

.cert-badge {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  width: 100%;
  height: 140px;
  min-height: 140px;
  max-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.cert-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-badge img {
  max-width: 100%;
  max-height: 100px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(
      rgba(26, 26, 46, 0.8),
      rgba(22, 33, 62, 0.8)
    ),
    url('/assets/images/Industrial Image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #ffffff;
  text-align: center;
  width: 100%;
}

.cta .container {
  background: transparent !important;
}

.cta-content p {
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.about-main {
  min-height: 100vh;
}

main.content.about-main {
  padding: 140px 0 120px 0 !important;
}

.info-card {
  background: transparent;
  backdrop-filter: blur(50px);
  border-radius: 14px;
  padding: 48px;
  width: 70vw;
  max-width: 70vw;
  margin: 90px auto 110px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.info-card strong {
  color: #ffffff;
}

.about-page-title {
  text-align: center;
  color: rgb(244, 67, 67);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-section {
  margin-bottom: 50px;
}

.about-section-heading {
  color: rgb(244, 67, 67);
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
}

.about-intro {
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.about-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

.about-intro p + p,
.about-text p + p {
  margin-top: 1rem;
}

.about-text-center {
  text-align: center;
}

.about-highlight {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-highlight p {
  margin: 0;
  font-style: italic;
  font-size: 1.1rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.about-value-card {
  display: flex;
    flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-value-card:focus-visible {
  outline: 2px solid rgba(244, 67, 67, 0.85);
  outline-offset: 2px;
}

.about-value-card:hover {
  background: rgba(180, 50, 50, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 50, 50, 0.3);
  border: 1px solid rgba(180, 50, 50, 0.6);
}

.about-value-card-icon {
  font-size: 2.5rem;
  color: rgb(244, 67, 67);
  margin-bottom: 15px;
}

.about-value-card-title {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.about-value-card-text {
  color: #ffffff;
  opacity: 0.8;
  font-size: 0.95rem;
  font-weight: normal;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.about-cta-buttons .btn-primary,
.about-cta-buttons .btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.65);
  cursor: pointer;
  text-align: center;
  margin: 10px;
}

.about-cta-buttons .btn-primary {
  background: rgba(244, 67, 67, 0.78);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(244, 67, 67, 0.45);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.about-cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .info-card {
    width: 95vw;
    max-width: 95vw;
    padding: 30px 20px;
    margin: 0 auto;
  }

  .about-main {
    padding: 100px 0 60px 0;
  }

  .about-section-heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-value-card {
    padding: 25px 15px;
  }

  .about-value-card-title {
    font-size: 1.2rem;
  }

  .about-value-card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .info-card {
    width: 98vw;
    max-width: 98vw;
    padding: 25px 15px;
  }

  .about-main {
    padding: 80px 0 40px 0;
  }

  .about-section-heading {
    font-size: 1.5rem;
  }

  .about-value-card {
    padding: 20px 12px;
  }

  .about-value-card-title {
    font-size: 1.1rem;
  }

  .about-value-card-text {
    font-size: 0.85rem;
  }
}

main.content.privacy-main {
  padding: 140px 0 120px 0 !important;
  min-height: 100vh;
}

main.content.info-main,
main.content.faq-main,
main.content.third-party-main {
  padding: 140px 0 120px 0 !important;
  min-height: 100vh;
}

.privacy-page-title {
  text-align: center;
  color: rgb(244, 67, 67);
  font-size: 24px;
  margin-bottom: 28px;
}

.privacy-policy-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
  text-align: left;
  line-height: 1.9;
  color: #ffffff;
  font-size: 16px;
}

.privacy-accent {
  color: rgb(244, 67, 67);
}

.privacy-policy-container .terms-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.privacy-policy-container p {
  margin: 0 0 0.75rem;
}

.privacy-policy-container h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: rgb(244, 67, 67);
}

.privacy-policy-container h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 0.35rem;
}

.privacy-policy-container ul {
  margin: 0 0 1rem 1.5rem;
  padding-left: 1.2rem;
  list-style: disc;
}

.privacy-policy-container li {
  margin: 0.2rem 0;
}

.faq-main {
  min-height: 100vh;
}

.faq-page-title {
  text-align: center;
  color: rgb(244, 67, 67);
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(244, 67, 67, 0.2);
}

.faq-intro {
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(18, 26, 48, 0.75);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.faq-item[open] {
  border-color: rgba(244, 67, 67, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(244, 67, 67, 0.12);
}

.faq-item .faq-answer {
  display: none;
}

.faq-item[open] .faq-answer {
  display: block;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 0.95rem 1.35rem;
  background: linear-gradient(
    105deg,
    rgba(244, 67, 67, 0.22),
    rgba(28, 40, 70, 0.9)
  );
  border: none;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: linear-gradient(
    105deg,
    rgba(244, 67, 67, 0.3),
    rgba(35, 50, 85, 0.95)
  );
}

.faq-question:focus-visible {
  outline: 2px solid rgba(244, 67, 67, 0.9);
  outline-offset: 2px;
}

.faq-item[open] .faq-question {
  background: linear-gradient(
    105deg,
    rgba(244, 67, 67, 0.35),
    rgba(40, 55, 95, 0.95)
  );
}

.faq-answer {
  padding: 1rem 1.35rem 1.25rem;
  border-top: 1px solid rgba(244, 67, 67, 0.25);
  background: linear-gradient(
    180deg,
    rgba(30, 42, 70, 0.95),
    rgba(22, 32, 58, 0.98)
  );
  border-left: 4px solid rgb(244, 67, 67);
}

.faq-answer p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.faq-explore {
  margin-top: 2.5rem;
}

.faq-explore-title {
  text-align: center;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.faq-category-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.faq-category-links a,
.faq-category-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  color: #ffffff !important;
  background: rgba(244, 67, 67, 0.2) !important;
  transition: background 0.2s ease;
}

.faq-category-links a:hover,
.faq-category-links a:focus-visible,
.faq-category-link:hover,
.faq-category-link:focus-visible {
  background: rgba(244, 67, 67, 0.35) !important;
}

@media (max-width: 768px) {
  .faq-page-card {
    padding-inline: 20px;
  }
}

@media (max-width: 992px) {
  .info-card {
    width: 95vw;
    max-width: 95vw;
    padding: 30px 20px;
  }

  main.content.privacy-main,
  main.content.info-main,
  main.content.faq-main,
  main.content.third-party-main {
    padding: 100px 0 60px 0 !important;
  }
}

@media (max-width: 576px) {
  .info-card {
    width: 98vw;
    max-width: 98vw;
    padding: 25px 15px;
  }

  main.content.privacy-main,
  main.content.info-main,
  main.content.faq-main,
  main.content.third-party-main {
    padding: 80px 0 40px 0 !important;
  }
}

main.content.faq-main .faq-explore .faq-category-links a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  color: #ffffff !important;
  background: rgba(244, 67, 67, 0.2) !important;
  transition: background 0.2s ease;
}

main.content.faq-main .faq-explore .faq-category-links a:hover,
main.content.faq-main .faq-explore .faq-category-links a:focus-visible {
  background: rgba(244, 67, 67, 0.35) !important;
}

main.content.third-party-main .faq-explore .faq-category-links a,
main.content.third-party-main .faq-explore .faq-category-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  color: #ffffff !important;
  background: rgba(244, 67, 67, 0.2) !important;
  transition: background 0.2s ease;
}
main.content.third-party-main .faq-explore .faq-category-links a:hover,
main.content.third-party-main .faq-explore .faq-category-links a:focus-visible {
  background: rgba(244, 67, 67, 0.35) !important;
}

.third-party-main .tpl-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.third-party-main .tpl-resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.third-party-main .tpl-resource-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.third-party-main .tpl-resource-card img {
  width: auto;
  max-width: 80px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.third-party-main .tpl-resource-card h3 {
  color: rgb(0, 0, 0);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.third-party-main .tpl-resource-card a {
  color: rgb(244, 67, 67);
  text-decoration: none;
  font-weight: 600;
}

.third-party-main .tpl-resource-card a:hover,
.third-party-main .tpl-resource-card a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .third-party-main .tpl-resources-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .third-party-main .tpl-resource-card {
    padding: 1rem;
  }
  .third-party-main .tpl-resource-card h3 {
    font-size: 0.95rem;
  }
  .third-party-main .tpl-resource-card img {
    max-width: 60px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .third-party-main .tpl-resource-card {
    padding: 0.9rem;
  }
  .third-party-main .tpl-resource-card h3 {
    font-size: 0.9rem;
  }
  .third-party-main .tpl-resource-card img {
    max-width: 50px;
    height: 56px;
  }
}

.why-toc {
  margin: 0 0 1.5rem;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  background: radial-gradient(circle at top left, rgba(244, 67, 67, 0.16), rgba(18, 26, 48, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  z-index: 5;
}

.why-toc-title {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgb(244, 67, 67);
}

.why-toc-intro {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.why-toc-list {
  max-width: 100%;
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.25rem 0.85rem;
}

.why-toc-list li {
  margin: 0;
}

.why-toc-list a {
  display: inline-block;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.why-toc-list a:hover,
.why-toc-list a:focus-visible {
  background: rgba(244, 67, 67, 0.22);
  color: #ffffff;
}

.why-toc-list a:focus-visible {
  outline: 2px solid rgba(244, 67, 67, 0.85);
  outline-offset: 2px;
}

.why-choose-with-toc {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 90px auto 110px;
}

.why-choose-with-toc .container.info-card {
  margin: 0;
  flex: 0 1 auto;
}

@media (min-width: 1024px) {
  .why-choose-with-toc {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    max-width: min(100%, calc(70vw + 260px + 1rem));
  }

  .why-choose-with-toc .why-toc-sidebar {
    position: sticky;
    top: 118px;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
    margin: 0;
    max-height: calc(100vh - 128px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    align-self: flex-start;
    z-index: 15;
  }

  .why-choose-with-toc .why-toc-sidebar .why-toc-list {
    grid-template-columns: 1fr;
  }

  .why-choose-with-toc .container.info-card {
    width: 70vw;
    max-width: 70vw;
  }
}

@media (max-width: 1023px) {
  .why-choose-with-toc .why-toc-sidebar {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1.25rem;
    max-height: none;
    overflow-y: visible;
  }
}

#why-choose-content .terms-section {
  scroll-margin-top: 5.5rem;
}

.why-image-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 1.25rem 0 0.25rem;
}

.why-image {
  display: block;
  margin-inline: auto;
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .why-image {
    max-width: 100%;
  }
}

.floating-pdf-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, #f43f43 0%, #d32f2f 100%);
  box-shadow: 0 4px 20px rgba(244, 63, 67, 0.4);
  color: #ffffff;
  font-size: 24px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-pdf-btn .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
    font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-pdf-btn:hover .tooltip,
.floating-pdf-btn:focus-visible .tooltip {
  opacity: 1;
}

.floating-pdf-btn:hover,
.floating-pdf-btn:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(244, 63, 67, 0.6);
}

body {
  height: auto !important;
  min-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  background: transparent !important;
  background-color: transparent !important;
  color: #fff;
  display: flex !important;
  flex-direction: column;
  
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
  overflow-y: auto !important;
}

main.content.parallax-bg {
  position: relative;
  
  overflow-x: hidden;
  overflow-y: visible;
}

main.content.info-main.parallax-bg {
  overflow-x: visible;
}

main.content.parallax-bg::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100%;
  background-image: linear-gradient(rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)),
    url('/assets/images/Industrial Image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  
  isolation: isolate;
}

main.content.parallax-bg > * {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 63, 67, 0.4);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1a1a2e;
  transform: translateY(-2px);
}

.btn-outline:hover {
  background: #f43f43;
  color: #ffffff;
}
