/*---------------------------------------------------------------
  Template Name: Cleanysphere | Professional Cleaning Services for Home & Office
  Description: Cleanysphere offers expert cleaning services for homes, offices, and commercial spaces. Enjoy spotless spaces with our eco-friendly, reliable, and affordable cleaning solutions.
  Author: Lucid ThemesLab
  Author URL: https://www.templatemonster.com/store/lucid_themeslab/
  Version: 1.0.0
----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');

/* ==================
   Basic Styles 
================== */
[data-cs-theme="cs_light"] {
  --body-color: #FFFFFF;
  --primary-color: #0ca1b0;
  --light-gradient: linear-gradient(180deg, #f5fdff 0%, #dfefff 100%);
  --secondary-color: #192050;
  --dark-rgb:  13, 51, 66;
  --secondary-overlay: 25, 32, 80;
  --alt-color: #ebfbff;
  --light-color:#f9fafb;
  --white-color: #ffffff;
  --form-color: #ffffff;
  --card-color: #ffffff;

  /* text-colors */
  --heading-text: #192050;
  --para-text: #6B6B6B;
  --white-text: #ffffff;
  --form-text: #6B6B6B;
  --danger-text: #fa5050;

  /* font family */
  --primaryfont: "Parkinsans", sans-serif;

  --primary-rgb: 12, 161, 176;
  --secondary-text: var(--para-text);
  --border-color: rgba(36, 51, 63, .14);
  --border-color-light: rgba(12, 161, 176, .22);
  --input-bg: var(--form-color);
  --input-text: var(--form-text);
  --muted: var(--para-text);
  --text: var(--heading-text);
  --primary: var(--primary-color);
}

[data-cs-theme="cs_dark"] {
  --body-color: #041527;
  --primary-color: #0ca1b0;
  --light-gradient:linear-gradient(180deg, #1f3348 0%, #334d69 100%);
  --secondary-color: #113050;
  --dark-rgb: 13, 51, 66;
  --secondary-overlay: 25, 32, 80;
  --alt-color: #1f3348;
  --light-color:#2f4155;
  --white-color: #ffffff;
  --form-color: #19334e;
  --card-color: #334d69;

  /* text-colors */
  --heading-text: #ffffff;
  --para-text: #E4E4E4;
  --white-text: #ffffff;
  --form-text: #C8C8C8;
  --danger-text: #fa5050;

  /* font family */
  --primaryfont: "Parkinsans", sans-serif;

  --primary-rgb: 12, 161, 176;
  --secondary-text: var(--para-text);
  --border-color: rgba(36, 51, 63, .14);
  --border-color-light: rgba(12, 161, 176, .22);
  --input-bg: var(--form-color);
  --input-text: var(--form-text);
  --muted: var(--para-text);
  --text: var(--heading-text);
  --primary: var(--primary-color);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
button,
input,
select,
textarea {
  font-family: var(--primaryfont);
}

a {
  color: inherit;
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

/* Background-Color*/
.body-color {
  background-color: var(--body-color) !important;
}

.primary-color {
  background-color: var(--primary-color) !important;
}

.secondary-color {
  background-color: var(--secondary-color) !important;
}

.alt-color {
  background-color: var(--alt-color) !important;
}

.light-color {
  background-color: var(--light-color) !important;
}

.form-color {
  background-color: var(--form-color) !important;
}

.card-color {
  background-color: var(--card-color) !important;
}

.primary-text {
  color: var(--primary-color);
}

.heading-text {
  color: var(--heading-text);
}

.para-text {
  color: var(--para-text);
}

.white-text {
  color: var(--white-text);
}

.form-text {
  color: var(--form-text);
}

.secondary-text {
  color: var(--secondary-text);
}

/* ==================
  Preloader Style
================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--light-gradient);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

/* Logo Section */
.brand-text {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 2px 8px rgba(13, 110, 253, 0.25);
  letter-spacing: 2px;
  position: relative;
}
.brand-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: bubblePop 0.6s forwards ease-out;
}
.brand-text span:nth-child(1) { animation-delay: 0.1s; }
.brand-text span:nth-child(2) { animation-delay: 0.2s; }
.brand-text span:nth-child(3) { animation-delay: 0.3s; }
.brand-text span:nth-child(4) { animation-delay: 0.4s; }
.brand-text span:nth-child(5) { animation-delay: 0.5s; }
.brand-text span:nth-child(6) { animation-delay: 0.6s; }
.brand-text span:nth-child(7) { animation-delay: 0.7s; }
.brand-text span:nth-child(8) { animation-delay: 0.8s; }
.brand-text span:nth-child(9) { animation-delay: 0.9s; }

@keyframes bubblePop {
  0% { transform: translateY(30px) scale(0.8); opacity: 0; }
  60% { transform: translateY(-10px) scale(1.2); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Global Floating Bubbles */
.floating-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.bubble {
  position: absolute;
  bottom: -10%;
  background: rgba(173, 216, 230, 0.6);
  border-radius: 50%;
  animation: bubbleRise 8s linear infinite;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  25% { opacity: 1; }
  100% {
    transform: translateY(-110vh) scale(1.2);
    opacity: 0;
  }
}

/* Random bubble sizes and delays */
.bubble:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-delay: 0s; }
.bubble:nth-child(2) { width: 35px; height: 35px; left: 25%; animation-delay: 2s; }
.bubble:nth-child(3) { width: 15px; height: 15px; left: 40%; animation-delay: 4s; }
.bubble:nth-child(4) { width: 40px; height: 40px; left: 55%; animation-delay: 1s; }
.bubble:nth-child(5) { width: 25px; height: 25px; left: 70%; animation-delay: 3s; }
.bubble:nth-child(6) { width: 18px; height: 18px; left: 80%; animation-delay: 1.5s; }
.bubble:nth-child(7) { width: 50px; height: 50px; left: 90%; animation-delay: 0.8s; }
.bubble:nth-child(8) { width: 30px; height: 30px; left: 15%; animation-delay: 2.5s; }
.bubble:nth-child(9) { width: 40px; height: 40px; left: 65%; animation-delay: 4.5s; }
.bubble:nth-child(10) { width: 22px; height: 22px; left: 45%; animation-delay: 5s; }

.fade-out {
  animation: fadeOut 1s ease forwards;
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}
/* ==================
  Theme Switcher
================== */
.switchbtn {
  position: fixed;
  top: 150px;
  right: 0;
  z-index: 99;
  padding: 0;
  border: none;
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  color: var(--white-color);
}

@media (max-width: 576px) {
  .switchbtn {
      top: 120px;
  }
}
@media (max-width: 450px) {
.brand-text {
  font-size: 24px;
}
}
.mode-icon-bg {
  font-size: 22px;
}

[data-cs-theme="cs_light"] .mode-icon-bg i {
  color: var(--white-color);
}

[data-cs-theme="cs_dark"] .mode-icon-bg {
   color: var(--white-color);
}

.logo {
  display: none;
 }

  [data-cs-theme="cs_light"] .logo-light {
      display: inline-block;
  }

    [data-cs-theme="cs_dark"] .logo-dark {
      display: inline-block;
  }

  .topbar{
  font-size: 14px;
}

/* ===============================
   NAVBAR LINKS
================================ */
.navbar .nav-link {
  color: var(--heading-text)!important;
  font-weight: 500;
  padding: 10px 14px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--primary-color)!important;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item:focus,
.custom-dropdown .dropdown-item.active,
.mega-menu .mega-link:hover,
.mega-menu .mega-link:focus,
.mega-menu .mega-link.active {
  background: transparent!important;
  color: var(--primary-color)!important;
  transform: translateX(6px);
}
/* ===============================
   MEGA MENU – DESKTOP ONLY
================================ */
@media (min-width: 992px) {
  .mega-menu {
    width: 800px;
    left: unset !important;
    right: -153px !important;
    top: 100% !important;
    border: 1px solid var(--primary-color);
    border-radius: 14px;
    background-color: var(--light-color);
  }
}
@media (max-width: 991px) {
  .mega-menu {
    width: 100% !important;
    right: 0 !important;
    left: 0 !important;
    position: static;
       background-color: var(--light-color);
  }
}

/* ===============================
   SIMPLE DROPDOWN
================================ */
.custom-dropdown {
  background: var(--light-color);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px;
  min-width: 260px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.custom-dropdown .dropdown-item {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 15px;
  color: var(--heading-text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-color);
  transform: translateX(4px);
}

.navbar .dropdown-toggle::after {
  display: none;
}

.mega-title {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--heading-text);
}

/* Mega Links */
.mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  border-radius: 12px;
  font-size: 15px;
  color: var(--heading-text);
  transition: 0.3s ease;
}

.mega-link:hover {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-color);
  transform: translateX(4px);
}

/* ===============================
   MOBILE / OFFCANVAS
================================ */
@media (max-width: 991px) {
  .mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;              
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .mega-menu .row {
    max-height: 45vh;
    overflow-y: auto;
    margin: 0;              
  }

  .mega-menu .row::-webkit-scrollbar {
    width: 4px;
  }

  .mega-menu .row::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
  }
}

/* ===============================
   MEGA MENU BANNER
================================ */
.mega-banner {
  position: relative;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.mega-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.mega-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.65)
  );
}

.mega-banner-content {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  color: #fff;
  z-index: 2;
}

.dropdown-divider{
  border-color: var(--primary-color)!important;
}

/*================================================
 Home Banner Styles
=================================================*/
.banner-main .splide__slide {
  background-size: cover;
  background-position: center;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-main .slide-1 {
  background: linear-gradient(0deg, rgba(var(--dark-rgb), 0.7), rgba(var(--dark-rgb), 0.7)),
    url("../../assets/banner_img/bg-1.webp");
  background-size: cover;
  background-position: center;
}

.banner-main .slide-2 {
  background: linear-gradient(0deg, rgba(var(--dark-rgb), 0.7), rgba(var(--dark-rgb), 0.7)),
    url("../../assets/banner_img/bg-2.webp");
  background-size: cover;
  background-position: center;
}

.banner-main .slide-3 {
  background: linear-gradient(0deg, rgba(var(--dark-rgb), 0.7), rgba(var(--dark-rgb), 0.7)),
    url("../../assets/banner_img/bg-3.webp");
  background-size: cover;
  background-position: center;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px){
.banner-text {width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
}

@media (max-width: 991px) {
  .banner-main .splide__slide {
    min-height: 400px;
  }

  .banner-text.display-1 {
    font-size: 2rem;
  }

  .banner-text.fs-1 {
    font-size: 1rem;
  }
}

.splide__arrow{
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  opacity: 1;
}

@media (max-width: 576px) {
  .banner-main .splide__arrow {
    top: 82%;
  }
}

.splide__arrow:hover{
  background-color: var(--secondary-color);
}

@media (max-width: 991.98px) {
  .offcanvas-header {
    background-color: var(--card-color);
    color: var(--white-color);
  }

  .offcanvas-body {
    background-color: var(--alt-color);
  }

  .offcanvas-header .btn-close {
    width: 45px!important;
    height: 45px!important;
    display: flex!important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white-color);
    opacity: 1!important;
    position: relative;
    font-size: 18px;
    transition: .3s ease;
  }


  .offcanvas-header .btn-close:hover {
    background-color: #ffffff33;
    opacity: 1!important;
    transform: scale(1.05);
  }

  #offcanvasbutton {
     all: unset;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    color: var(--white-color);
    font-size: 18px!important;
  }
}

#offcanvasbutton:hover {
  background-color: #ffffff33;
}

/* =============================
  About Section  Styles
============================== */
.about .about-feature {
  background: var(--alt-color);
  border-left: 4px solid transparent;
  border-radius: 1rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 1rem;
  width: 100%;
  height: 100%; 
}

.about .about-feature {
  max-width: 500px;
  margin: 0 auto;
}

@media(max-width:576px) {
  .about .about-feature {
      max-width: 300px!important; 
  }
}

.about .about-feature:hover {
  transition: 0.3s ease;
  transform: translateY(-4px);
  border-left: 4px solid var(--primary-color);
  background: var(--secondary-color);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.1);
  color: var(--white-color)!important;
}

.about .about-feature:hover h6,
.about .about-feature:hover p {
  color: var(--white-color)!important;
}

.about .icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--card-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:  0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  margin-right: 1rem;
}

.about-feature:hover .icon-box {
  background: var(--primary-color);
  color:var(--white-color);
  transform: rotate(10deg);
}

.about .about-feature h3,
.about .about-feature p {
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.about .about-feature:hover h3,
.about .about-feature:hover p {
  color: #fff;
}

.about .about-image {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about .about-image:hover {
  transform: scale(1.03);
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .about .about-feature {
    min-height: auto;
    padding: 1rem 0.75rem;
    flex-direction: row;
    align-items: flex-start;
  }
  .about .icon-box {
    width: 45px;
    height: 45px;
    margin-right: 0.75rem;
  }
}

/* =========================
   Contact Section Styles
=========================== */
.contact-iconbg {
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  outline: 2px dashed var(--secondary-color);
  color: var(--white-color)!important;
  outline-offset: 6px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 5px rgba(var(--primary-rgb), .22);
  color: var(--form-text);
}

.form-select{
  color: var(--form-text)!important;
}

.form-control::placeholder {
  color: var(--form-text);
}

.form-control::placeholder {
  color: var(--form-text);
}

.form-select option:disabled {
  color: var(--form-text);
}

div.error {
  color: var(--danger-text) !important;
  padding: 8px;
  font-family: var(--primaryfont) !important;
}

/* ==================
  Back to top Styles
================== */
#backtotop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border-radius: 50%;
  border: 2px dotted var(--white-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backtotop .fa-angle-up {
  font-size: 30px;
  color: var(--white-color);
}

#backtotop:hover {
  cursor: pointer;
}

#backtotop.show {
  opacity: 1;
  visibility: visible;
}

/* =========================
   WHY CHOOSE US SECTION
========================= */
.why-choose-us {
  background: var(--alt-color)
}

.why-choose-us .sub-title {
  letter-spacing: 1px;
  color: var(--primary-color);
}

.why-choose-us .heading-text span {
  position: relative;
  display: inline-block;
}

.why-choose-us .heading-text span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 6px;
  background: rgba(13, 110, 253, 0.2);
  border-radius: 3px;
  animation: highlight 2s ease-in-out infinite alternate;
}

@keyframes highlight {
  0% { transform: scaleX(1); opacity: 0.7; }
  100% { transform: scaleX(1.05); opacity: 1; }
}

.cleaning-icon {
  display: inline-block;
  animation: clean-swipe 2s ease-in-out infinite;
}

@keyframes clean-swipe {
  0%, 100% { transform: rotate(0deg) translateX(0); }
  50% { transform: rotate(-15deg) translateX(-5px); }
}

/* Feature Card */
.feature-card {
  padding: 35px 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-card .feature-icon {
  position: relative;
  transition: 0.3s;
}

.feature-card:hover .feature-icon {
  color: var(--primary-color);
  transform: scale(1.15) rotate(5deg);
}

.bubbles {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: 1;
}

.bubbles span {
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(13, 110, 253, 0.15);
  border-radius: 50%;
  animation: bubble 10s linear infinite;
  animation-duration: calc(120s / var(--i));
}

@keyframes bubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .feature-card {
    padding: 30px 20px;
  }

  .feature-card .feature-icon {
    font-size: 32px;
  }
}
/* =========================
   OUR SERVICES - UNIQUE STYLE
========================= */
.service-glass-card {
  padding: 50px 25px 40px;
  transition: 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
}

/* Floating Icon Circle */
.icon-floating {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.service-glass-card:hover .icon-floating {
  transform: rotate(8deg) scale(1.05);
  background: var(--secondary-color);
  box-shadow: 0 0 25px rgba(13, 110, 253, 0.4);
}

/* Animated Background Glow */
.service-glass-card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(13, 110, 253, 0.1), transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: -1;
}

.service-glass-card:hover::before {
  transform: scale(1);
}

@media (max-width: 992px) {
  .service-glass-card {
    padding: 40px 20px;
  }
  .icon-floating {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .service-glass-card {
    padding: 30px 15px;
  }
  .service-glass-card h5 {
    font-size: 1.05rem;
  }
}

/* =======================================
   HOW IT WORKS MODERN STYLE
======================================= */
.process-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  z-index: 1;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,180,255,0.1), transparent 70%);
  z-index: 0;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 180, 255, 0.2);
}

.circle-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background:  var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  box-shadow: 0 5px 20px rgba(0, 180, 255, 0.3);
  transition: 0.4s ease;
}

.circle-icon .step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--card-color);
  color: var(--primary-color);
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,180,255,0.2);
  font-size: 0.9rem;
}

.process-card:hover .circle-icon {
  background:  var(--primary-color);
  transform: scale(1.1) rotate(5deg);
}

@keyframes bubbleGlow {
  0% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  100% { transform: translateX(-50%) translateY(30px); opacity: 1; }
}

@media (max-width: 991px) {
  .process-card {
    margin-bottom: 1.5rem;
  }
}

/* =======================================
  PROJECT SECTION STYLE
======================================= */
.project-card {
  transition: 0.4s ease;
  cursor: pointer;
  border-radius: 20px;
}

.project-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover::before {
  opacity: 1;
  animation: shineMove 2s linear infinite;
}

@keyframes shineMove {
  0% { transform: translate(-100%, -100%); }
  100% { transform: translate(100%, 100%); }
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.4s ease;
  border-radius: 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay svg {
  color: #ffffff;
  background: var(--primary-color);
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.project-card:hover .project-overlay i {
  transform: rotate(15deg) scale(1.1);
  background: var(--bs-dark);
}

.project-overlay h5 {
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.project-overlay p {
  font-size: 0.9rem;
  max-width: 230px;
}

@media (max-width: 768px) {
  .project-overlay h5 { font-size: 1rem; }
  .project-overlay p { font-size: 0.85rem; }
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 38, 61, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
  z-index: 2;
}

.project-overlay p {
  color: #ddd;
  font-size: 0.85rem;
  margin-bottom: 10px;
  z-index: 2;
}

.view-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: 0.3s ease;
  z-index: 10;
}

.project-card:hover .view-btn {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
  .project-overlay {
    justify-content: flex-end;
    padding: 15px;
  }
  .view-btn {
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {
  .project-overlay h5 {
    font-size: 1rem;
  }
  .project-overlay p {
    font-size: 0.75rem;
  }
}

/* ================= Portfolio Section ================= */
  .portfolio-section {
    background-color: #0b233f;
  }

    .portfolio-section .splide__slide .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
  }

    .portfolio-section .splide__slide .card:hover {
    transform: translateY(-5px);
  }

  .portfolio-section .splide__slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .portfolio-section .splide__arrow {
    background: var(--card-color);
    color: var(--heading-text);
    border-radius: 50%;
  }

  .portfolio-section .splide__arrow:hover {
    background: var(--primary-color);
    color: #fff!important;
  }

  .portfolio-section .splide__arrow svg {
  fill: var(--heading-text);
}

/* ===== Team Section ===== */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
}
.team-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 20, 39, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: bottom 0.4s ease-in-out;
  padding: 20px;
  text-align: center;
}
.team-card:hover .team-overlay {
  bottom: 0;
}

.team-socials .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  transition: 0.3s ease;
}

.team-socials .social-icon:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .team-overlay {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .team-overlay h5 {
    font-size: 1rem;
  }
  .team-overlay p {
    font-size: 0.75rem;
  }
  .team-socials .social-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* ===== Testimonial Section ===== */
.testimonial-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.text-warning svg {
  margin: 0 2px;
}

@media (max-width: 992px) {
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 15px;
  }
  .testimonial-img {
    width: 60px;
    height: 60px;
  }
}

.testimonial-section .splide__slide {
  display: flex;
  align-items: stretch; 
}

.testimonial-card {
  flex-direction: column;
  justify-content: space-between; 
  height: 100%; 
}

  /* ================= Blog Section ================= */
  .blog-card {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    transition: 0.3s ease;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .blog-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
  }

  .blog-meta {
    font-size: 14px;
    color: var(--para-text)
  }

  .read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
  }

   /* ===== Pricing Section ===== */
.pricing-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.pricing-header {
  background:  var(--primary-color);
}

.featured-plan {
  transform: scale(1.05);
  z-index: 1;
}

.featured-plan .pricing-header {
  background: var(--secondary-color);
}

.pricing-body ul li {
  margin-bottom: 10px;
}

.pricing-body ul li svg {
  font-size: 0.9rem;
}

@media(max-width: 992px){
  .featured-plan {
    transform: scale(1);
  }
  .price-text {
    font-size: 2rem;
  }
}

@media(max-width: 576px){
  .pricing-card {
    margin-bottom: 20px;
  }
  .price-text {
    font-size: 1.7rem;
  }
}

.booking-info {
  position: relative;
}

.features-floating {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 991px){
  .features-floating {
    position: static;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
  }
}
    /* Appointment Section */
    .appointment-form {
        background: var(--card-color);
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .appointment-form .position-relative {
        position: relative;
    }

    .appointment-form .form-icon {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 1rem;
    }

    .appointment-form .form-control,
    .appointment-form .form-select,
    .appointment-form textarea {
        border-radius: 10px;
        border: 1px solid #ced4da;
        height: 45px;
        font-size: 0.95rem;
        transition: 0.3s ease-in;
        background-color: var(--form-color);
        color: var(--form-text);
    }

    .appointment-form textarea {
        min-height: 100px;
        padding-top: 0.8rem;
    }

    .appointment-form .form-control:focus,
    .appointment-form .form-select:focus,
    .appointment-form textarea:focus {
        border-color: var(--primary-color);
        box-shadow: none;
        outline: none;
        background-color: var(--form-color);
        color: var(--form-text);
    }

    .appointment-form select.form-select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding-right: 2.5rem;
    }

    .select-arrow {
        position: absolute;
        right: 15px;
        top: 25px;
        transform: translateY(-50%);
        pointer-events: none;
        color: var(--form-text);
    }

    /* Placeholders */
    .appointment-form ::placeholder {
        color: var(--form-text);
        opacity: 1;
    }

    .primary-btn {
        border-radius: 50px;
        padding: 12px 26px;
        font-weight: 600;
        background: var(--secondary-color);
        border: none;
        color: #fff!important;
        font-size: 15px;
    } 

    .primary-btn:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        background: var(--primary-color);
    }

    @media(max-width: 768px) {
        .appointment-form {
            padding: 1.5rem;
        }
    }

    .form-select {
        background-image: unset;
    }

    .appointment-form .form-icon {
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translateY(-50%);
        color: var(--form-text);
        font-size: 1rem;
    }

    .select-arrow {
        position: absolute;
        right: 15px;
        top: 25px;
        transform: translateY(-50%);
        pointer-events: none;
        color: var(--form-text);
    }

    .opening-hours {
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .opening-hours h5 {
        font-size: 1.2rem;
    }

    .opening-hours ul li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .opening-hours ul li:last-child {
        border-bottom: none;
    }

    @media(max-width: 992px) {
        .opening-hours {
            margin-top: 20px;
        }
    }

    /* =================================================
       COMMON CARD / IMAGE UTILS
    ================================================= */
    .card-soft {
        background: var(--card-color);
        border-radius: 10px;
        padding: 18px;
        box-shadow: 0 12px 32px rgba(9, 30, 66, 0.08);
        border: none;
    }

    img.responsive {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .rounded-shadow {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(9, 30, 66, 0.08);
    }

    /* =========================
    TESTIMONIALS (SWIPER)
    ========================= */
    .testimonials {
        padding: 56px 0;
    }

    .testimonials .swiper {
        padding-bottom: 14px;
    }

    .testimonial-card {
        background: var(--card-color);
        border-radius: 14px;
        padding: 18px;
        transition: transform .35s cubic-bezier(.22, .9, .36, 1), box-shadow .35s;
        height: 100%;
    }

    .testimonial-card .avatar {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        overflow: hidden;
        flex: 0 0 68px;
        border: 3px solid rgba(0, 179, 255, 0.12);
    }

    .testimonial-card .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .testimonial-name {
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .testimonial-role {
        color: var(--para-text);
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .testimonial-quote {
        font-size: 0.96rem;
        color: var(--heading-text);
        opacity: 0.95;
    }

    #testimonials.swiper .swiper-slide-active .testimonial-card {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 22px 46px rgba(3, 37, 76, 0.14);
    }

    .stars {
        color: #f5b301;
        margin-bottom: 6px;
    }
    @media (max-width: 992px) {
        .testimonial-card {
            padding: 16px;
            gap: 12px;
        }

        .testimonial-name {
            font-size: 0.98rem;
        }
    }

    @media (max-width:576px) {
        .testimonial-card {
            flex-direction: row;
            gap: 12px;
            align-items: center;
        }

        .testimonial-quote {
            display: block;
            font-size: 0.95rem;
        }
    }

    /* =========================
    FACILITIES GALLERY (responsive masonry)
    ========================= */
.facilities {
    padding: 56px 0;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 22px; 
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform .4s ease-in;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease-in;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.45) 100%);
    color: #fff;
    font-weight: 600;
    opacity: 0;
    transition: opacity .35s ease-in;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-icon {
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease-in;
    font-size: 20px;
}

.gallery-item:hover .view-icon {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}
    /* =========================
    FAQ ACCORDION
    ========================= */

  .faq-accordion .accordion-item {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 12px 32px rgba(9, 30, 66, 0.08);
    transition:  0.3s ease-in;
  }

  .faq-accordion .accordion-button {
    font-weight: 700;
    background: var(--card-color);
    color: var(--heading-text);
    padding: 18px 20px;
    transition: 0.35s ease-in;
    box-shadow: none;
  }

  .faq-accordion .accordion-button:focus {
    box-shadow: none;
  }

  .faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
    box-shadow: none;
  }

  .faq-accordion .accordion-button::after {
    transition: transform 0.35s ease-in;
  }
  .faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
  }

  .faq-accordion .accordion-body {
    background: var(--card-color);
    color: var(--heading-text);
    padding: 18px 22px;
    line-height: 1.6;
  }

  .faq-accordion .accordion-button:hover {
    background: var(--primary-color);
    color: var(--white-text);
  }
  .faq-accordion .accordion-button:not(.collapsed):hover {
    background: var(--primary-color);
    color: #fff;
  }

  .faq-accordion .accordion-button::after {
      display: none !important;
  }
  .faq-icon {
      margin-left: auto;
      font-size: 18px;
      transition: transform 0.3s ease-in;
  }

  .accordion-button:not(.collapsed) .faq-icon {
      transform: rotate(180deg); 
  }

  @media (max-width:576px) {
      .section-title h2 {
          font-size: 1.4rem;
      }

      .section-sub {
          font-size: 0.95rem;
      }

      .testimonial-quote {
          font-size: 0.95rem;
      }
  }

/*================================================
   Theme Switch Button Styles
=================================================*/
@media (max-width: 576px) {
  #btnSwitch {
    top: 122px;
    right: -4px;
  }
}

.backto-btn{
  background: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  border: none;
}

.backto-btn:hover {
 background: var(--secondary-color);
  color: #fff;
}

.alertmsg {
  z-index: 9999;
}

.glightbox-clean .gdesc-inner{
  background-color: var(--body-color);
}

.glightbox-clean .gslide-title{
  color: var(--secondary-color);
  font-size: 28px;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  /* Offcanvas Header */
  .offcanvas-header {
    background-color: var(--card-color) !important; 
  }

  /* Offcanvas Body */
  .offcanvas-body {
    background-color: var(--alt-color)!important; 
  }
}

/* Icon inside input fields */
.input-icon {
    position: absolute;
    right: 16px;
    top: 25px;
    transform: translateY(-50%);
    font-size: 15px;
    pointer-events: none;
    color: var(--heading-text); 
    opacity: 0.7;
}

.date-input,
.time-input {
    background: var(--card-color);
    color: var(--heading-text);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
}

.date-input:focus,
.time-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

.date-input::placeholder,
.time-input::placeholder {
    color: var(--para-text);
    opacity: 0.7;
}
.flatpickr-calendar {
    background: var(--card-color) !important;
    color: var(--heading-text) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    border-radius: 10px;
}

.flatpickr-months .flatpickr-month {
    background: var(--card-color) !important;
    color: var(--heading-text) !important;
}

.flatpickr-weekdays span {
    color: var(--para-text) !important;
}

.flatpickr-day {
    color: var(--heading-text) !important;
    border-radius: 6px !important;
}

.flatpickr-day:hover {
    background: rgba(var(--primary-rgb), 0.15) !important;
}

/* Selected date */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.flatpickr-time input {
    background: var(--card-color) !important;
    color: var(--heading-text) !important;
    border: 1px solid var(--primary-color) !important;
}

.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--primary-color);
}

.flatpickr-months .flatpickr-next-month {
    fill: var(--heading-text)
}

.flatpickr-months .flatpickr-prev-month {
    fill: var(--heading-text)
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: var(--heading-text) !important;
    opacity: 0.75;
    transition: 0.3s;
}
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

.flatpickr-time .flatpickr-am-pm:focus {
    background:var(--primary-color) !important;
     color: var(--white-text) !important;
}

.flatpickr-time .flatpickr-am-pm {
    color: var(--heading-text);
}

.flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
      background:var(--primary-color) !important;
     color: var(--white-text) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--card-color) !important;
  color: var(--heading-text) !important;
  border: 1px solid var(--primary-color) !important;
}

.logo-box {
  height: 90px; 
  width: 200px;
  position: relative;
}

.logo-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}

#testimonial .splide__arrow svg,
.blog-section .splide__arrow svg,
.banner-main .splide__arrow svg {
    fill: var(--white-color);
}

@media (max-width: 576px) {
   .blog-section  .splide__arrow {
        top: 50%;
    }
}

@media (max-width: 767.98px) {
  #home .splide__arrow {
    display: none !important;
  }
}

/* Button active/focus state (global) */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--white-text);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Page Banner */
.page-banner {
  padding-top: 70px;
   padding-bottom: 70px;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

/* Breadcrumb Glass Card */
.banner-breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 8px 20px;
  display: inline-flex;
}

.banner-breadcrumb .breadcrumb-item,
.banner-breadcrumb a {
  color: #ffffff;
}

.banner-breadcrumb .breadcrumb-item.active {
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .page-banner {
     padding-top: 40px;
   padding-bottom: 40px;;
  }
}

/* Image Floating Card */
.image-floating-card {
  box-shadow: 0 30px 60px rgba(13, 110, 253, 0.15), 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-20px);
  transition: 0.4s ease;
}

/* Hover Effect */
.image-floating-card:hover {
  transform: translateY(-30px);
}

@media (max-width: 991px) {
  .company-intro-modern {
    text-align: center;
  }

  .intro-text {
    margin-left: auto;
    margin-right: auto;
  }

  .accent-line {
    margin-left: auto;
    margin-right: auto;
  }

  .image-floating-card {
    transform: none;
  }
}

.philosophy-flow {
  position: relative;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Vertical Accent Line */
.philosophy-flow::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    transparent
  );
}

/* Flow Item */
.flow-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

/* Step Badge */
.flow-badge {
  min-width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(13,110,253,0.35);
  z-index: 1;
}

/* Card Content */
.flow-content {
  background: var(--card-color);
  padding: 24px 26px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.flow-item:hover .flow-content {
  transform: translateX(8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

/* Highlight Box */
.highlight-box {
  display: inline-block;
  background: linear-gradient(90deg, #0d6efd, #20c997);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

  .philo-card .step {
    right: 50%;
    transform: translateX(50%);
  }
}

.mv-card {
  background: var(--card-color);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 45px 35px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease;
}

.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0d6efd, #20c997);
  -webkit-mask:  linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #20c997);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.35);
}

@media (max-width: 767px) {
  .mv-card {
    padding: 35px 25px;
  }
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* ===============================
   View All Services Button
================================ */
.btn-view-services {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 34px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  transition: 0.35s ease;
}

.btn-view-services svg {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-view-services:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.btn-view-services:hover svg {
  transform: translateX(6px);
}

/* ===============================
   Modern Pagination Design
================================ */
.pagination-wrapper .pagination {
  gap: 10px;
}

.pagination-wrapper .page-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--card-bg, rgba(255, 255, 255, 0.08));
  color: var(--heading-text);
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.pagination-wrapper .page-item.active .page-link {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pagination-wrapper .page-item:not(.active):not(.disabled) .page-link:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.pagination-wrapper .page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
}

/* Mobile Friendly */
@media (max-width: 576px) {
  .pagination-wrapper .page-link {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* =========================
   SERVICE DETAILS
========================= */
.service-details {
  padding: 70px 0;
}

/* Slider */
#serviceSlider {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

#serviceSlider img {
  height: 420px;
  object-fit: cover;
}

/* Feature Boxes */
.feature-box {
  transition: .35s ease;
}

.feature-box-icon {
  width: 44px;
  height: 44px;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* Bullet List */
.service-list-check {
  margin-top: 20px;
}

.service-list-check li {
  position: relative;
}

.service-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* =========================
   SIDEBAR
========================= */
.sidebar-box {
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
}

@media (min-width: 992px) {
  .sidebar-box {
    position: sticky;
    top: 90px;
  }
}

.sidebar-services li {
  cursor: pointer;
  transition: .3s;
}

.sidebar-services li:hover,
.sidebar-services li.active {
  background: var(--primary-color)!important;
  color: #ffffff!important;
}

.contact-item-icon{
  width: 44px;
  height: 44px;
  transition: 0.35s ease;
}

.contact-item-icon:hover{
  background-color: var(--secondary-color)!important;
  color: #ffffff!important;
}

/* =========================
   PROCESS SECTION (FIXED)
========================= */
.process-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(  rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.85)), url('../../assets/banner_img/bg-1.webp') center/cover no-repeat;
  color: #ffffff;
}

/* Section Title */
.process-section .section-title h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-section .section-title p {
  color: #c7d2fe;
  font-size: 15.5px;
}

.process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.process-wrapper::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,.25);
}

.process-item {
  width: 30%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 84px;
  height: 84px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.step-number {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #22c55e;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-item p {
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .process-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .process-wrapper::before {
    display: none;
  }

  .process-item {
    width: 100%;
  }
}

/* =========================
   CTA SECTION (FIXED)
========================= */
.cta-cleaning {
  padding: 90px 0;
  background: var(--secondary-color)
}

/* CTA Card */
.cta-box {
  background: var(--primary-color);
  border-radius: 26px;
  padding: 60px 60px;
  color: #ffffff;
  box-shadow: 0 40px 80px rgba(0,0,0,.25);
  overflow: hidden;
  position: relative;
}

.cta-box::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}

.cta-cleaning p {
  max-width: 90%;
}

.cta-image {
  position: relative;
  text-align: right;
}

.cta-image img {
  max-width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  transform: translateY(-10px);
}

@media (max-width: 991px) {
  .cta-box {
    padding: 40px 30px;
    text-align: center;
  }

  .cta-image {
    text-align: center;
  }

  .cta-cleaning p {
    max-width: 100%;
  }
}

/* =========================
   SERVICE INCLUDED SECTION
========================= */
.included-card {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
}

.included-card-icon {
  width: 34px;
  height: 34px;
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.15);
}

/* =========================
   PROJECT INFO CARD
========================= */
.project-info-card {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.info-item {
  height: 100%;
}

.info-item span {
  font-size: 14px;
  display: block;
}

/* =========================
   PROJECT GALLERY
========================= */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.5s ease;
}

/* Hover Effect */
.gallery-item::after {
  content: "\f065";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 575px) {
  .gallery-item img {
    height: 200px;
  }
}

.blog-category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--heading-text);
  text-decoration: none;
}

.blog-category-list a:hover {
  color: var(--primary-color);
}

.tag-item {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--alt-color);
  font-size: 14px;
  color: var(--heading-text);
  text-decoration: none;
}

.tag-item:hover {
  background: var(--primary-color);
  color: #fff;
}

.policy-box ul li {
  margin-bottom: 8px;
}

.job-card ul li {
  margin-bottom: 6px;
}

.feature-box svg {
  display: inline-block;
}

    /* =========================
   404 ERROR PAGE
========================= */
.error-404 {
  min-height: 100vh;
  background: var(--alt-color)
}

.error-code {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: var(--secondary-color)
}

.error-text {
  max-width: 520px;
  margin: 0 auto;
}

.error-actions .btn {
  border-radius: 12px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .error-code {
    font-size: 90px;
  }

  .error-title {
    font-size: 26px;
  }
}

.error-code {
  animation: float404 4s ease-in-out infinite;
}

@keyframes float404 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Icon animation */
.error-icon svg {
  animation: pulseRotate 3s infinite;
}

@keyframes pulseRotate {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.15) rotate(8deg);
    opacity: 0.85;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Card */
.testimonial-card {
  transition: 0.4s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.rating svg {
  color: #fbbf24;
  margin-right: 2px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

/* =========================
   BOOKING PAGE
========================= */
.booking-form textarea.form-control {
  height: auto;
}

.booking-process-card {
  background: var(--card-color);
  border-radius: 18px;
  padding: 30px 20px;
  border: 1px solid #e5e7eb;
  transition: 0.4s ease;
}

.booking-process-card svg {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.booking-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.support-item {
  padding: 14px;
  border-radius: 14px;
  background: var(--card-color);
  border: 1px solid #e5e7eb;
}

.support-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ===============================
   Footer Base
================================ */
.footer-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  position: relative;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--primary-color);
  display: block;
  margin-top: 6px;
}

.footer-about,
.footer-subtext {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #dcdcdc;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dcdcdc;
  font-size: 0.95rem;
  transition: 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "›";
  margin-right: 6px;
  color: var(--primary-color);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-social-links {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.3s;
}

.footer-social-links:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #dcdcdc;
  margin-bottom: 10px;
}

.contact-info svg {
  color: var(--primary-color);
}

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

.footer-policy-links a {
  color: #dcdcdc;
  font-size: 0.9rem;
  margin: 0 6px;
}

.footer-policy-links a:hover {
  color: var(--primary-color);
}

/* =========================
   PRICING TABLE CUSTOM
========================= */
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;

  overflow: hidden;
  background: var(--card-color);
}

.pricing-table thead th {
  background: var(--secondary-color);
  color: #ffffff;
  font-weight: 700;
  padding: 18px;
  border: none;
}

.pricing-table thead th.highlight-col {
  background: var(--primary-color)
}

.pricing-table tbody td {
  padding: 16px;
  font-size: 15px;
  color: var(--heading-text);
  border-top: 1px solid #e5e7eb;
    background: var(--card-color);
}

.pricing-table tbody td:first-child {
  font-weight: 600;
  color: var(--heading-text);
background: var(--card-color);
}

/* Text-dependent table-cell colors must be added with classes in HTML; :contains() is not valid CSS. */
/* =========================
   SEARCH INPUT GROUP
========================= */
.search-input {
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.search-input .form-control {
  border: none;
  padding: 14px 18px;
  font-size: 14px;
  background: var(--form-color);
  color: var(--form-text);
 }

.search-input .form-control:focus {
  box-shadow: none;
}

.search-input .search-btn {
  border: none;
  padding: 0 22px;
  border-radius: 0;
  background: var(--primary-color);
  color: white;
  transition: 0.3s ease;
}

.search-input .search-btn:hover {
  background: var(--secondary-color);
  color: white;
}

.search-input:focus-within {
  border-color: var(--primary-color);
}

 .splide__arrow svg{
  fill: var(--white-text);
}

.recent-post-item img{
  object-fit: cover;
}
/* Product Recommendation Section Styles */

 .recommended-products-modern {
   position: relative;
   isolation: isolate;
   overflow: hidden;
   padding: clamp(76px, 8vw, 118px) 0;
   color: #fff;
   background:
           radial-gradient(circle at 12% 20%, rgba(30, 190, 164, .22), transparent 30%),
           radial-gradient(circle at 88% 76%, rgba(35, 107, 145, .22), transparent 34%),
           linear-gradient(145deg, #061c28 0%, #0a2733 52%, #071b25 100%);
 }

.recommended-products-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .16;
  background-image:
          linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.recommended-products-modern::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -220px;
  top: -210px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}

.recommendation-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(38px, 5vw, 62px);
}

.recommendation-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #62dbc6;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.recommendation-title {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 4.4vw, 4.25rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.035em;
}

.recommendation-title span {
  color: #51d1ba;
}

.recommendation-intro {
  margin: 0;
  padding-left: 28px;
  border-left: 2px solid rgba(81, 209, 186, .62);
  color: rgba(235, 246, 248, .72);
  font-size: 1rem;
  line-height: 1.95;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 274px;
  gap: 22px;
}

.rec-product {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: #102d38;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .23);
}

.rec-product-featured {
  grid-column: span 7;
  grid-row: span 2;
}

.rec-product-side {
  grid-column: span 5;
}

.rec-product-small {
  grid-column: span 4;
  min-height: 308px;
}

.rec-product-link {
  position: absolute;
  inset: 0;
  display: block;
  color: #fff;
  text-decoration: none;
}

.rec-product-link:hover { color: #fff; }

.rec-product-media,
.rec-product-media::after {
  position: absolute;
  inset: 0;
}

.rec-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
  transition: transform .75s cubic-bezier(.2,.72,.22,1), filter .55s ease;
}

.rec-product-media::after {
  content: "";
  background:
          linear-gradient(180deg, rgba(4,19,26,.08) 18%, rgba(4,19,26,.48) 58%, rgba(4,19,26,.96) 100%),
          linear-gradient(90deg, rgba(3,18,25,.18), transparent 60%);
}

.rec-product-featured .rec-product-media::after {
  background:
          linear-gradient(180deg, rgba(4,19,26,.05) 20%, rgba(4,19,26,.40) 56%, rgba(4,19,26,.98) 100%),
          linear-gradient(90deg, rgba(3,18,25,.30), transparent 62%);
}

.rec-product:hover .rec-product-media img {
  transform: scale(1.075);
  filter: saturate(1.06) contrast(1.04);
}

.rec-product-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}

.rec-product-featured .rec-product-content {
  padding: clamp(28px, 4vw, 48px);
}

.rec-product-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}


.rec-product-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #e8fffb;
  background: rgba(7,32,41,.50);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: .75rem;
  font-weight: 700;
}

.rec-product-bottom {
  max-width: 680px;
  transform: translateY(5px);
  transition: transform .4s ease;
}

.rec-product:hover .rec-product-bottom { transform: translateY(0); }

.rec-product h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.2;
  font-weight: 800;
}

.rec-product-featured h3 {
  max-width: 580px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -.025em;
}

.rec-product-description {
  max-width: 610px;
  margin: 0 0 18px;
  color: rgba(239,248,250,.78);
  font-size: .95rem;
  line-height: 1.75;
}

.rec-product-featured .rec-product-description {
  max-width: 670px;
  font-size: 1.03rem;
}

.rec-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.rec-product-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(242,250,251,.88);
  font-size: .78rem;
  font-weight: 650;
}

.rec-product-tags span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #51d1ba;
  box-shadow: 0 0 0 4px rgba(81,209,186,.13);
}

.rec-product-arrow {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(8,34,44,.54);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.rec-product:hover .rec-product-arrow {
  transform: translate(4px, -4px);
  border-color: #51d1ba;
  background: #15937f;
}

.rec-product-side .rec-product-description,
.rec-product-small .rec-product-description {
  padding-right: 54px;
}

.recommendation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.recommendation-footer p {
  margin: 0;
  color: rgba(235,246,248,.60);
  font-size: .9rem;
}

.recommendation-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 14px 23px;
  border: 1px solid rgba(98,219,198,.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(81,209,186,.08);
  font-weight: 700;
  text-decoration: none;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.recommendation-more-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: #51d1ba;
  background: #15937f;
}

@media (max-width: 1199.98px) {
  .recommendation-grid { grid-auto-rows: 254px; }
  .rec-product-content { padding: 23px; }
  .rec-product-arrow { right: 22px; bottom: 22px; }
}

@media (max-width: 991.98px) {
  .recommendation-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .recommendation-intro {
    max-width: 720px;
  }

  .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 340px;
  }

  .rec-product-featured,
  .rec-product-side,
  .rec-product-small {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 0;
  }

  .rec-product-featured { grid-column: 1 / -1; min-height: 480px; }
}

@media (max-width: 767.98px) {
  .recommended-products-modern { padding: 70px 0; }
  .recommendation-intro { padding-left: 20px; }
  .recommendation-grid { grid-template-columns: 1fr; grid-auto-rows: 390px; }
  .rec-product-featured,
  .rec-product-side,
  .rec-product-small { grid-column: 1; }
  .rec-product-featured { min-height: 460px; }
  .recommendation-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 575.98px) {
  .recommendation-grid { grid-auto-rows: 360px; gap: 16px; }
  .rec-product { border-radius: 20px; }
  .rec-product-content,
  .rec-product-featured .rec-product-content { padding: 22px; }
  .rec-product-featured { min-height: 420px; }
  .rec-product-featured h3 { font-size: 2rem; }
  .rec-product-description { font-size: .88rem; }
  .rec-product-tags { gap: 7px 12px; }
  .rec-product-arrow { right: 20px; bottom: 20px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .rec-product-media img,
  .rec-product-bottom,
  .rec-product-arrow,
  .recommendation-more-btn { transition: none !important; }
}

/* News information section: uniform 3-column grid */
.news-insights-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
          radial-gradient(circle at 8% 12%, rgba(229, 138, 31, .10), transparent 24%),
          radial-gradient(circle at 92% 88%, rgba(67, 91, 108, .10), transparent 25%),
          linear-gradient(180deg, #f7f9fa 0%, #edf1f3 100%) !important;
}
.news-insights-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .25;
  pointer-events: none;
  background-image:
          linear-gradient(rgba(46, 62, 73, .07) 1px, transparent 1px),
          linear-gradient(90deg, rgba(46, 62, 73, .07) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
.news-section-intro {
  max-width: 850px;
}
.news-section-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}
.news-section-nav a {
  padding: 8px 15px;
  border: 1px solid rgba(47, 63, 74, .14);
  border-radius: 999px;
  color: #425564;
  background: rgba(255, 255, 255, .74);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .28s ease, border-color .28s ease, background .28s ease, transform .28s ease;
}
.news-section-nav a:hover,
.news-section-nav a:focus-visible {
  color: #fff;
  border-color: var(--industrial-accent);
  background: var(--industrial-accent);
  transform: translateY(-2px);
}
.news-grid-row {
  align-items: stretch;
}
.news-grid-row > [class*="col-"] {
  display: flex;
}
.news-grid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(52, 68, 79, .13);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(30, 42, 51, .09);
  transition: transform .4s cubic-bezier(.2,.75,.25,1), box-shadow .4s ease, border-color .4s ease;
}
.news-grid-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--industrial-accent), #f5b45f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .42s ease;
}
.news-grid-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 138, 31, .42);
  box-shadow: 0 25px 60px rgba(25, 36, 45, .15);
}
.news-grid-card:hover::after {
  transform: scaleX(1);
}
.news-grid-media {
  position: relative;
  height: 230px;
  flex: 0 0 230px;
  overflow: hidden;
  margin: 0;
  background: #dfe5e8;
}
.news-grid-media::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -45%;
  z-index: 2;
  width: 34%;
  height: 220%;
  pointer-events: none;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.40), transparent);
  transition: left .8s ease;
}
.news-grid-card:hover .news-grid-media::before {
  left: 125%;
}
.news-grid-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(16, 27, 35, .48), transparent);
}
.news-grid-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .72s cubic-bezier(.2,.75,.25,1), filter .4s ease;
}
.news-grid-card:hover .news-grid-media img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}
.news-category-badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f09a32, #b9650b);
  box-shadow: 0 10px 24px rgba(185, 101, 11, .26);
  font-size: .78rem;
  font-weight: 700;
}
.news-grid-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px;
}
.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-bottom: 13px;
  color: #73818b;
  font-size: .82rem;
}
.news-meta span,
.news-meta time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.news-meta i {
  color: var(--industrial-accent);
}
.news-grid-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.55;
}
.news-title-link {
  color: #1f303b;
  text-decoration: none;
  transition: color .26s ease;
}
.news-title-link:hover,
.news-title-link:focus-visible {
  color: var(--industrial-accent-dark);
}
.news-summary {
  flex: 1 1 auto;
  margin-bottom: 18px;
  color: #60717d;
  line-height: 1.78;
  font-size: .94rem;
}
.news-read-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--industrial-accent-dark);
  font-weight: 700;
  text-decoration: none;
}
.news-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #ef9a34, #b9650b);
  box-shadow: 0 8px 18px rgba(185, 101, 11, .20);
  transition: transform .28s ease, box-shadow .28s ease;
}
.news-read-link:hover .news-link-icon {
  transform: translateX(5px) rotate(-8deg);
  box-shadow: 0 11px 23px rgba(185, 101, 11, .30);
}
.news-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 25px;
  border: 1px solid rgba(229, 138, 31, .48);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ef9a34, #b9650b);
  box-shadow: 0 12px 28px rgba(185, 101, 11, .20);
  text-decoration: none;
  font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-all-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 17px 36px rgba(185, 101, 11, .30);
}
.news-all-btn i {
  transition: transform .28s ease;
}
.news-all-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 991.98px) {
  .news-grid-media {
    height: 220px;
    flex-basis: 220px;
  }
}
@media (max-width: 575.98px) {
  .news-grid-card {
    border-radius: 20px;
  }
  .news-grid-media {
    height: 215px;
    flex-basis: 215px;
  }
  .news-grid-body {
    padding: 21px;
  }
}
html[data-cs-theme="cs_dark"] .news-insights-section {
  background:
          radial-gradient(circle at 8% 14%, rgba(229, 138, 31, .10), transparent 24%),
          linear-gradient(180deg, #151e25 0%, #1a252d 100%) !important;
}
html[data-cs-theme="cs_dark"] .news-grid-card {
  border-color: rgba(220, 227, 232, .12);
  background: #202b34;
}
html[data-cs-theme="cs_dark"] .news-title-link {
  color: #eef2f4;
}
html[data-cs-theme="cs_dark"] .news-summary,
html[data-cs-theme="cs_dark"] .news-meta {
  color: #aeb8c0;
}
html[data-cs-theme="cs_dark"] .news-section-nav a {
  color: #d9e0e4;
  border-color: rgba(220, 227, 232, .13);
  background: rgba(255,255,255,.05);
}
@media (prefers-reduced-motion: reduce) {
  .news-grid-card,
  .news-grid-card::after,
  .news-grid-media::before,
  .news-grid-media img,
  .news-link-icon,
  .news-all-btn,
  .news-all-btn i,
  .news-section-nav a {
    transition: none !important;
  }
}

 body, button, input, select, textarea { font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif; }
.spray-brand-logo { display:inline-flex; align-items:center; font-size:1.65rem; font-weight:900; letter-spacing:.08em; color:#15937f; white-space:nowrap; }
.footer-wordmark { color:#fff; font-size:1.8rem; }
.navbar-brand { text-decoration:none; }
@media (max-width:575.98px){ .spray-brand-logo{font-size:1.35rem;} }
/* Refined Navigation Styles */

   /* Desktop navigation: compact, balanced and easier to scan */
 .spray-navbar {
   min-height: 86px;
   padding: 0;
   background: rgba(255, 255, 255, .96) !important;
   border-bottom: 1px solid rgba(15, 147, 127, .10);
   box-shadow: 0 10px 34px rgba(19, 35, 52, .07) !important;
   -webkit-backdrop-filter: blur(16px);
   backdrop-filter: blur(16px);
 }

.spray-navbar .container-xl {
  width: 100%;
  max-width: 1640px;
  min-height: 86px;
  padding-right: clamp(20px, 3vw, 44px);
  padding-left: clamp(20px, 3vw, 44px);
}

.spray-navbar .navbar-brand {
  margin-right: clamp(24px, 3vw, 52px);
  padding: 0;
}

.spray-navbar .spray-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #10243d;
  letter-spacing: 0;
}

.spray-logo-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #22bda4, #087b6d);
  box-shadow: 0 10px 24px rgba(11, 132, 114, .24);
}

.spray-logo-mark i { font-size: 1.15rem; }

.spray-brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.spray-brand-name {
  color: #118f7d;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.spray-brand-tag {
  margin-top: 7px;
  color: #7a8797;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .17em;
}

.spray-navbar .navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(17, 143, 125, .16);
  border-radius: 14px;
  color: #118f7d;
  background: rgba(17, 143, 125, .07);
  box-shadow: none;
}

.spray-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(17, 143, 125, .12);
}

.spray-navbar .dropdown-toggle::after { display: none; }

.spray-navbar .nav-link .fa-angle-down {
  margin-left: 2px;
  font-size: .72rem;
  opacity: .72;
  transition: transform .25s ease;
}

.spray-navbar .dropdown.show > .nav-link .fa-angle-down,
.spray-navbar .nav-link[aria-expanded="true"] .fa-angle-down {
  transform: rotate(180deg);
}

.spray-navbar .nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 0;
  border-radius: 14px;
  white-space: nowrap;
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(135deg, #1db79e, #087b6d);
  box-shadow: 0 10px 24px rgba(8, 123, 109, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.spray-navbar .nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 123, 109, .30);
}

.spray-navbar .dropdown-menu {
  margin-top: 12px !important;
  padding: 10px;
  border: 1px solid rgba(15, 147, 127, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 50px rgba(19, 35, 52, .13) !important;
}

.spray-navbar .custom-dropdown { min-width: 220px; }

.spray-navbar .dropdown-title {
  color: #118f7d;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.spray-navbar .dropdown-divider {
  margin: 3px 0 7px;
  border-color: rgba(17, 143, 125, .10);
}

.spray-navbar .dropdown-item,
.spray-navbar .mega-link {
  border-radius: 10px;
  color: #26364b;
  font-weight: 600;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.spray-navbar .dropdown-item { padding: .72rem .82rem; }

.spray-navbar .dropdown-item:hover,
.spray-navbar .mega-link:hover {
  color: #118f7d;
  background: #effaf7;
  transform: translateX(2px);
}

@media (min-width: 992px) {
  .spray-navbar .offcanvas { flex: 1 1 auto; }

  .spray-navbar .offcanvas-body {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    padding: 0;
  }

  .spray-navbar .nav_ul {
    flex-grow: 1 !important;
    justify-content: center !important;
    gap: 3px;
    margin: 0;
  }

  .spray-navbar .nav-item { margin: 0; }

  .spray-navbar .nav-link {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px !important;
    padding: 10px 13px !important;
    border-radius: 12px;
    color: #182741;
    font-size: .98rem;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    transition: color .22s ease, background .22s ease, transform .22s ease;
  }

  .spray-navbar .nav-link:hover {
    color: #118f7d;
    background: rgba(17, 143, 125, .07);
    transform: translateY(-1px);
  }

  .spray-navbar .nav-link.active {
    color: #118f7d !important;
    background: #eaf8f5;
    box-shadow: inset 0 0 0 1px rgba(17, 143, 125, .08);
  }

  .spray-navbar .nav-link.active::before {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 6px;
    left: 15px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #20b59c, transparent);
  }

  .spray-navbar .mega-menu {
    top: calc(100% + 9px);
    right: 0;
    left: auto;
    width: min(920px, calc(100vw - 48px));
    border-radius: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1240px) {
  .spray-navbar .container-xl { padding-right: 18px; padding-left: 18px; }
  .spray-navbar .navbar-brand { margin-right: 16px; }
  .spray-navbar .spray-logo-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .spray-navbar .spray-brand-name { font-size: 1.28rem; }
  .spray-navbar .spray-brand-tag { display: none; }
  .spray-navbar .offcanvas-body { gap: 12px; }
  .spray-navbar .nav-link { padding: 10px 8px !important; font-size: .88rem; }
  .spray-navbar .nav-cta { min-height: 42px; padding: 0 14px; font-size: .86rem; }
}

@media (max-width: 991.98px) {
  .spray-navbar,
  .spray-navbar .container-xl { min-height: 74px; }

  .spray-navbar .container-xl { padding-right: 18px; padding-left: 18px; }
  .spray-navbar .navbar-brand { margin-right: 0; }
  .spray-navbar .spray-logo-mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 13px; }
  .spray-navbar .spray-brand-name { font-size: 1.28rem; }
  .spray-navbar .spray-brand-tag { font-size: .52rem; }

  .spray-navbar .offcanvas {
    width: min(88vw, 380px);
    border-left: 0;
    background: #fff;
    box-shadow: -16px 0 45px rgba(19, 35, 52, .14);
  }

  .spray-navbar .offcanvas-header {
    min-height: 76px;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(17, 143, 125, .10);
  }

  .spray-navbar .offcanvas-body { padding: 18px 18px 24px; }
  .spray-navbar .nav_ul { align-items: stretch !important; gap: 5px; }

  .spray-navbar .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px !important;
    border-radius: 12px;
    color: #1c2b42;
    font-size: 1rem;
    font-weight: 650;
  }

  .spray-navbar .nav-link:hover,
  .spray-navbar .nav-link.active {
    color: #118f7d !important;
    background: #eef9f7;
  }

  .spray-navbar .dropdown-menu {
    margin: 5px 0 8px !important;
    padding: 7px;
    border-radius: 12px;
    box-shadow: none !important;
    background: #f7fbfa;
  }

  .spray-navbar .mega-menu { width: 100%; }
  .spray-navbar .nav-cta { width: 100%; margin-top: 18px; min-height: 48px; }
}

html[data-cs-theme="cs_dark"] .spray-navbar {
  background: rgba(14, 25, 35, .96) !important;
  border-bottom-color: rgba(255, 255, 255, .08);
}

html[data-cs-theme="cs_dark"] .spray-navbar .spray-brand-logo,
html[data-cs-theme="cs_dark"] .spray-navbar .nav-link { color: #edf5f4; }
html[data-cs-theme="cs_dark"] .spray-navbar .spray-brand-tag { color: #96aaa7; }
html[data-cs-theme="cs_dark"] .spray-navbar .dropdown-menu,
html[data-cs-theme="cs_dark"] .spray-navbar .offcanvas { background: #111f2a; }
html[data-cs-theme="cs_dark"] .spray-navbar .dropdown-item,
html[data-cs-theme="cs_dark"] .spray-navbar .mega-link { color: #e4efed; }
html[data-cs-theme="cs_dark"] .spray-navbar .dropdown-item:hover,
html[data-cs-theme="cs_dark"] .spray-navbar .mega-link:hover { background: rgba(27, 182, 157, .12); }



/* Desktop Hover Dropdown Enhancement */

@media (min-width: 992px) {
  /* Keep dropdowns in the document so hover transitions remain smooth. */
  .spray-navbar .nav-item.dropdown {
    position: relative;
  }

  .spray-navbar .nav-item.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 14px;
    pointer-events: none;
  }

  .spray-navbar .nav-item.dropdown:hover::after,
  .spray-navbar .nav-item.dropdown:focus-within::after {
    pointer-events: auto;
  }

  .spray-navbar .nav-item.dropdown > .dropdown-menu {
    display: block !important;
    top: calc(100% + 8px) !important;
    margin-top: 0 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transform-origin: top center;
    transition:
            opacity .18s ease,
            visibility .18s ease,
            transform .22s cubic-bezier(.2, .75, .25, 1);
  }

  .spray-navbar .nav-item.dropdown:hover > .dropdown-menu,
  .spray-navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .spray-navbar .nav-item.dropdown:hover > .nav-link,
  .spray-navbar .nav-item.dropdown:focus-within > .nav-link {
    color: #118f7d;
    background: rgba(17, 143, 125, .07);
  }

  .spray-navbar .nav-item.dropdown:hover > .nav-link .fa-angle-down,
  .spray-navbar .nav-item.dropdown:focus-within > .nav-link .fa-angle-down {
    transform: rotate(180deg);
  }

  /* Preserve the right-aligned positioning of the wide mega menu. */
  .spray-navbar .mega-dropdown > .mega-menu {
    right: 0;
    left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spray-navbar .nav-item.dropdown > .dropdown-menu {
    transition: none !important;
  }
}


/* Mobile Offcanvas Viewport Fix */

@media (max-width: 991.98px) {
  /*
      backdrop-filter on a parent can make position:fixed children use that
      parent as their containing block. Disable it on mobile so the menu
      always fills the real browser viewport instead of the navbar height.
    */
  .spray-navbar {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transform: none !important;
    filter: none !important;
    perspective: none !important;
    contain: none !important;
    overflow: visible !important;
    background: #fff !important;
  }

  .spray-navbar .container-xl {
    position: static !important;
  }

  .spray-navbar .offcanvas.offcanvas-end {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 1055 !important;
    width: min(88vw, 380px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s cubic-bezier(.22, .7, .2, 1), visibility .32s ease;
  }

  .spray-navbar .offcanvas.offcanvas-end.showing,
  .spray-navbar .offcanvas.offcanvas-end.show:not(.hiding) {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  .spray-navbar .offcanvas.offcanvas-end.hiding {
    transform: translateX(100%) !important;
    visibility: visible !important;
  }

  .spray-navbar .offcanvas-header {
    flex: 0 0 auto;
    width: 100%;
  }

  .spray-navbar .offcanvas-body {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .offcanvas-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1050 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
  }

  html[data-cs-theme="cs_dark"] .spray-navbar {
    background: #0e1923 !important;
  }
}

@media (max-width: 420px) {
  .spray-navbar .offcanvas.offcanvas-end {
    width: 100vw !important;
  }
}



/* Industrial Color Theme */

                                  :root {
                                    --industrial-graphite: #17212b;
                                    --industrial-charcoal: #222d36;
                                    --industrial-steel: #344654;
                                    --industrial-slate: #66737f;
                                    --industrial-silver: #d8dee3;
                                    --industrial-mist: #eef1f3;
                                    --industrial-paper: #f7f8f8;
                                    --industrial-white: #ffffff;
                                    --industrial-accent: #e58a1f;
                                    --industrial-accent-dark: #b9650b;
                                    --industrial-accent-soft: #fff1df;
                                    --industrial-border: rgba(36, 51, 63, .14);
                                    --industrial-shadow: 0 18px 45px rgba(20, 30, 38, .10);
                                  }

html { color-scheme: light; }
body {
  color: var(--industrial-charcoal);
  background: var(--industrial-paper) !important;
}

::selection {
  color: #fff;
  background: var(--industrial-accent);
}

.body-color { background-color: var(--industrial-paper) !important; }
.alt-color { background-color: var(--industrial-mist) !important; }
.light-color { background-color: #e4e9ed !important; }
.card-color,
.card-bg { background-color: var(--industrial-white) !important; }
.secondary-color { background-color: var(--industrial-graphite) !important; }
.primary-color { background-color: var(--industrial-accent) !important; }
.primary-text { color: var(--industrial-accent) !important; }
.heading-text { color: var(--industrial-graphite) !important; }
.para-text { color: #596673 !important; }

a { text-underline-offset: 3px; }

/* Top information bar */
.topbar {
  background: linear-gradient(90deg, #141c23, #25333e) !important;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Navigation */
.spray-navbar {
  background: rgba(247, 248, 248, .97) !important;
  border-bottom-color: rgba(36, 51, 63, .13) !important;
  box-shadow: 0 10px 32px rgba(24, 33, 42, .09) !important;
}

.spray-navbar .spray-brand-logo,
.spray-navbar .spray-brand-name { color: var(--industrial-graphite) !important; }
.spray-navbar .spray-brand-tag { color: var(--industrial-slate) !important; }

.spray-logo-mark {
  color: #fff !important;
  background: linear-gradient(145deg, #425664, #1e2b35) !important;
  box-shadow: 0 10px 24px rgba(28, 40, 49, .24) !important;
}
.spray-logo-mark::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 7px;
  top: 7px;
  border-radius: 50%;
  background: var(--industrial-accent);
  box-shadow: 0 0 0 3px rgba(229, 138, 31, .18);
}
.spray-logo-mark { position: relative; }

.spray-navbar .navbar-toggler {
  color: var(--industrial-graphite) !important;
  border-color: rgba(36, 51, 63, .18) !important;
  background: #e8ecef !important;
}
.spray-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(229, 138, 31, .18) !important;
}

.spray-navbar .nav-link { color: #263541 !important; }
.spray-navbar .nav-link:hover,
.spray-navbar .nav-link.active,
.spray-navbar .nav-item.dropdown:hover > .nav-link,
.spray-navbar .nav-item.dropdown:focus-within > .nav-link {
  color: var(--industrial-accent-dark) !important;
  background: var(--industrial-accent-soft) !important;
}
.spray-navbar .nav-link.active {
  box-shadow: inset 0 0 0 1px rgba(229, 138, 31, .16) !important;
}
.spray-navbar .nav-link.active::before {
  background: linear-gradient(90deg, transparent, var(--industrial-accent), transparent) !important;
}

.spray-navbar .nav-cta,
.primary-btn,
.btn-view-services,
.appointment-form button,
.pricing-card .btn {
  color: #fff !important;
  border-color: var(--industrial-accent) !important;
  background: linear-gradient(135deg, #f09a32, var(--industrial-accent-dark)) !important;
  box-shadow: 0 11px 25px rgba(185, 101, 11, .24) !important;
}
.spray-navbar .nav-cta:hover,
.primary-btn:hover,
.btn-view-services:hover,
.appointment-form button:hover,
.pricing-card .btn:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #f3a640, #a95508) !important;
  box-shadow: 0 15px 32px rgba(185, 101, 11, .32) !important;
}

.spray-navbar .dropdown-menu {
  border-color: var(--industrial-border) !important;
  background: rgba(250, 251, 251, .99) !important;
  box-shadow: 0 20px 50px rgba(24, 33, 42, .16) !important;
}
.spray-navbar .dropdown-title { color: var(--industrial-accent-dark) !important; }
.spray-navbar .dropdown-divider { border-color: var(--industrial-border) !important; }
.spray-navbar .dropdown-item,
.spray-navbar .mega-link { color: #2d3b46 !important; }
.spray-navbar .dropdown-item:hover,
.spray-navbar .mega-link:hover {
  color: var(--industrial-accent-dark) !important;
  background: var(--industrial-accent-soft) !important;
}

/* Hero banner: redesigned for a more premium, impactful industrial look */
.banner-main {
  position: relative;
  overflow: hidden;
}
.banner-main .splide__track,
.banner-main .splide__list,
.banner-main .splide__slide {
  height: 100%;
}
.banner-main .splide__slide {
  position: relative;
  min-height: clamp(560px, 78vh, 860px);
  padding: 132px 0 110px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-position: center center;
  background-size: cover;
}
.banner-main .splide__slide::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  pointer-events: none;
  background:
          radial-gradient(circle at 18% 26%, rgba(255,255,255,.22), transparent 18%),
          radial-gradient(circle at 85% 18%, rgba(255,153,51,.24), transparent 24%),
          radial-gradient(circle at 82% 82%, rgba(68, 120, 170, .26), transparent 22%);
  filter: blur(8px);
  animation: heroOrbFloat 16s ease-in-out infinite alternate;
}
.banner-main .splide__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
          linear-gradient(105deg, rgba(8, 18, 28, .82) 0%, rgba(14, 28, 40, .64) 34%, rgba(22, 44, 60, .38) 100%),
          linear-gradient(180deg, rgba(255, 149, 46, .08), rgba(255, 255, 255, .02) 40%, rgba(0, 0, 0, .14));
}
.banner-main .splide__slide .container {
  position: relative;
  z-index: 2;
}
.banner-main .splide__slide .container::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 4%;
  width: min(28vw, 340px);
  height: min(28vw, 340px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 149, 46, .30) 0%, rgba(255, 149, 46, .08) 48%, transparent 72%);
  filter: blur(10px);
  opacity: .95;
  animation: heroOrbPulse 9s ease-in-out infinite;
  pointer-events: none;
}
.banner-main .banner-content {
  position: relative;
  max-width: 860px;
  color: #ffffff !important;
  text-align: left;
}
.banner-main .hero-panel {
  position: relative;
  padding: 0;
}
.banner-main .hero-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 112px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb458, #ffffff 75%, transparent);
  box-shadow: 0 0 24px rgba(255, 180, 88, .36);
}
.banner-main .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff3e6;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}
.banner-main .hero-kicker i {
  color: #ffb458;
  font-size: .98rem;
}
.banner-main .banner-title {
  margin-bottom: 18px;
  color: #ffffff !important;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}
.banner-main .banner-title span {
  color: #ffb458;
}
.banner-main .banner-content p {
  max-width: 760px;
  margin-bottom: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: rgba(245, 248, 250, .92) !important;
  font-size: 1.12rem;
  line-height: 1.85;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}
.banner-main .hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.banner-main .hero-outline-btn {
  padding: 13px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  color: #ffffff;
  background: rgba(255,255,255,.08);
  box-shadow: 0 14px 32px rgba(10, 20, 30, .16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .35s ease;
}
.banner-main .hero-outline-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 180, 88, .68);
  background: rgba(255, 180, 88, .14);
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
}
.banner-main .hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin-top: 38px;
}
.banner-main .hero-highlight {
  position: relative;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(6, 14, 22, .16);
  overflow: hidden;
}
.banner-main .hero-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 48%, transparent 72%);
  transform: translateX(-120%);
  opacity: 0;
}
.banner-main .splide__slide.is-active .hero-highlight::before {
  animation: heroCardSweep 2.4s ease .9s 1;
}
.banner-main .hero-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: #ffb458;
  font-size: 1.52rem;
  line-height: 1;
  font-weight: 800;
}
.banner-main .hero-highlight span {
  display: block;
  color: rgba(255,255,255,.92);
  font-size: .97rem;
  line-height: 1.6;
}

/* Top hero carousel arrows: keep vertical centering stable on hover */
.banner-main .splide__arrow {
  top: 50%;
  width: 58px;
  height: 58px;
  opacity: 1;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(27, 44, 57, .48);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
          0 14px 34px rgba(7, 16, 25, .24),
          inset 0 0 0 1px rgba(255, 255, 255, .06);
  transform: translateY(-50%);
  transform-origin: center;
  will-change: transform;
  transition:
          transform .26s cubic-bezier(.2, .75, .25, 1),
          background-color .26s ease,
          border-color .26s ease,
          box-shadow .26s ease,
          color .26s ease;
}
.banner-main .splide__arrow--prev { left: 28px; }
.banner-main .splide__arrow--next { right: 28px; }

.banner-main .splide__arrow:hover,
.banner-main .splide__arrow:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 184, 92, .92);
  background: linear-gradient(135deg, #f5a13c, #c86d0d);
  box-shadow:
          0 18px 42px rgba(168, 87, 8, .34),
          0 0 0 6px rgba(255, 163, 61, .12),
          inset 0 1px 0 rgba(255, 255, 255, .26);
  transform: translateY(-50%) scale(1.06);
}

.banner-main .splide__arrow:active {
  transform: translateY(-50%) scale(.96);
  box-shadow:
          0 10px 24px rgba(168, 87, 8, .26),
          0 0 0 4px rgba(255, 163, 61, .10);
}

.banner-main .splide__arrow svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  transition: transform .26s cubic-bezier(.2, .75, .25, 1);
}
.banner-main .splide__arrow--prev:hover svg,
.banner-main .splide__arrow--prev:focus-visible svg {
  transform: translateX(-2px);
}
.banner-main .splide__arrow--next:hover svg,
.banner-main .splide__arrow--next:focus-visible svg {
  transform: translateX(2px);
}
.banner-main .splide__arrow:focus-visible {
  outline: none;
}
.banner-main .splide__pagination {
  bottom: 28px;
  gap: 10px;
}
.banner-main .splide__pagination__page {
  width: 34px;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
  opacity: 1;
  transition: all .3s ease;
}
.banner-main .splide__pagination__page.is-active {
  width: 58px;
  transform: none;
  background: linear-gradient(90deg, #ffb458, #ff8f2b);
  box-shadow: 0 8px 20px rgba(255, 143, 43, .26);
}

.banner-main .splide__slide.is-active .hero-kicker {
  animation: heroFadeUp .75s ease .08s both;
}
.banner-main .splide__slide.is-active .banner-title {
  animation: heroFadeUp .9s ease .22s both;
}
.banner-main .splide__slide.is-active .banner-content p {
  animation: heroFadeUp .9s ease .36s both;
}
.banner-main .splide__slide.is-active .hero-actions {
  animation: heroFadeUp .85s ease .52s both;
}
.banner-main .splide__slide.is-active .hero-highlight:nth-child(1) {
  animation: heroFadeUp .8s ease .68s both;
}
.banner-main .splide__slide.is-active .hero-highlight:nth-child(2) {
  animation: heroFadeUp .8s ease .78s both;
}
.banner-main .splide__slide.is-active .hero-highlight:nth-child(3) {
  animation: heroFadeUp .8s ease .88s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes heroOrbFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -18px, 0) scale(1.06); }
  100% { transform: translate3d(-12px, 16px, 0) scale(.98); }
}
@keyframes heroOrbPulse {
  0%, 100% { transform: scale(1); opacity: .82; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes heroCardSweep {
  0% { transform: translateX(-120%); opacity: 0; }
  35% { opacity: .9; }
  100% { transform: translateX(140%); opacity: 0; }
}

@media (max-width: 1199.98px) {
  .banner-main .splide__slide { min-height: 720px; }
  .banner-main .hero-highlights { max-width: 100%; }
}
@media (max-width: 991.98px) {
  .banner-main .splide__slide {
    min-height: 680px;
    padding: 122px 0 90px;
  }
  .banner-main .banner-content {
    max-width: 100%;
    text-align: center;
  }
  .banner-main .hero-panel::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .banner-main .banner-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-main .hero-actions {
    justify-content: center;
  }
  .banner-main .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .banner-main .splide__slide .container::before {
    right: 50%;
    bottom: 2%;
    transform: translateX(50%);
    width: 260px;
    height: 260px;
  }
}
@media (max-width: 767.98px) {
  .banner-main .splide__slide {
    min-height: 620px;
    padding: 110px 0 88px;
  }
  .banner-main .hero-kicker {
    font-size: .78rem;
    letter-spacing: .05em;
    padding: 9px 14px;
  }
  .banner-main .banner-title {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }
  .banner-main .banner-content p {
    font-size: 1rem;
    line-height: 1.75;
  }
  .banner-main .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .banner-main .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .banner-main .hero-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .banner-main .hero-highlight {
    padding: 16px 18px;
  }
  .banner-main .splide__arrow {
    width: 48px;
    height: 48px;
  }
  .banner-main .splide__arrow--prev { left: 12px; }
  .banner-main .splide__arrow--next { right: 12px; }
  .banner-main .splide__pagination {
    bottom: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .banner-main .splide__slide::before,
  .banner-main .splide__slide .container::before,
  .banner-main .splide__slide.is-active .hero-kicker,
  .banner-main .splide__slide.is-active .banner-title,
  .banner-main .splide__slide.is-active .banner-content p,
  .banner-main .splide__slide.is-active .hero-actions,
  .banner-main .splide__slide.is-active .hero-highlight,
  .banner-main .splide__slide.is-active .hero-highlight::before {
    animation: none !important;
  }
}

/* Recommended products: industrial graphite + safety orange */
.recommended-products-modern {
  background:
          radial-gradient(circle at 12% 20%, rgba(229, 138, 31, .18), transparent 30%),
          radial-gradient(circle at 88% 76%, rgba(93, 116, 133, .25), transparent 34%),
          linear-gradient(145deg, #10171d 0%, #26343e 52%, #141d24 100%) !important;
}
.recommendation-eyebrow,
.recommendation-title span { color: #f2a347 !important; }
.recommendation-intro { border-left-color: rgba(229, 138, 31, .72) !important; }
.rec-product {
  border-color: rgba(216, 222, 227, .16) !important;
  background: #2a3741 !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .30) !important;
}
.rec-product-category {
  color: #fff4e7 !important;
  background: rgba(26, 34, 41, .70) !important;
  border-color: rgba(229, 138, 31, .42) !important;
}
.rec-product-tags span::before {
  background: var(--industrial-accent) !important;
  box-shadow: 0 0 0 4px rgba(229, 138, 31, .15) !important;
}
.rec-product-arrow,
.recommendation-more-btn {
  border-color: rgba(229, 138, 31, .62) !important;
}
.rec-product:hover .rec-product-arrow,
.recommendation-more-btn:hover {
  background: var(--industrial-accent) !important;
  border-color: var(--industrial-accent) !important;
}

/* Cards and content sections */
.service-glass-card,
.process-card,
.testimonial-card,
.blog-card,
.pricing-card,
.card-soft,
.accordion-item {
  border: 1px solid var(--industrial-border) !important;
  background: var(--industrial-white) !important;
  box-shadow: var(--industrial-shadow) !important;
}

.service-glass-card:hover,
.blog-card:hover,
.pricing-card:hover {
  border-color: rgba(229, 138, 31, .45) !important;
  box-shadow: 0 22px 52px rgba(20, 30, 38, .15) !important;
}

.icon-floating,
.circle-icon,
.contact-iconbg {
  color: #fff !important;
  background: linear-gradient(145deg, #465b69, #263640) !important;
  box-shadow: 0 11px 25px rgba(31, 44, 54, .22) !important;
}
.circle-icon .step-number {
  color: #fff !important;
  background: var(--industrial-accent) !important;
}

.portfolio-section {
  background:
          linear-gradient(135deg, rgba(16, 23, 29, .97), rgba(48, 64, 76, .94)),
          #17212b !important;
}
.portfolio-section .card {
  border-color: rgba(255,255,255,.13) !important;
  background: #26343e !important;
}
.portfolio-section .heading-text,
.portfolio-section .para-text { color: #eef2f4 !important; }

.project-overlay,
.team-overlay {
  background: linear-gradient(180deg, rgba(17, 25, 32, .10), rgba(17, 25, 32, .93)) !important;
}
.view-btn,
.social-icon,
.footer-social-links {
  color: #fff !important;
  background: var(--industrial-accent) !important;
  border-color: var(--industrial-accent) !important;
}

.accordion-button {
  color: var(--industrial-graphite) !important;
  background: var(--industrial-white) !important;
}
.accordion-button:not(.collapsed) {
  color: var(--industrial-accent-dark) !important;
  background: var(--industrial-accent-soft) !important;
  box-shadow: inset 0 -1px 0 rgba(36, 51, 63, .10) !important;
}
.accordion-button:focus {
  border-color: rgba(229, 138, 31, .42) !important;
  box-shadow: 0 0 0 4px rgba(229, 138, 31, .13) !important;
}

.pricing-header {
  background: linear-gradient(135deg, #344654, #1c2730) !important;
}
.pricing-card.featured-plan {
  border: 2px solid var(--industrial-accent) !important;
}
.pricing-card.featured-plan .pricing-header {
  background: linear-gradient(135deg, #ef9a34, #b9650b) !important;
}

input,
select,
textarea,
.form-control,
.form-select {
  color: var(--industrial-graphite) !important;
  border-color: rgba(52, 70, 84, .22) !important;
  background-color: #fbfcfc !important;
}
input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--industrial-accent) !important;
  box-shadow: 0 0 0 4px rgba(229, 138, 31, .13) !important;
}

/* Premium industrial footer */
.footer-section {
  --footer-bg: #0d151b;
  --footer-panel: rgba(255, 255, 255, .055);
  --footer-border: rgba(255, 255, 255, .11);
  --footer-muted: #aeb9c1;
  --footer-bright: #f4f7f8;
  --footer-accent: #f09a32;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
          radial-gradient(circle at 8% 18%, rgba(240, 154, 50, .15), transparent 25%),
          radial-gradient(circle at 88% 70%, rgba(82, 121, 148, .19), transparent 28%),
          linear-gradient(145deg, #0b1217 0%, #17232c 46%, #101a21 100%) !important;
}
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .20;
  pointer-events: none;
  background-image:
          linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 88%, transparent 100%);
  animation: footerGridDrift 26s linear infinite;
}
.footer-section::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 430px;
  height: 430px;
  right: -190px;
  top: 21%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(240, 154, 50, .20), rgba(240, 154, 50, .03) 58%, transparent 72%);
  filter: blur(3px);
  animation: footerOrbFloat 10s ease-in-out infinite;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
          linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 42%, rgba(240, 154, 50, .035)),
          linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 18%) !important;
}
.footer-container {
  position: relative;
  z-index: 2;
}
.footer-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 58px;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  background:
          linear-gradient(118deg, rgba(255, 255, 255, .115), rgba(255, 255, 255, .045)),
          linear-gradient(90deg, rgba(240, 154, 50, .12), transparent 52%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: -90%;
  left: -22%;
  width: 18%;
  height: 280%;
  pointer-events: none;
  transform: rotate(23deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .20), transparent);
  animation: footerCtaSweep 7s ease-in-out infinite;
}
.footer-cta-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #f3a94d, #c76a0c);
  box-shadow: 0 14px 30px rgba(199, 106, 12, .27);
}
.footer-cta-title {
  margin: 0 0 7px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
  font-weight: 800;
}
.footer-cta-text {
  margin: 0;
  color: rgba(235, 241, 244, .78);
  line-height: 1.75;
}
.footer-cta .footer-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 24px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.footer-cta .footer-secondary-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: rgba(240, 154, 50, .72);
  background: rgba(240, 154, 50, .13);
}
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  color: #fff;
  text-decoration: none;
}
.footer-brand-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, #f1a13f, #b85f09);
  box-shadow: 0 14px 28px rgba(184, 95, 9, .24);
  transition: transform .35s ease, box-shadow .35s ease;
}
.footer-brand-link:hover .footer-brand-mark {
  transform: rotate(-5deg) scale(1.06);
  box-shadow: 0 18px 34px rgba(184, 95, 9, .32);
}
.footer-brand-name {
  display: block;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: .04em;
}
.footer-brand-tag {
  display: block;
  margin-top: 7px;
  color: rgba(235, 241, 244, .60);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .20em;
}
.footer-about {
  max-width: 440px;
  margin-bottom: 22px;
  color: var(--footer-muted) !important;
  font-size: .97rem;
  line-height: 1.9;
}
.footer-capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-capability-tags li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  color: rgba(242, 246, 248, .82);
  background: rgba(255, 255, 255, .045);
  font-size: .78rem;
  transition: transform .28s ease, border-color .28s ease, color .28s ease;
}
.footer-capability-tags li:hover {
  color: #fff;
  border-color: rgba(240, 154, 50, .48);
  transform: translateY(-2px);
}
.footer-title {
  position: relative;
  margin: 5px 0 22px;
  padding-bottom: 13px;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 800;
  letter-spacing: .04em;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--footer-accent), rgba(240, 154, 50, .15));
  transition: width .35s ease;
}
.footer-column:hover .footer-title::after {
  width: 72px;
}
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li + li {
  margin-top: 11px;
}
.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--footer-muted) !important;
  text-decoration: none;
  line-height: 1.65;
  transition: color .28s ease, transform .28s ease;
}
.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: rgba(240, 154, 50, .42);
  box-shadow: 0 0 0 0 rgba(240, 154, 50, .22);
  transition: background .28s ease, box-shadow .28s ease;
}
.footer-links a:hover {
  color: #fff !important;
  transform: translateX(5px);
}
.footer-links a:hover::before {
  background: var(--footer-accent);
  box-shadow: 0 0 0 5px rgba(240, 154, 50, .10);
}
.footer-contact-card {
  padding: 22px;
  border: 1px solid var(--footer-border);
  border-radius: 22px;
  background: var(--footer-panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.footer-contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 154, 50, .38);
  background: rgba(255, 255, 255, .075);
}
.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-list li + li {
  margin-top: 15px;
}
.footer-contact-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #f7ad55;
  background: rgba(240, 154, 50, .11);
  border: 1px solid rgba(240, 154, 50, .18);
}
.footer-contact-label {
  display: block;
  margin-bottom: 3px;
  color: rgba(235, 241, 244, .53);
  font-size: .76rem;
  line-height: 1.35;
}
.footer-contact-value,
.footer-contact-value a {
  color: rgba(247, 249, 250, .90) !important;
  text-decoration: none;
  line-height: 1.6;
  word-break: break-word;
  transition: color .25s ease;
}
.footer-contact-value a:hover {
  color: #f6ad55 !important;
}
.footer-strength-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .09);
}
.footer-strength-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 96px;
  padding: 19px 22px;
  background: rgba(11, 20, 27, .78);
  transition: background .3s ease, transform .3s ease;
}
.footer-strength-item:hover {
  z-index: 2;
  background: rgba(240, 154, 50, .12);
  transform: translateY(-2px);
}
.footer-strength-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #f5ab52;
  background: rgba(240, 154, 50, .09);
  border: 1px solid rgba(240, 154, 50, .16);
}
.footer-strength-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: .94rem;
}
.footer-strength-item span {
  display: block;
  color: rgba(230, 236, 239, .58);
  font-size: .78rem;
  line-height: 1.5;
}
.footer-bottom {
  margin-top: 0 !important;
  padding: 22px 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, .09);
}
.footer-bottom-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.footer-bottom p {
  margin: 0;
  color: rgba(223, 230, 234, .58);
  font-size: .84rem;
}
.footer-policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 !important;
}
.footer-policy-links a {
  color: rgba(226, 232, 235, .66) !important;
  font-size: .84rem;
  text-decoration: none;
  transition: color .25s ease;
}
.footer-policy-links a:hover {
  color: #f3a64b !important;
}
.footer-seo-line {
  margin-top: 14px;
  padding-top: 14px;
  color: rgba(223, 230, 234, .38);
  font-size: .77rem;
  line-height: 1.7;
  text-align: center;
}

@keyframes footerGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 58px 58px, 58px 58px; }
}
@keyframes footerOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, -22px, 0) scale(1.06); }
}
@keyframes footerCtaSweep {
  0%, 18% { left: -22%; opacity: 0; }
  30% { opacity: .85; }
  55%, 100% { left: 118%; opacity: 0; }
}

@media (max-width: 1199.98px) {
  .footer-strength-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
  .footer-cta { padding: 26px; }
  .footer-cta-actions { margin-top: 20px; }
}
@media (max-width: 767.98px) {
  .footer-cta {
    margin-bottom: 42px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .footer-cta-icon { width: 50px; height: 50px; flex-basis: 50px; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn,
  .footer-cta-actions .footer-secondary-btn { width: 100%; }
  .footer-strength-strip { grid-template-columns: 1fr; }
  .footer-strength-item { min-height: 84px; }
  .footer-bottom-main { justify-content: center; text-align: center; }
  .footer-policy-links { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-section::before,
  .footer-section::after,
  .footer-cta::before { animation: none !important; }
  .footer-brand-mark,
  .footer-links a,
  .footer-contact-card,
  .footer-strength-item,
  .footer-secondary-btn { transition: none !important; }
}

.switchbtn {
  border: 1px solid rgba(255,255,255,.12) !important;
  background: #263640 !important;
  box-shadow: 0 12px 28px rgba(17, 25, 32, .28) !important;
}
.switchbtn .mode-icon { color: #f2a347 !important; }
.back-to-top { background: var(--industrial-accent) !important; }

/* Mobile navigation remains full-height and uses the same industrial palette. */
@media (max-width: 991.98px) {
  .spray-navbar { background: #f7f8f8 !important; }
  .spray-navbar .offcanvas {
    background: #f7f8f8 !important;
    box-shadow: -18px 0 48px rgba(17, 25, 32, .22) !important;
  }
  .spray-navbar .offcanvas-header { border-bottom-color: var(--industrial-border) !important; }
  .spray-navbar .dropdown-menu { background: #e9edf0 !important; }
}

/* Dark mode: graphite surfaces, steel borders, orange highlights. */
html[data-cs-theme="cs_dark"] { color-scheme: dark; }
html[data-cs-theme="cs_dark"] body,
html[data-cs-theme="cs_dark"] .body-color { background: #11181e !important; }
html[data-cs-theme="cs_dark"] .alt-color,
html[data-cs-theme="cs_dark"] .light-color { background: #1a242c !important; }
html[data-cs-theme="cs_dark"] .card-color,
html[data-cs-theme="cs_dark"] .card-bg,
html[data-cs-theme="cs_dark"] .service-glass-card,
html[data-cs-theme="cs_dark"] .process-card,
html[data-cs-theme="cs_dark"] .testimonial-card,
html[data-cs-theme="cs_dark"] .blog-card,
html[data-cs-theme="cs_dark"] .pricing-card,
html[data-cs-theme="cs_dark"] .card-soft,
html[data-cs-theme="cs_dark"] .accordion-item {
  color: #e8edf0 !important;
  border-color: rgba(216, 222, 227, .12) !important;
  background: #202b34 !important;
}
html[data-cs-theme="cs_dark"] .heading-text { color: #f0f3f5 !important; }
html[data-cs-theme="cs_dark"] .para-text { color: #aeb8c0 !important; }
html[data-cs-theme="cs_dark"] .spray-navbar { background: rgba(17, 24, 30, .98) !important; }
html[data-cs-theme="cs_dark"] .spray-navbar .spray-brand-logo,
html[data-cs-theme="cs_dark"] .spray-navbar .spray-brand-name,
html[data-cs-theme="cs_dark"] .spray-navbar .nav-link { color: #eef2f4 !important; }
html[data-cs-theme="cs_dark"] .spray-navbar .dropdown-menu,
html[data-cs-theme="cs_dark"] .spray-navbar .offcanvas { background: #1a242c !important; }
html[data-cs-theme="cs_dark"] .spray-navbar .dropdown-item,
html[data-cs-theme="cs_dark"] .spray-navbar .mega-link { color: #e1e7ea !important; }
html[data-cs-theme="cs_dark"] .accordion-button {
  color: #eef2f4 !important;
  background: #202b34 !important;
}
html[data-cs-theme="cs_dark"] input,
html[data-cs-theme="cs_dark"] select,
html[data-cs-theme="cs_dark"] textarea,
html[data-cs-theme="cs_dark"] .form-control,
html[data-cs-theme="cs_dark"] .form-select {
  color: #edf1f3 !important;
  border-color: rgba(216, 222, 227, .16) !important;
  background-color: #172129 !important;
}


/* Product showcase: 3 columns × 4 rows, premium industrial presentation */
.industrial-products-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 92px !important;
  padding-bottom: 96px !important;
  background:
          radial-gradient(circle at 8% 12%, rgba(229, 138, 31, .13), transparent 26%),
          radial-gradient(circle at 93% 78%, rgba(61, 93, 116, .14), transparent 28%),
          linear-gradient(180deg, #f7f9fa 0%, #edf1f3 52%, #f9fafb 100%);
}
.industrial-products-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .34;
  background-image:
          linear-gradient(rgba(41, 57, 69, .065) 1px, transparent 1px),
          linear-gradient(90deg, rgba(41, 57, 69, .065) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  animation: productGridMove 24s linear infinite;
}
.industrial-products-grid::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -210px;
  right: -130px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 138, 31, .18), rgba(229, 138, 31, .04) 48%, transparent 72%);
  filter: blur(3px);
  animation: productOrbFloat 10s ease-in-out infinite alternate;
}
.product-showcase-head {
  position: relative;
  margin-bottom: 46px;
}
.product-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #b9650b;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-showcase-eyebrow::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #e58a1f, #ffb458);
  box-shadow: 0 0 16px rgba(229, 138, 31, .28);
}
.product-showcase-title {
  max-width: 760px;
  margin-bottom: 16px;
  color: #182630;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.14;
  letter-spacing: -.035em;
}
.product-showcase-title span {
  color: #d87913;
}
.product-showcase-desc {
  max-width: 760px;
  margin-bottom: 0;
  color: #5b6872;
  font-size: 1.04rem;
  line-height: 1.85;
}
.product-showcase-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(43, 61, 74, .11);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 46px rgba(31, 44, 54, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.product-showcase-stat {
  padding: 13px 12px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245,247,248,.96), rgba(235,240,243,.86));
}
.product-showcase-stat strong {
  display: block;
  margin-bottom: 5px;
  color: #1f313e;
  font-size: 1.32rem;
  line-height: 1;
  font-weight: 800;
}
.product-showcase-stat span {
  color: #6b7780;
  font-size: .78rem;
  line-height: 1.4;
}
.industry-product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(40, 56, 68, .11);
  border-radius: 25px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 42px rgba(25, 39, 49, .085);
  transition:
          transform .48s cubic-bezier(.2,.75,.25,1),
          box-shadow .48s ease,
          border-color .48s ease;
}
.industry-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  z-index: 5;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, transparent, #e58a1f 35%, #ffbd6d 65%, transparent);
  transform: scaleX(.28);
  opacity: .65;
  transition: transform .45s ease, opacity .45s ease;
}
.industry-product-card:hover {
  transform: translateY(-11px);
  border-color: rgba(229, 138, 31, .38);
  box-shadow: 0 28px 68px rgba(24, 37, 47, .17);
}
.industry-product-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
.industry-product-media {
  position: relative;
  height: 270px;
  margin: 0;
  overflow: hidden;
  background: #dfe5e8;
}
.industry-product-media > a {
  display: block;
  height: 100%;
}
.industry-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.18,.8,.22,1), filter .5s ease;
}
.industry-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
          linear-gradient(180deg, rgba(10, 21, 29, .04) 20%, rgba(10, 21, 29, .70) 100%),
          linear-gradient(115deg, transparent 42%, rgba(255,255,255,.25) 52%, transparent 62%);
  background-size: 100% 100%, 230% 100%;
  background-position: 0 0, 140% 0;
  transition: background-position .9s ease;
}
.industry-product-card:hover .industry-product-media img {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.04);
}
.industry-product-card:hover .industry-product-media::after {
  background-position: 0 0, -70% 0;
}
.industry-product-category {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 31, 40, .58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.industry-product-category i { color: #ffb45c; }
.industry-product-index {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 31, 40, .52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.industry-product-media-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.90);
  font-size: .82rem;
}
.industry-product-media-label span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.industry-product-media-label i { color: #ffb45c; }
.industry-product-body {
  display: flex;
  flex-direction: column;
  min-height: 265px;
  padding: 25px 25px 24px;
}
.industry-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #8a5b26;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.industry-product-meta span:last-child {
  color: #75818a;
  font-weight: 700;
  letter-spacing: .03em;
}
.industry-product-title {
  margin-bottom: 11px;
  color: #1d2d38;
  font-size: 1.25rem;
  line-height: 1.42;
}
.industry-product-title a {
  color: inherit;
  text-decoration: none;
  transition: color .28s ease;
}
.industry-product-title a:hover { color: #c96f0d; }
.industry-product-desc {
  margin-bottom: 18px;
  color: #68747d;
  font-size: .94rem;
  line-height: 1.75;
}
.industry-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.industry-product-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(47, 65, 78, .10);
  border-radius: 999px;
  color: #52616c;
  background: #f1f4f5;
  font-size: .72rem;
  font-weight: 700;
}
.industry-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(45, 61, 73, .10);
  color: #263a48;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}
.industry-product-link .link-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #f09a32, #b9650b);
  box-shadow: 0 9px 20px rgba(185, 101, 11, .21);
  transition: transform .32s ease, box-shadow .32s ease;
}
.industry-product-link:hover {
  color: #bd660b;
}
.industry-product-link:hover .link-icon {
  transform: translateX(4px) rotate(-8deg);
  box-shadow: 0 12px 25px rgba(185, 101, 11, .30);
}
.product-showcase-cta {
  margin-top: 48px;
  text-align: center;
}
.product-showcase-cta .btn {
  padding: 14px 30px;
  border-radius: 999px;
}

@keyframes productGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}
@keyframes productOrbFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-34px, 38px, 0) scale(1.08); }
}
@media (max-width: 991.98px) {
  .industrial-products-grid {
    padding-top: 74px !important;
    padding-bottom: 78px !important;
  }
  .product-showcase-summary { margin-top: 26px; }
  .industry-product-media { height: 250px; }
}
@media (max-width: 575.98px) {
  .industrial-products-grid {
    padding-top: 62px !important;
    padding-bottom: 66px !important;
  }
  .product-showcase-title { font-size: 2rem; }
  .product-showcase-summary { grid-template-columns: 1fr; }
  .product-showcase-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .product-showcase-stat strong { margin-bottom: 0; }
  .industry-product-card { border-radius: 21px; }
  .industry-product-media { height: 235px; }
  .industry-product-body { min-height: auto; padding: 22px 21px; }
}
@media (prefers-reduced-motion: reduce) {
  .industrial-products-grid::before,
  .industrial-products-grid::after,
  .industry-product-card,
  .industry-product-card::before,
  .industry-product-media img,
  .industry-product-media::after,
  .industry-product-link .link-icon {
    animation: none !important;
    transition: none !important;
  }
}
html[data-cs-theme="cs_dark"] .industrial-products-grid {
  background:
          radial-gradient(circle at 8% 12%, rgba(229, 138, 31, .13), transparent 26%),
          radial-gradient(circle at 93% 78%, rgba(75, 110, 135, .13), transparent 28%),
          linear-gradient(180deg, #121a20 0%, #1a252d 52%, #11191f 100%) !important;
}
html[data-cs-theme="cs_dark"] .product-showcase-title,
html[data-cs-theme="cs_dark"] .industry-product-title { color: #edf2f4 !important; }
html[data-cs-theme="cs_dark"] .product-showcase-desc,
html[data-cs-theme="cs_dark"] .industry-product-desc { color: #aeb8bf !important; }
html[data-cs-theme="cs_dark"] .product-showcase-summary,
html[data-cs-theme="cs_dark"] .industry-product-card {
  border-color: rgba(255,255,255,.10) !important;
  background: rgba(31, 43, 52, .95) !important;
}
html[data-cs-theme="cs_dark"] .product-showcase-stat,
html[data-cs-theme="cs_dark"] .industry-product-tags span {
  color: #cbd3d8 !important;
  border-color: rgba(255,255,255,.08) !important;
  background: #27353f !important;
}
html[data-cs-theme="cs_dark"] .product-showcase-stat strong,
html[data-cs-theme="cs_dark"] .industry-product-link { color: #edf2f4 !important; }

                                .hvof-workshop-section {
                                  position: relative;
                                  isolation: isolate;
                                  overflow: hidden;
                                  padding: 92px 0 96px;
                                  color: #fff;
                                  background:
                                          radial-gradient(circle at 12% 18%, rgba(243, 154, 52, .18), transparent 26%),
                                          radial-gradient(circle at 92% 82%, rgba(89, 126, 153, .22), transparent 28%),
                                          linear-gradient(145deg, #111a22 0%, #263641 52%, #121b22 100%);
                                }

.hvof-workshop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .2;
  pointer-events: none;
  background-image:
          linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  animation: hvofGridMove 20s linear infinite;
}

.hvof-workshop-section::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 430px;
  height: 430px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 154, 52, .2), rgba(243, 154, 52, .03) 58%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  animation: hvofGlowFloat 9s ease-in-out infinite alternate;
}

.hvof-workshop-heading {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.hvof-workshop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 9px 16px;
  border: 1px solid rgba(243, 154, 52, .38);
  border-radius: 999px;
  color: #ffd9ae;
  background: rgba(243, 154, 52, .1);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.hvof-workshop-heading h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.025em;
}

.hvof-workshop-heading h2 span {
  color: #f3a34c;
}

.hvof-workshop-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(232, 239, 243, .78);
  font-size: 1.02rem;
  line-height: 1.9;
}

.hvof-slider-shell {
  position: relative;
}

.hvof-workshop-slider {
  padding: 8px 4px 62px;
}

.hvof-workshop-slider .splide__track {
  overflow: visible;
}

.hvof-workshop-slider .splide__list {
  align-items: stretch;
}

.hvof-workshop-slider .splide__slide {
  height: auto;
  opacity: .62;
  transform: scale(.965);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.75,.25,1);
}

.hvof-workshop-slider .splide__slide.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hvof-photo-card {
  position: relative;
  height: 100%;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: #24333e;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  transition: transform .45s cubic-bezier(.2,.75,.25,1), border-color .4s ease, box-shadow .4s ease;
}

.hvof-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
          linear-gradient(180deg, rgba(8, 16, 23, .03) 20%, rgba(8, 16, 23, .88) 100%),
          linear-gradient(110deg, rgba(243, 154, 52, .12), transparent 42%);
}

.hvof-photo-card::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -42%;
  width: 26%;
  height: 250%;
  z-index: 3;
  pointer-events: none;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  transition: left .85s ease;
}

.hvof-photo-card:hover {
  transform: translateY(-10px);
  border-color: rgba(243, 154, 52, .52);
  box-shadow: 0 34px 78px rgba(0, 0, 0, .38);
}

.hvof-photo-card:hover::after {
  left: 128%;
}

.hvof-photo-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}

.hvof-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.75,.25,1), filter .5s ease;
}

.hvof-photo-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.hvof-card-top {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hvof-photo-tag,
.hvof-photo-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 25, 32, .56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.hvof-photo-tag i {
  color: #f3a34c;
}

.hvof-photo-index {
  color: #ffd5a4;
  font-variant-numeric: tabular-nums;
}

.hvof-photo-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 30px 28px 28px;
}

.hvof-photo-content h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.38rem;
  line-height: 1.35;
  font-weight: 800;
}

.hvof-photo-content p {
  margin: 0;
  color: rgba(235, 241, 244, .78);
  font-size: .93rem;
  line-height: 1.72;
}

.hvof-photo-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: #ffc27d;
  font-size: .86rem;
  font-weight: 700;
  transition: gap .3s ease, color .3s ease;
}

.hvof-photo-card:hover .hvof-photo-more {
  gap: 14px;
  color: #fff;
}

.hvof-workshop-slider .splide__arrows {
  position: absolute;
  right: 4px;
  bottom: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hvof-workshop-slider .splide__arrow {
  position: static;
  width: 50px;
  height: 50px;
  margin: 0;
  opacity: 1;
  transform: none;
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.hvof-workshop-slider .splide__arrow:hover {
  transform: translateY(-3px);
  border-color: #f3a34c;
  background: #e78b25;
}

.hvof-workshop-slider .splide__arrow svg {
  fill: currentColor;
}

.hvof-workshop-slider .splide__pagination {
  left: 4px;
  right: auto;
  bottom: 17px;
  justify-content: flex-start;
  gap: 8px;
}

.hvof-workshop-slider .splide__pagination__page {
  width: 26px;
  height: 6px;
  margin: 0;
  border-radius: 999px;
  opacity: 1;
  background: rgba(255,255,255,.22);
  transition: width .3s ease, background .3s ease, transform .3s ease;
}

.hvof-workshop-slider .splide__pagination__page.is-active {
  width: 52px;
  transform: none;
  background: linear-gradient(90deg, #f3a34c, #fff0de);
  box-shadow: 0 7px 18px rgba(243, 163, 76, .22);
}

.hvof-workshop-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(232,239,243,.68);
  font-size: .86rem;
}

.hvof-workshop-note i {
  color: #f3a34c;
}

@keyframes hvofGridMove {
  to { background-position: 54px 54px; }
}

@keyframes hvofGlowFloat {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-28px,26px,0) scale(1.08); }
}

@media (max-width: 991.98px) {
  .hvof-workshop-section { padding: 76px 0 82px; }
  .hvof-photo-card,
  .hvof-photo-card img { min-height: 400px; }
}

@media (max-width: 575.98px) {
  .hvof-workshop-section { padding: 64px 0 72px; }
  .hvof-workshop-heading { margin-bottom: 34px; }
  .hvof-workshop-heading p { font-size: .95rem; }
  .hvof-workshop-slider { padding-bottom: 58px; }
  .hvof-photo-card { min-height: 390px; border-radius: 22px; }
  .hvof-photo-card img { min-height: 390px; }
  .hvof-card-top { top: 16px; left: 16px; right: 16px; }
  .hvof-photo-content { padding: 24px 22px 24px; }
  .hvof-photo-content h3 { font-size: 1.24rem; }
  .hvof-workshop-slider .splide__arrow { width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .hvof-workshop-section::before,
  .hvof-workshop-section::after,
  .hvof-workshop-slider .splide__slide,
  .hvof-photo-card,
  .hvof-photo-card::after,
  .hvof-photo-card img,
  .hvof-photo-more,
  .hvof-workshop-slider .splide__arrow,
  .hvof-workshop-slider .splide__pagination__page {
    animation: none !important;
    transition: none !important;
  }
}


/* Company profile and capability showcase */
.company-profile-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
          radial-gradient(circle at 8% 12%, rgba(229, 138, 31, .12), transparent 28%),
          radial-gradient(circle at 92% 82%, rgba(62, 86, 104, .14), transparent 32%),
          linear-gradient(180deg, #f8fafb 0%, #eef2f4 100%);
}
.company-profile-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .32;
  background-image:
          linear-gradient(rgba(54, 73, 87, .08) 1px, transparent 1px),
          linear-gradient(90deg, rgba(54, 73, 87, .08) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}
.company-profile-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 90px;
  width: 340px;
  height: 340px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(229, 138, 31, .18);
  box-shadow:
          0 0 0 38px rgba(229, 138, 31, .035),
          0 0 0 76px rgba(54, 73, 87, .025);
  animation: companyProfileRing 10s ease-in-out infinite;
}
.company-profile-heading {
  max-width: 820px;
  margin-bottom: 42px;
}
.company-profile-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--industrial-accent-dark, #b9650b);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.company-profile-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--industrial-accent, #e58a1f), #f7b65e);
}
.company-profile-title {
  margin-bottom: 16px;
  color: var(--industrial-graphite, #1f2b34);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.company-profile-title span {
  color: var(--industrial-accent, #e58a1f);
}
.company-profile-lead {
  max-width: 760px;
  margin: 0;
  color: #5a6974;
  font-size: 1.08rem;
  line-height: 1.9;
}
.company-profile-visual {
  position: relative;
  min-height: 560px;
  padding: 0 38px 38px 0;
}
.company-profile-main-link {
  position: relative;
  display: block;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  background: #26343e;
  box-shadow: 0 30px 70px rgba(25, 37, 46, .20);
}
.company-profile-main-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
          linear-gradient(180deg, rgba(16, 24, 31, .03) 35%, rgba(16, 24, 31, .82) 100%),
          linear-gradient(120deg, rgba(229, 138, 31, .10), transparent 48%);
}
.company-profile-main-link::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -35%;
  z-index: 2;
  width: 28%;
  height: 190%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transition: left .85s ease;
}
.company-profile-main-link:hover::after {
  left: 125%;
}
.company-profile-main-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.company-profile-main-link:hover .company-profile-main-image {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.03);
}
.company-profile-image-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
}
.company-profile-image-caption small {
  display: block;
  margin-bottom: 8px;
  color: #f6b55e;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.company-profile-image-caption strong {
  display: block;
  max-width: 360px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.3;
}
.company-profile-image-arrow {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #f2a13f, #b9650b);
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
  transition: transform .35s ease;
}
.company-profile-main-link:hover .company-profile-image-arrow {
  transform: translateX(5px) rotate(-7deg);
}
.company-profile-float-card {
  position: absolute;
  right: 0;
  top: 42px;
  z-index: 4;
  width: 210px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 24px 50px rgba(26, 39, 49, .18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: companyProfileFloat 6s ease-in-out infinite;
}
.company-profile-float-card i {
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #465b69, #24333e);
  box-shadow: 0 10px 22px rgba(31,44,54,.22);
}
.company-profile-float-card strong {
  display: block;
  margin-bottom: 7px;
  color: #1d2b35;
  font-size: 1.05rem;
}
.company-profile-float-card span {
  color: #65737d;
  font-size: .9rem;
  line-height: 1.6;
}
.company-profile-content {
  height: 100%;
  padding: 24px 0 24px 28px;
}
.company-profile-content h3 {
  margin-bottom: 18px;
  color: #1d2b35;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.32;
}
.company-profile-content > p {
  margin-bottom: 26px;
  color: #60707b;
  font-size: 1.02rem;
  line-height: 1.9;
}
.company-strength-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.company-strength-item {
  position: relative;
  min-height: 154px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(60, 79, 93, .12);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 34px rgba(29, 43, 53, .07);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.company-strength-item::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(229,138,31,.08);
  transition: transform .4s ease;
}
.company-strength-item:hover {
  transform: translateY(-6px);
  border-color: rgba(229,138,31,.34);
  box-shadow: 0 20px 42px rgba(29, 43, 53, .12);
}
.company-strength-item:hover::after {
  transform: scale(1.35);
}
.company-strength-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #f0a041, #b9650b);
  box-shadow: 0 12px 24px rgba(185,101,11,.20);
}
.company-strength-item h4 {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: #25343f;
  font-size: 1.02rem;
  font-weight: 800;
}
.company-strength-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6b7882;
  font-size: .9rem;
  line-height: 1.65;
}
.company-capability-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 30px;
  border: 1px solid rgba(60,79,93,.12);
  border-radius: 20px;
  background: #26343e;
  box-shadow: 0 18px 38px rgba(25,38,48,.14);
  overflow: hidden;
}
.company-capability-item {
  padding: 20px 16px;
  text-align: center;
  color: #fff;
}
.company-capability-item + .company-capability-item {
  border-left: 1px solid rgba(255,255,255,.10);
}
.company-capability-item strong {
  display: block;
  margin-bottom: 7px;
  color: #f4a84d;
  font-size: 1.03rem;
}
.company-capability-item span {
  color: rgba(255,255,255,.76);
  font-size: .84rem;
}
.company-profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.company-profile-primary-btn,
.company-profile-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, color .3s ease, background .3s ease;
}
.company-profile-primary-btn {
  color: #fff;
  background: linear-gradient(135deg, #f0a041, #b9650b);
  box-shadow: 0 13px 27px rgba(185,101,11,.24);
}
.company-profile-primary-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(185,101,11,.32);
}
.company-profile-secondary-btn {
  color: #324550;
  border: 1px solid rgba(50,69,80,.18);
  background: rgba(255,255,255,.72);
}
.company-profile-secondary-btn:hover {
  color: #b9650b;
  border-color: rgba(229,138,31,.34);
  background: #fff;
  transform: translateY(-3px);
}
@keyframes companyProfileRing {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-18px,16px,0) scale(1.04); }
}
@keyframes companyProfileFloat {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-12px,0); }
}
@media (max-width: 991.98px) {
  .company-profile-heading { text-align: center; margin-left: auto; margin-right: auto; }
  .company-profile-eyebrow { justify-content: center; }
  .company-profile-lead { margin-left: auto; margin-right: auto; }
  .company-profile-visual { min-height: 520px; margin-bottom: 22px; }
  .company-profile-content { padding-left: 0; }
}
@media (max-width: 767.98px) {
  .company-profile-visual { min-height: 460px; padding: 0 18px 24px 0; }
  .company-profile-main-link,
  .company-profile-main-image { min-height: 440px; }
  .company-profile-float-card { top: 22px; width: 176px; padding: 16px; }
  .company-profile-image-caption { left: 22px; right: 22px; bottom: 22px; }
  .company-strength-list { grid-template-columns: 1fr; }
  .company-capability-strip { grid-template-columns: 1fr; }
  .company-capability-item + .company-capability-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.10); }
  .company-profile-actions { align-items: stretch; }
  .company-profile-primary-btn,
  .company-profile-secondary-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .company-profile-section::after,
  .company-profile-float-card,
  .company-profile-main-link::after,
  .company-profile-main-image,
  .company-profile-image-arrow,
  .company-strength-item { animation: none !important; transition: none !important; }
}
html[data-cs-theme="cs_dark"] .company-profile-section {
  background:
          radial-gradient(circle at 8% 12%, rgba(229,138,31,.12), transparent 28%),
          radial-gradient(circle at 92% 82%, rgba(94,118,135,.13), transparent 32%),
          linear-gradient(180deg, #11181e 0%, #19232b 100%) !important;
}
html[data-cs-theme="cs_dark"] .company-profile-title,
html[data-cs-theme="cs_dark"] .company-profile-content h3,
html[data-cs-theme="cs_dark"] .company-strength-item h4 { color: #f0f3f5; }
html[data-cs-theme="cs_dark"] .company-profile-lead,
html[data-cs-theme="cs_dark"] .company-profile-content > p,
html[data-cs-theme="cs_dark"] .company-strength-item p { color: #aeb8c0; }
html[data-cs-theme="cs_dark"] .company-strength-item,
html[data-cs-theme="cs_dark"] .company-profile-float-card,
html[data-cs-theme="cs_dark"] .company-profile-secondary-btn {
  border-color: rgba(216,222,227,.13);
  background: rgba(31,43,52,.88);
}
html[data-cs-theme="cs_dark"] .company-profile-float-card strong { color: #f0f3f5; }
html[data-cs-theme="cs_dark"] .company-profile-float-card span { color: #aeb8c0; }
html[data-cs-theme="cs_dark"] .company-profile-secondary-btn { color: #e8edf0; }

                                               .qualification-section {
                                                 position: relative;
                                                 overflow: hidden;
                                                 padding: 76px 0 84px !important;
                                                 background:
                                                         radial-gradient(circle at 50% -18%, rgba(255,255,255,.98), transparent 42%),
                                                         linear-gradient(180deg, #f9fbfe 0%, #f3f7fc 100%);
                                                 border-top: 1px solid #edf2f7;
                                                 border-bottom: 1px solid #e9f0f7;
                                               }
.qualification-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
          linear-gradient(rgba(50, 92, 133, .035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(50, 92, 133, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
}
.qualification-section .qualification-container {
  position: relative;
  z-index: 1;
  width: min(1880px, 100%);
  margin: 0 auto;
  padding: 0 58px;
}
.qualification-header {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}
.qualification-header h2 {
  margin: 0 0 16px;
  color: #16314c;
  font-size: clamp(2.15rem, 3.1vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.qualification-header .qualification-en-title {
  display: block;
  color: #8391a3;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.qualification-header .qualification-title-line {
  display: block;
  width: 54px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #168fe8, #6bc2ff);
}
.qualification-slider-shell {
  position: relative;
  padding: 4px 0 8px;
}
.qualification-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 8px 28px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
}
.qualification-viewport::-webkit-scrollbar { display: none; }
.qualification-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}
.qualification-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 22.5%;
  gap: 30px;
  width: max-content;
  min-width: 100%;
}
.qualification-card {
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  min-width: 0;
  border: 1px solid #d7e6f4;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 38px rgba(45, 77, 108, .08);
  transition: transform .42s cubic-bezier(.2,.75,.25,1), box-shadow .42s ease, border-color .42s ease;
}
.qualification-card:hover {
  z-index: 2;
  transform: translateY(-11px);
  border-color: #9fccef;
  box-shadow: 0 26px 58px rgba(41, 94, 140, .16);
}
.qualification-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.qualification-figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 28px 24px 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}
.qualification-figure::before {
  content: "";
  position: absolute;
  top: -38%;
  left: -62%;
  width: 34%;
  height: 180%;
  z-index: 2;
  pointer-events: none;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transition: left .78s ease;
}
.qualification-card:hover .qualification-figure::before { left: 138%; }
.qualification-figure img {
  display: block;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 720 / 980;
  object-fit: contain;
  filter: saturate(.98) contrast(1.01);
  transform: translateZ(0);
  transition: transform .62s cubic-bezier(.2,.75,.25,1), filter .35s ease;
}
.qualification-card:hover .qualification-figure img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.03);
}
.qualification-overlay {
  position: absolute;
  inset: 28px 24px 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(20, 72, 111, .15);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  transition: opacity .35s ease;
}
.qualification-overlay span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #168fe8;
  box-shadow: 0 14px 30px rgba(22, 143, 232, .28);
  transform: translateY(10px) scale(.9);
  transition: transform .35s ease;
}
.qualification-card:hover .qualification-overlay { opacity: 1; }
.qualification-card:hover .qualification-overlay span { transform: translateY(0) scale(1); }
.qualification-card-body {
  margin-top: auto;
  padding: 18px 20px 24px;
  text-align: center;
}
.qualification-card h3 {
  margin: 0;
  overflow: hidden;
  color: #14304c;
  font-size: clamp(1rem, 1.25vw, 1.32rem);
  font-weight: 800;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .3s ease;
}
.qualification-card:hover h3 { color: #0f84d7; }
.qualification-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #279cf0, #087ed6);
  box-shadow: 0 18px 38px rgba(14, 128, 213, .24);
  transform: translateY(-50%);
  transition: box-shadow .28s ease, background .28s ease, transform .28s ease;
}
.qualification-prev { left: -24px; }
.qualification-next { right: -24px; }
.qualification-arrow:hover,
.qualification-arrow:focus-visible {
  color: #fff;
  background: linear-gradient(145deg, #41adf7, #087ed6);
  box-shadow: 0 22px 44px rgba(14, 128, 213, .34);
  transform: translateY(-50%) scale(1.07);
  outline: none;
}
.qualification-arrow:active { transform: translateY(-50%) scale(.96); }
.qualification-arrow i { font-size: 1.65rem; }
.qualification-progress {
  width: min(360px, 72%);
  height: 4px;
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: #dfeaf4;
}
.qualification-progress span {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #118ee8, #64c2ff);
  transform: translateX(0);
  transition: width .3s ease, transform .25s ease;
}
.qualification-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  text-align: center;
}
.qualification-footer p {
  margin: 0;
  color: #8090a0;
  font-size: .9rem;
}
.qualification-footer p i { margin-right: 7px; color: #168fe8; }
.qualification-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0d7fcd;
  font-weight: 700;
  text-decoration: none;
}
.qualification-more-btn i { transition: transform .28s ease; }
.qualification-more-btn:hover { color: #086aa9; }
.qualification-more-btn:hover i { transform: translateX(5px); }

@media (max-width: 1399.98px) {
  .qualification-section .qualification-container { padding: 0 46px; }
  .qualification-track { grid-auto-columns: 29.2%; gap: 24px; }
}
@media (max-width: 991.98px) {
  .qualification-section { padding: 62px 0 70px !important; }
  .qualification-section .qualification-container { padding: 0 32px; }
  .qualification-header { margin-bottom: 38px; }
  .qualification-track { grid-auto-columns: 46%; gap: 20px; }
  .qualification-arrow { width: 58px; height: 58px; }
  .qualification-prev { left: -14px; }
  .qualification-next { right: -14px; }
}
@media (max-width: 575.98px) {
  .qualification-section .qualification-container { padding: 0 18px; }
  .qualification-track { grid-auto-columns: 82%; gap: 16px; }
  .qualification-viewport { padding-left: 4px; padding-right: 4px; }
  .qualification-card { border-radius: 22px; }
  .qualification-figure { padding: 22px 18px 10px; }
  .qualification-card-body { padding: 16px 16px 22px; }
  .qualification-arrow { width: 48px; height: 48px; }
  .qualification-arrow i { font-size: 1.2rem; }
  .qualification-prev { left: -8px; }
  .qualification-next { right: -8px; }
  .qualification-footer { flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .qualification-card,
  .qualification-figure::before,
  .qualification-figure img,
  .qualification-overlay,
  .qualification-overlay span,
  .qualification-arrow,
  .qualification-progress span,
  .qualification-more-btn i { transition: none !important; }
}

                                                    /* 资质展示尺寸优化：桌面端一屏规则展示 4 张 */
                                                  .qualification-section {
                                                    padding: 58px 0 66px !important;
                                                  }
.qualification-section .qualification-container {
  width: min(1460px, 100%);
  padding: 0 64px;
}
.qualification-header {
  margin-bottom: 34px;
}
.qualification-header h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 2.65vw, 2.8rem);
}
.qualification-header .qualification-en-title {
  font-size: clamp(.9rem, 1.05vw, 1.08rem);
  letter-spacing: .13em;
}
.qualification-header .qualification-title-line {
  margin-top: 16px;
}
.qualification-slider-shell {
  padding: 2px 0 4px;
}
.qualification-viewport {
  padding: 14px 4px 22px;
}
.qualification-track {
  width: 100%;
  min-width: 100%;
  grid-auto-columns: calc((100% - 66px) / 4);
  gap: 22px;
}
.qualification-card {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(45, 77, 108, .075);
}
.qualification-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(41, 94, 140, .14);
}
.qualification-figure {
  min-height: 330px;
  padding: 18px 16px 8px;
}
.qualification-figure img {
  width: auto;
  max-width: 100%;
  height: 310px;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
}
.qualification-overlay {
  inset: 18px 16px 8px;
}
.qualification-overlay span {
  width: 50px;
  height: 50px;
}
.qualification-card-body {
  padding: 14px 15px 18px;
}
.qualification-card h3 {
  font-size: clamp(.94rem, 1vw, 1.08rem);
  line-height: 1.4;
}
.qualification-arrow {
  width: 54px;
  height: 54px;
}
.qualification-arrow i {
  font-size: 1.25rem;
}
.qualification-prev { left: -22px; }
.qualification-next { right: -22px; }
.qualification-progress {
  width: min(300px, 64%);
  margin-top: 16px;
}
.qualification-footer {
  margin-top: 18px;
}

@media (max-width: 1199.98px) {
  .qualification-section .qualification-container { padding: 0 48px; }
  .qualification-track {
    grid-auto-columns: calc((100% - 40px) / 3);
    gap: 20px;
  }
  .qualification-figure { min-height: 310px; }
  .qualification-figure img { height: 290px; }
  .qualification-prev { left: -18px; }
  .qualification-next { right: -18px; }
}
@media (max-width: 991.98px) {
  .qualification-section { padding: 50px 0 58px !important; }
  .qualification-section .qualification-container { padding: 0 34px; }
  .qualification-header { margin-bottom: 28px; }
  .qualification-track {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px;
  }
  .qualification-figure { min-height: 300px; }
  .qualification-figure img { height: 280px; }
  .qualification-arrow { width: 48px; height: 48px; }
  .qualification-prev { left: -14px; }
  .qualification-next { right: -14px; }
}
@media (max-width: 575.98px) {
  .qualification-section .qualification-container { padding: 0 18px; }
  .qualification-track {
    grid-auto-columns: 88%;
    gap: 14px;
  }
  .qualification-viewport { padding: 10px 2px 18px; }
  .qualification-figure {
    min-height: 286px;
    padding: 16px 14px 8px;
  }
  .qualification-figure img { height: 268px; }
  .qualification-card-body { padding: 13px 14px 17px; }
  .qualification-arrow { width: 44px; height: 44px; }
  .qualification-prev { left: -8px; }
  .qualification-next { right: -8px; }
}
.company-profile-industry {
  margin-top: 24px;
  margin-bottom: 15px;
}

.company-profile-industry h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.company-profile-industry > p {
  margin-bottom: 14px;
  color: var(--para-color, #66727d);
  line-height: 1.8;
}

.company-profile-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.company-profile-industry-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(36, 51, 63, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--heading-color, #263541);
  font-size: 13px;
  font-weight: 600;
}
/*导航
 */
/* =====================================================
   长下拉菜单完整显示优化
===================================================== */

/* 防止导航父容器裁剪二级菜单 */
@media (min-width: 992px) {
  .spray-navbar,
  .spray-navbar > .container-xl,
  .spray-navbar .offcanvas,
  .spray-navbar .offcanvas-body,
  .spray-navbar .navbar-nav,
  .spray-navbar .nav-item,
  .spray-navbar .menu-item {
    overflow: visible !important;
  }

  .spray-navbar .nav_ul > li {
    position: relative;
  }

  /*
   * 二级菜单基础样式。
   * 限制最大高度，极端情况下允许内部滚动。
   */
  .spray-navbar .dropdown-menu.custom-dropdown {
    top: calc(100% + 12px) !important;
    left: 0;
    right: auto;

    width: max-content;
    min-width: 280px;
    max-width: min(720px, calc(100vw - 32px));
    max-height: calc(100vh - 130px);

    margin: 0 !important;
    padding: 14px;

    overflow-x: hidden;
    overflow-y: auto;

    border: 1px solid rgba(38, 53, 65, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 55px rgba(25, 38, 48, 0.18);

    scrollbar-width: thin;
    scrollbar-color:
            rgba(38, 53, 65, 0.25)
            transparent;
  }

  /*
   * 子栏目较多时自动使用两列。
   * is-long-menu 类由后面的 JavaScript 自动添加。
   */
  .spray-navbar
  .menu-item-has-children:hover
  > .dropdown-menu.custom-dropdown.is-long-menu,

  .spray-navbar
  .menu-item-has-children:focus-within
  > .dropdown-menu.custom-dropdown.is-long-menu,

  .spray-navbar
  .dropdown:hover
  > .dropdown-menu.custom-dropdown.is-long-menu,

  .spray-navbar
  .dropdown:focus-within
  > .dropdown-menu.custom-dropdown.is-long-menu,

  .spray-navbar
  .dropdown-menu.custom-dropdown.is-long-menu.show {
    display: grid !important;
    grid-template-columns: repeat(
            2,
            minmax(230px, 1fr)
        );
    align-items: stretch;
    gap: 4px 10px;
    min-width: 520px;
  }

  /* 避免菜单项跨列或被截断 */
  .spray-navbar
  .dropdown-menu.custom-dropdown
  > li {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    break-inside: avoid;
  }

  .spray-navbar
  .dropdown-menu.custom-dropdown
  .dropdown-item {
    display: flex !important;
    align-items: center;

    width: 100%;
    min-height: 48px;
    padding: 11px 14px !important;

    border-radius: 10px;

    color: #2d3c48 !important;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;

    white-space: normal;
    overflow-wrap: anywhere;

    transition:
            color 0.2s ease,
            background-color 0.2s ease,
            transform 0.2s ease;
  }

  .spray-navbar
  .dropdown-menu.custom-dropdown
  .dropdown-item:hover,

  .spray-navbar
  .dropdown-menu.custom-dropdown
  .dropdown-item:focus,

  .spray-navbar
  .dropdown-menu.custom-dropdown
  .dropdown-item.active {
    color: var(
            --industrial-accent-dark,
            #b9650b
    ) !important;

    background: var(
            --industrial-accent-soft,
            #fff1df
    ) !important;

    transform: translateX(3px);
  }

  /*
   * 靠近浏览器右侧的菜单自动右对齐，
   * 防止菜单超出屏幕。
   */
  .spray-navbar
  .dropdown-menu.custom-dropdown.dropdown-align-end {
    right: 0 !important;
    left: auto !important;
  }

  /* 滚动条美化 */
  .spray-navbar
  .dropdown-menu.custom-dropdown::-webkit-scrollbar {
    width: 7px;
  }

  .spray-navbar
  .dropdown-menu.custom-dropdown::-webkit-scrollbar-track {
    background: transparent;
  }

  .spray-navbar
  .dropdown-menu.custom-dropdown::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(38, 53, 65, 0.22);
  }

  .spray-navbar
  .dropdown-menu.custom-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(38, 53, 65, 0.38);
  }
}

/* =====================================================
   手机和平板端
===================================================== */

@media (max-width: 991.98px) {
  .spray-navbar .offcanvas {
    overflow: hidden;
  }

  .spray-navbar .offcanvas-body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  /*
   * 手机端二级菜单放回正常文档流，
   * 防止绝对定位导致内容被遮挡。
   */
  .spray-navbar
  .dropdown-menu.custom-dropdown {
    position: static !important;
    inset: auto !important;

    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    max-height: none !important;

    margin: 6px 0 14px !important;
    padding: 8px !important;

    overflow: visible !important;
    transform: none !important;

    border: 1px solid rgba(38, 53, 65, 0.1);
    border-radius: 13px;
    background: rgba(38, 53, 65, 0.035);
    box-shadow: none !important;
  }

  .spray-navbar
  .dropdown-menu.custom-dropdown.is-long-menu.show {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .spray-navbar
  .dropdown-menu.custom-dropdown
  .dropdown-item {
    display: block;
    width: 100%;
    padding: 11px 13px !important;

    border-radius: 9px;

    white-space: normal;
    line-height: 1.45;
  }
}
/*
视频模块样式
 */
/* =====================================================
   企业视频播放板块
===================================================== */

.industrial-video-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
          radial-gradient(
                  circle at 12% 14%,
                  rgba(226, 132, 31, 0.12),
                  transparent 28%
          ),
          linear-gradient(
                  135deg,
                  #101a23 0%,
                  #172630 55%,
                  #0f1820 100%
          );
}

.industrial-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
          linear-gradient(
                  rgba(255, 255, 255, 0.08) 1px,
                  transparent 1px
          ),
          linear-gradient(
                  90deg,
                  rgba(255, 255, 255, 0.08) 1px,
                  transparent 1px
          );
  background-size: 72px 72px;
}

.industrial-video-section::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
          0 0 0 70px rgba(255, 255, 255, 0.025),
          0 0 0 140px rgba(255, 255, 255, 0.018);
}

.industrial-video-heading {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto 46px;
  text-align: center;
}

.industrial-video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #f0a64b;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.industrial-video-heading h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.16;
}

.industrial-video-heading h2 span {
  color: #f0a64b;
}

.industrial-video-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.9;
}

.industrial-video-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

/* 视频封面 */

.industrial-video-cover {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: #111a22;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  text-align: left;
  cursor: pointer;
}

.industrial-video-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
          transform 0.8s ease,
          filter 0.5s ease;
}

.industrial-video-cover:hover > img {
  transform: scale(1.045);
  filter: brightness(1.06);
}

.industrial-video-shade {
  position: absolute;
  inset: 0;
  background:
          linear-gradient(
                  180deg,
                  rgba(7, 14, 20, 0.22) 0%,
                  rgba(7, 14, 20, 0.1) 36%,
                  rgba(7, 14, 20, 0.9) 100%
          );
}

.industrial-video-topbar {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.industrial-video-label,
.industrial-video-duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 23, 32, 0.58);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
}

.industrial-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: calc(100% - 40px);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}

.industrial-video-play-ring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: #e58a1f;
  box-shadow:
          0 0 0 14px rgba(229, 138, 31, 0.16),
          0 15px 40px rgba(0, 0, 0, 0.28);
  transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
}

.industrial-video-play-ring::before,
.industrial-video-play-ring::after {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(240, 166, 75, 0.36);
  border-radius: 50%;
  animation: industrialVideoPulse 2.4s infinite;
}

.industrial-video-play-ring::after {
  animation-delay: 1.2s;
}

.industrial-video-play-ring i {
  margin-left: 5px;
  color: #fff;
  font-size: 28px;
}

.industrial-video-cover:hover
.industrial-video-play-ring {
  transform: scale(1.08);
  box-shadow:
          0 0 0 18px rgba(229, 138, 31, 0.2),
          0 18px 45px rgba(0, 0, 0, 0.36);
}

.industrial-video-play strong {
  margin-bottom: 5px;
  font-size: 23px;
}

.industrial-video-play small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.industrial-video-caption {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}

.industrial-video-caption > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.industrial-video-caption small {
  color: #f0a64b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.industrial-video-caption strong {
  font-size: 20px;
}

.industrial-video-caption > i {
  font-size: 22px;
}

/* 右侧内容 */

.industrial-video-info {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background:
          linear-gradient(
                  145deg,
                  rgba(255, 255, 255, 0.09),
                  rgba(255, 255, 255, 0.035)
          );
  backdrop-filter: blur(14px);
}

.industrial-video-info-head > span {
  display: inline-block;
  margin-bottom: 12px;
  color: #f0a64b;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.industrial-video-info-head h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 27px;
  font-weight: 760;
  line-height: 1.4;
}

.industrial-video-info-head p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.85;
}

.industrial-video-features {
  display: grid;
  gap: 13px;
}

.industrial-video-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  transition:
          background-color 0.25s ease,
          border-color 0.25s ease,
          transform 0.25s ease;
}

.industrial-video-feature:hover {
  border-color: rgba(240, 166, 75, 0.26);
  background: rgba(240, 166, 75, 0.08);
  transform: translateX(4px);
}

.industrial-video-feature > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(229, 138, 31, 0.15);
  color: #f0a64b;
  font-size: 19px;
}

.industrial-video-feature h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.industrial-video-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.industrial-video-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  padding: 12px 18px;
  border: 0;
  border-radius: 13px;
  background: #e58a1f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition:
          background-color 0.25s ease,
          transform 0.25s ease,
          box-shadow 0.25s ease;
}

.industrial-video-button > span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.industrial-video-button:hover {
  background: #c86f12;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(229, 138, 31, 0.22);
}

/* 视频弹窗 */

/* =====================================================
   视频弹窗完整显示修复
===================================================== */

.industrial-video-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  width: 100%;
  height: 100dvh;
  padding: 24px;

  overflow-x: hidden;
  overflow-y: auto;

  visibility: hidden;
  opacity: 0;

  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;

  transition:
          opacity 0.3s ease,
          visibility 0.3s ease;
}

.industrial-video-modal.is-open {
  visibility: visible;
  opacity: 1;
}

/* 背景遮罩固定覆盖整个窗口 */
.industrial-video-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;

  background: rgba(4, 9, 13, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* 弹窗主体 */
.industrial-video-modal-dialog {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  width: min(1100px, 100%);
  max-height: calc(100dvh - 48px);
  margin: auto;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;

  background: #111b23;

  box-shadow:
          0 40px 100px rgba(0, 0, 0, 0.58);

  transform: translateY(25px) scale(0.97);

  transition: transform 0.3s ease;
}

.industrial-video-modal.is-open
.industrial-video-modal-dialog {
  transform: translateY(0) scale(1);
}

/* 标题栏固定在弹窗顶部 */
.industrial-video-modal-header {
  position: relative;
  z-index: 3;

  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  min-height: 82px;
  padding: 16px 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #111b23;
}

.industrial-video-modal-header > div {
  min-width: 0;
}

.industrial-video-modal-header span {
  display: block;

  margin-bottom: 3px;

  color: #f0a64b;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.industrial-video-modal-header h3 {
  margin: 0;

  overflow: hidden;

  color: #fff;

  font-size: 18px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 关闭按钮 */
.industrial-video-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 46px;
  height: 46px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.07);
  color: #fff;

  font-size: 20px;
  line-height: 1;

  cursor: pointer;

  transition:
          background-color 0.2s ease,
          border-color 0.2s ease,
          transform 0.2s ease;
}

.industrial-video-modal-close:hover,
.industrial-video-modal-close:focus {
  border-color: #e58a1f;
  background: #e58a1f;
  color: #fff;

  transform: rotate(90deg);
}

/* 视频播放区域 */
.industrial-video-modal-player {
  position: relative;

  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;

  min-height: 0;
  max-height: calc(100dvh - 130px);

  overflow: hidden;

  background: #000;
}

/*
 * 不再强制用固定高度撑大弹窗。
 * 视频始终完整包含在可视区域内。
 */
.industrial-video-modal-player video {
  display: block;

  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 130px);

  aspect-ratio: 16 / 9;

  object-fit: contain;

  background: #000;
}

/* 弹窗打开后锁定页面 */
body.industrial-video-modal-open {
  overflow: hidden;
}

/* WordPress 登录工具栏兼容 */
body.admin-bar .industrial-video-modal {
  top: 32px;
  height: calc(100dvh - 32px);
}

body.admin-bar
.industrial-video-modal-dialog {
  max-height: calc(100dvh - 80px);
}

body.admin-bar
.industrial-video-modal-player,
body.admin-bar
.industrial-video-modal-player video {
  max-height: calc(100dvh - 162px);
}

/* 平板 */
@media (max-width: 991.98px) {
  .industrial-video-modal {
    padding: 18px;
  }

  .industrial-video-modal-dialog {
    width: min(920px, 100%);
    max-height: calc(100dvh - 36px);

    border-radius: 18px;
  }

  .industrial-video-modal-header {
    min-height: 72px;
    padding: 13px 16px;
  }

  .industrial-video-modal-player,
  .industrial-video-modal-player video {
    max-height: calc(100dvh - 108px);
  }

  body.admin-bar
  .industrial-video-modal-dialog {
    max-height: calc(100dvh - 68px);
  }

  body.admin-bar
  .industrial-video-modal-player,
  body.admin-bar
  .industrial-video-modal-player video {
    max-height: calc(100dvh - 140px);
  }
}

/* WordPress 手机端工具栏高度为 46px */
@media (max-width: 782px) {
  body.admin-bar .industrial-video-modal {
    top: 46px;
    height: calc(100dvh - 46px);
  }

  body.admin-bar
  .industrial-video-modal-dialog {
    max-height: calc(100dvh - 70px);
  }

  body.admin-bar
  .industrial-video-modal-player,
  body.admin-bar
  .industrial-video-modal-player video {
    max-height: calc(100dvh - 136px);
  }
}

/* 手机 */
@media (max-width: 575.98px) {
  .industrial-video-modal {
    align-items: center;

    padding: 10px;
  }

  .industrial-video-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);

    border-radius: 14px;
  }

  .industrial-video-modal-header {
    min-height: 62px;
    padding: 10px 12px;
  }

  .industrial-video-modal-header span {
    font-size: 9px;
  }

  .industrial-video-modal-header h3 {
    max-width: calc(100vw - 100px);

    font-size: 15px;
  }

  .industrial-video-modal-close {
    width: 40px;
    height: 40px;

    font-size: 17px;
  }

  .industrial-video-modal-player {
    width: 100%;
    max-height: calc(100dvh - 82px);
  }

  .industrial-video-modal-player video {
    width: 100%;
    max-height: calc(100dvh - 82px);

    aspect-ratio: 16 / 9;
  }

  body.admin-bar
  .industrial-video-modal-dialog {
    max-height: calc(100dvh - 66px);
  }

  body.admin-bar
  .industrial-video-modal-player,
  body.admin-bar
  .industrial-video-modal-player video {
    max-height: calc(100dvh - 128px);
  }
}
/*
表单样式
 */
/* =====================================================
   Contact Form 7 原表单样式兼容
===================================================== */

#contactForm {
  position: relative;
}

#contactForm .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

#contactForm .wpcf7-text,
#contactForm .wpcf7-email,
#contactForm .wpcf7-tel,
#contactForm .wpcf7-textarea {
  display: block;
  width: 100%;
}

/* 保持原输入框视觉效果 */
#contactForm .form-control {
  min-height: 56px;
}

#contactForm textarea.form-control {
  min-height: 132px;
  resize: vertical;
}

/* 错误输入框 */
#contactForm .wpcf7-not-valid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08) !important;
}

/* 字段错误提示 */
#contactForm .wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  color: #dc3545;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

/* 提交结果提示 */
#contactForm .wpcf7-response-output {
  margin: 22px 0 0 !important;
  padding: 13px 16px !important;
  border-width: 1px !important;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.7;
}

#contactForm.sent .wpcf7-response-output {
  border-color: #198754 !important;
  background: rgba(25, 135, 84, 0.08);
  color: #146c43;
}

#contactForm.invalid .wpcf7-response-output,
#contactForm.failed .wpcf7-response-output,
#contactForm.spam .wpcf7-response-output {
  border-color: #dc3545 !important;
  background: rgba(220, 53, 69, 0.07);
  color: #b02a37;
}

/* 提交按钮保持原宽度 */
#contactForm .wpcf7-submit {
  width: auto;
  min-height: 50px;
  border: 0;
}

/* 加载图标 */
#contactForm .wpcf7-spinner {
  margin: 0 0 0 12px;
  vertical-align: middle;
}

/* 防止 CF7 默认段落产生额外空白 */
#contactForm p {
  margin-bottom: 0;
}
/* =====================================================
   联系我们区域紧凑布局
===================================================== */

#contact .contact-layout-row {
  --contact-radius: 22px;
}

/* 左右两栏保持等高 */
#contact .contact-layout-row > [class*="col-"] {
  display: flex;
}

/* =====================================================
   左侧联系信息
===================================================== */

#contact .contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  padding: 26px;
  border: 1px solid rgba(37, 53, 65, 0.1);
  border-radius: var(--contact-radius);
  background:
          linear-gradient(
                  145deg,
                  rgba(255, 255, 255, 0.88),
                  rgba(244, 247, 249, 0.94)
          );
  box-shadow: 0 20px 50px rgba(28, 42, 53, 0.07);
}

#contact .contact-info-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(37, 53, 65, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  transition:
          transform 0.25s ease,
          border-color 0.25s ease,
          box-shadow 0.25s ease;
}

#contact .contact-info-item:hover {
  border-color: rgba(229, 138, 31, 0.25);
  box-shadow: 0 12px 26px rgba(28, 42, 53, 0.07);
  transform: translateY(-2px);
}

#contact .contact-iconbg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  border: 1px dashed rgba(36, 52, 64, 0.55);
  border-radius: 50%;
  background: #344955;
  color: #fff;
  box-shadow:
          0 0 0 7px rgba(52, 73, 85, 0.07);
}

#contact .contact-iconbg i {
  font-size: 24px;
}

#contact .contact-info-content {
  min-width: 0;
}

#contact .contact-info-content h3 {
  margin: 0 0 7px;
  padding: 0;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.3;
}

#contact .contact-info-content p {
  margin: 0;
  line-height: 1.65;
}

#contact .contact-info-content p + p {
  margin-top: 3px;
}

#contact .contact-info-content a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

#contact .contact-info-content a:hover {
  color: var(--industrial-accent-dark, #b9650b);
}

#contact .contact-info-bottom {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding: 15px 17px;
  border-radius: 14px;
  background: #263944;
  color: #fff;
}

#contact .contact-info-bottom > i {
  color: #f0a64b;
  font-size: 22px;
}

#contact .contact-info-bottom strong,
#contact .contact-info-bottom span {
  display: block;
}

#contact .contact-info-bottom strong {
  margin-bottom: 2px;
  font-size: 14px;
}

#contact .contact-info-bottom span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

/* =====================================================
   右侧表单面板
===================================================== */

#contact .contact-form-panel {
  height: 100%;
  padding: 28px 30px;
  border: 1px solid rgba(37, 53, 65, 0.1);
  border-radius: var(--contact-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(28, 42, 53, 0.07);
}

#contact .contact-form-heading {
  margin-bottom: 20px;
}

#contact .contact-form-kicker {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--industrial-accent-dark, #b9650b);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

#contact .contact-form-heading h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 780;
}

#contact .contact-form-heading p {
  max-width: 690px;
  margin: 0;
  line-height: 1.7;
}

/* =====================================================
   Contact Form 7 间距重置
===================================================== */

#huacaiCf7Form {
  position: relative;
  margin: 0;
}

/*
 * CF7 会自动插入 p 和 br。
 * 清除它们造成的额外垂直间距。
 */
#huacaiCf7Form p {
  margin: 0 !important;
  padding: 0 !important;
}

#huacaiCf7Form br {
  display: none;
}

#huacaiCf7Form .huacai-cf7-grid {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 17px;
}

#huacaiCf7Form .huacai-form-field {
  height: 100%;
}

#huacaiCf7Form .huacai-form-field label {
  display: block;
  margin: 0 0 7px;
  color: #172633;
  font-size: 15px;
  line-height: 1.4;
}

#huacaiCf7Form .huacai-form-field label span {
  color: #d96c18;
}

#huacaiCf7Form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* 输入框 */
#huacaiCf7Form .form-control {
  display: block;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 12px 15px !important;
  border: 1px solid rgba(47, 64, 76, 0.18);
  border-radius: 11px !important;
  background: #f8fafb;
  color: #1d2c37;
  font-size: 15px;
  line-height: 1.45;
  box-shadow: none !important;
  transition:
          border-color 0.2s ease,
          background-color 0.2s ease,
          box-shadow 0.2s ease;
}

#huacaiCf7Form .form-control::placeholder {
  color: #7b858d;
  opacity: 1;
}

#huacaiCf7Form .form-control:hover {
  border-color: rgba(47, 64, 76, 0.3);
  background: #fff;
}

#huacaiCf7Form .form-control:focus {
  border-color: #e58a1f;
  background: #fff;
  box-shadow:
          0 0 0 4px rgba(229, 138, 31, 0.1) !important;
}

/* 留言框 */
#huacaiCf7Form textarea.form-control {
  min-height: 112px;
  max-height: 220px;
  resize: vertical;
}

/* 提交区域 */
#huacaiCf7Form .huacai-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
}

#huacaiCf7Form .wpcf7-submit {
  min-width: 170px;
  min-height: 48px;
  padding: 11px 26px !important;
  border: 0;
  font-size: 15px;
  font-weight: 700;
}

#huacaiCf7Form .huacai-form-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7b858d;
  font-size: 12px;
}

#huacaiCf7Form .huacai-form-hint i {
  color: #4e7563;
}

/* 错误提示 */
#huacaiCf7Form .wpcf7-not-valid-tip {
  display: block;
  margin: 5px 0 0;
  color: #d83d3d;
  font-size: 12px;
  line-height: 1.4;
}

#huacaiCf7Form .wpcf7-not-valid {
  border-color: #d83d3d !important;
  box-shadow:
          0 0 0 3px rgba(216, 61, 61, 0.08) !important;
}

/* 提交结果 */
#huacaiCf7Form .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 11px 14px !important;
  border-width: 1px !important;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
}

#huacaiCf7Form .wpcf7-spinner {
  margin: 0 0 0 8px;
}

/* =====================================================
   平板和手机
===================================================== */

@media (max-width: 991.98px) {
  #contact .contact-info-panel,
  #contact .contact-form-panel {
    height: auto;
  }

  #contact .contact-form-panel {
    padding: 25px;
  }
}

@media (max-width: 575.98px) {
  #contact .contact-info-panel,
  #contact .contact-form-panel {
    padding: 18px;
    border-radius: 17px;
  }

  #contact .contact-info-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
  }

  #contact .contact-iconbg {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  #contact .contact-iconbg i {
    font-size: 20px;
  }

  #contact .contact-info-content h3 {
    font-size: 17px;
  }

  #contact .contact-form-heading h3 {
    font-size: 24px;
  }

  #huacaiCf7Form .huacai-form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  #huacaiCf7Form .wpcf7-submit {
    width: 100%;
  }

  #huacaiCf7Form .huacai-form-hint {
    justify-content: center;
  }
}
.comment-form-customer-role,
.comment-form-rating {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.comment-form-customer-role label,
.comment-form-rating label {
  color: #172631;
  font-size: 13px;
  font-weight: 700;
}

.comment-form-customer-role input,
.comment-form-rating select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(28, 46, 58, 0.14);
  border-radius: 11px;
  background: #f5f7f8;
  color: #172631;
  outline: none;
}

.comment-form-customer-role input:focus,
.comment-form-rating select:focus {
  border-color: rgba(229, 138, 31, 0.55);
  background: #fff;
  box-shadow:
          0 0 0 3px
          rgba(229, 138, 31, 0.1);
}


/*增加

