/*--------------------------------------------------------------
  TABLE OF CONTENTS:
----------------------------------------------------------------

** - Utility
** - Common
** - Custom Cursor
** - Animations
** - Cards
** - Navigation
** - Home Showcase
** - Mobile Nav
** - Search Popup
** - Page Header
** - Main Slider
** - About
** - Services
** - ServiceS Details
** - Project
** - Project Details
** - Video
** - Funfact
** - Team
** - Team Details
** - Contact
** - Testimonial
** - Why Choose
** - Working Process
** - Blog
** - Blog List
** - Blog Standard
** - Blog Details
** - Feature
** - Pricing Plan
** - Faq
** - Gallery
** - History
** - Coming Soon
** - Products
** - Product Details
** - Cart
** - Checkout
** - Wishlist
** - Sign Up
** - Login
** - Privacy Policy
** - Error
** - Footer
** - Google Map

--------------------------------------------------------------*/

/***
=============================================
Common
=============================================
***/
:root {
  --cleanin-font: "Heebo", serif;
  --cleanin-font-two: "Exo", serif;
  --cleanin-base: #004a94;
  --cleanin-base-rgb: 0, 74, 148;
  --cleanin-black: #052944;
  --cleanin-black-rgb: 5, 41, 68;
  --cleanin-gray: #606060;
  --cleanin-gray-rgb: 96, 96, 96;
  --cleanin-white: #ffffff;
  --cleanin-white-rgb: 255, 255, 255;
  --cleanin-gray-bg: #f1f5f9;
  --cleanin-gray-bg-rgb: 241, 245, 249;
  --cleanin-bdr-color: #e5e5e5;
  --cleanin-bdr-color-rgb: 229, 229, 229;
  --cleanin-bdr-radius: 5px;
  --ae-page-bg-start: #f9fcff;
  --ae-page-bg-middle: #eef5ff;
  --ae-page-bg-end: #f7fbff;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--cleanin-font);
  color: var(--cleanin-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  background:
    radial-gradient(circle at top left, rgba(var(--cleanin-base-rgb), 0.13) 0%, rgba(var(--cleanin-base-rgb), 0) 20%),
    radial-gradient(circle at top right, rgba(var(--cleanin-base-rgb), 0.09) 0%, rgba(var(--cleanin-base-rgb), 0) 18%),
    linear-gradient(180deg, var(--ae-page-bg-start) 0%, var(--ae-page-bg-middle) 48%, var(--ae-page-bg-end) 100%);
}

body.locked {
  overflow: hidden;
}

body.ae-mobile-nav-open {
  overflow: hidden;
}

a {
  color: var(--cleanin-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--cleanin-font-two);
  color: var(--cleanin-black);
  margin: 0;
}

p {
  margin: 0;
  color: #000000;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding: 0px;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(var(--cleanin-white-rgb), 0.78) 0%, rgba(var(--cleanin-white-rgb), 0) 18%),
    radial-gradient(circle at 88% 24%, rgba(var(--cleanin-base-rgb), 0.06) 0%, rgba(var(--cleanin-base-rgb), 0) 16%),
    linear-gradient(180deg, rgba(var(--cleanin-white-rgb), 0.2) 0%, rgba(var(--cleanin-white-rgb), 0) 100%);
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1250px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/***
=============================================
Custom Cursor
=============================================
***/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--cleanin-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--cleanin-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--cleanin-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/***
=============================================
Sec Title Css
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -5px;
  padding-bottom: 25px;
  z-index: 1;
}

.sec-title__tagline {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.sec-title__tagline.center {
  justify-content: center;
}

.sec-title__tagline .icon-box {
  position: relative;
  display: block;
}

.sec-title__tagline .icon-box span::before {
  position: relative;
  display: inline-block;
  color: var(--cleanin-base);
  font-size: 18px;
  line-height: 18px;
  top: -3px;
  padding-right: 7px;
}

.sec-title__tagline .text {
  position: relative;
  display: block;
}

.sec-title__tagline .text h4 {
  color: var(--cleanin-base);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--cleanin-font-two);
}

.sec-title__title {
  font-size: 40px;
  line-height: 58px;
  font-weight: 700;
  text-transform: none;
  font-family: var(--cleanin-font-two);
}

/***
=============================================
   Thm Btn Css
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 14px;
  line-height: 55px;
  font-weight: 600;
  background: var(--cleanin-base);
  border-radius: 5px;
  padding: 0px 35px 0px;
  overflow: hidden;
  font-family: var(--cleanin-font);
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:hover {
  color: var(--cleanin-white);
}

.thm-btn i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  top: 1px;
  margin-left: 5px;
}

.hover-btn {
  background-color: var(--cleanin-black);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-radius: 5px 0px 0px 5px;
}

.hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 5px 5px 0;
}

.thm-btn:hover .hover-btn {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.site-button-secondry.theme-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  width: 100%;
  margin-left: 0;
  padding: 14px 24px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.18);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(var(--cleanin-white-rgb), 0.98) 0%,
    rgba(var(--cleanin-base-rgb), 0.08) 100%
  );
  box-shadow: 0 16px 32px rgba(var(--cleanin-black-rgb), 0.12);
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, background 0.3s ease;
}

.site-button-secondry.theme-cta-btn span,
.site-button-secondry.theme-cta-btn i {
  position: relative;
  z-index: 1;
}

.site-button-secondry.theme-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--cleanin-base) 0%,
    var(--cleanin-black) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-button-secondry.theme-cta-btn i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.site-button-secondry.theme-cta-btn:hover,
.site-button-secondry.theme-cta-btn:focus {
  color: var(--cleanin-white);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(var(--cleanin-black-rgb), 0.2);
  transform: translateY(-3px);
}

.site-button-secondry.theme-cta-btn:hover::before,
.site-button-secondry.theme-cta-btn:focus::before {
  opacity: 1;
}

.site-button-secondry.theme-cta-btn:hover i,
.site-button-secondry.theme-cta-btn:focus i {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .site-button-secondry.theme-cta-btn {
    min-height: 54px;
    padding: 12px 20px;
  }
}

/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--cleanin-base-rgb), 1);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--cleanin-base-rgb), 0.7);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--cleanin-base-rgb), 0.4);
  animation-delay: 0.4s;
}

@keyframes bouncing {
  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}

/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
  position: relative;
  display: block;
}

.rating-box a {
  position: relative;
  color: var(--cleanin-base);
}

.rating-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

/***
=============================================
xs sidebar
=============================================
***/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in 0.8s;
  -o-transition: all 0.4s ease-in 0.8s;
  transition: all 0.4s ease-in 0.8s;
  cursor: url(../images/icon/cross-out.png), pointer;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: 0.8;
  visibility: visible;
  -webkit-transition: all 0.8s ease-out 0s;
  -o-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--cleanin-base);
  border-color: var(--cleanin-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
  border-right: 5px solid rgba(var(--cleanin-white-rgb), 0.5);
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--cleanin-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in 0.3s;
  -o-transition: all 0.3s ease-in 0.3s;
  transition: all 0.3s ease-in 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type="text"],
.xs-sidebar-group .content-inner .form-inner .form-group input[type="email"],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--cleanin-white);
  color: var(--cleanin-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:hover {
  color: var(--cleanin-white);
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  .form-inner__btn:before {
  background-color: var(--cleanin-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}

.xs-sidebar-group .content-inner .form-inner .form-group button {
  position: relative;
  display: block;
}

.xs-sidebar-group
  .content-inner
  .form-inner
  .form-group
  button.thm-btn
  .hover-btn {
  background: var(--cleanin-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
  color: var(--cleanin-base);
}

.sidebar-contact-info {
  position: relative;
  display: block;
  padding-top: 43px;
}

.sidebar-contact-info ul {
  position: relative;
  display: block;
  padding-bottom: 22px;
}

.sidebar-contact-info ul li {
  position: relative;
  display: block;
  color: var(--cleanin-white);
  line-height: 30px;
}

.sidebar-contact-info ul li span {
  position: relative;
  display: inline-block;
  width: 25px;
}

.sidebar-contact-info ul li span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
}

.sidebar-contact-info ul li a {
  color: var(--cleanin-white);
}

.sidebar-contact-info ul li a:hover {
  color: var(--cleanin-base);
}

.xs-sidebar-group .content-inner .thm-social-link1 {
  overflow: hidden;
}

.thm-social-link1 {
  position: relative;
  display: block;
}

.thm-social-link1 ul {
  position: relative;
}

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.thm-social-link1 ul li:last-child {
  margin-right: 0;
}

.thm-social-link1 ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--cleanin-white-rgb), 0.1);
  border-radius: 50%;
  color: var(--cleanin-white);
  font-size: 15px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: var(--cleanin-base);
  border-radius: 50%;
  transition: 0.5s;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

.thm-social-link1 ul li a:hover {
  color: var(--cleanin-white);
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 40px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 0%;
  color: rgba(var(--cleanin-gray-rgb), 0.5);
  font-size: 16px;
  line-height: 45px;
  font-weight: 600;
  border: 1px solid rgba(var(--cleanin-gray-rgb), 0.5);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--cleanin-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--cleanin-white);
  background: var(--cleanin-base);
  border-color: var(--cleanin-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: rgba(var(--cleanin-gray-rgb), 0.5);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--cleanin-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--cleanin-gray-rgb), 0.5);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--cleanin-white);
}

/***
=============================================
Scroll To Top Css
=============================================
***/
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--cleanin-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--cleanin-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cleanin-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: rgba(var(--cleanin-base-rgb), 0.8);
  transition:
    transform 500ms ease,
    opacity 500ms ease;
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup form {
  position: absolute;
  max-width: 600px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  -webkit-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}

.search-active .search-popup form {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 600ms;
  transition-delay: 600ms;
  opacity: 1;
}

.search-popup .search-popup__group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .search-popup__group input {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 65px;
  color: var(--cleanin-black);
  height: 65px;
  width: 100%;
  padding: 0px 30px;
  background-color: var(--cleanin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 400;
  text-transform: capitalize;
  padding-right: 80px;
  outline: none;
  border: none;
  border-radius: 5px;
}

.search-popup button {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 65px;
  width: 65px;
  line-height: 65px;
  background: var(--cleanin-black);
  text-align: center;
  color: var(--cleanin-white);
  font-size: 20px;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px;
}

.search-popup button:hover {
  background: var(--cleanin-base);
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  margin: 0 auto;
  margin-top: -170px;
  border-radius: 50%;
  text-align: center;
  color: var(--cleanin-white);
  background-color: var(--cleanin-black);
  width: 70px;
  height: 70px;
  border: 1px solid rgba(var(--cleanin-white-rgb), 0.3);
  cursor: pointer;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-popup .close-search:hover {
  background-color: var(--cleanin-base);
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 900ms;
  transition-delay: 900ms;
}

.search-popup .close-search span {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  font-size: 20px;
  line-height: 70px;
  color: var(--cleanin-white);
  transform: rotate(45deg);
}

/***
=============================================
Common
=============================================
***/

.thm-dot-style1.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 33px;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot span {
  display: block;
  width: 40px;
  height: 6px;
  border: 1px solid rgba(var(--cleanin-black-rgb), 0.45);
  margin: 5px 7px;
  background: transparent;
  border-radius: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-dot-style1.owl-theme .owl-dots .owl-dot.active span,
.thm-dot-style1.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--cleanin-base);
  border-color: var(--cleanin-base);
}

/***
=============================================
Mobile Nav Css
=============================================
***/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition:
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    transform 500ms ease 500ms,
    visibility 500ms ease 500ms;
  transition:
    transform 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition:
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    transform 500ms ease 0ms,
    visibility 500ms ease 0ms;
  transition:
    transform 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--cleanin-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  border-right: 3px solid rgba(var(--cleanin-white-rgb), 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition:
    opacity 500ms ease 0ms,
    visibility 500ms ease 0ms,
    transform 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition:
    opacity 500ms ease 500ms,
    visibility 500ms ease 500ms,
    transform 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--cleanin-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--cleanin-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--cleanin-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--cleanin-white);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  height: 30px;
  background-color: var(--cleanin-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition:
    transform 500ms ease,
    -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--cleanin-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--cleanin-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--cleanin-white);
  -webkit-transition: 500ms;
  transition: 500ms;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--cleanin-white-rgb), 0.3);
  border-radius: 50%;
}

.mobile-nav__social a + a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--cleanin-base);
  background: var(--cleanin-white);
  border-color: var(--cleanin-white);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.mobile-nav__contact li {
  color: var(--cleanin-white);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: var(--cleanin-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--cleanin-base);
}

.mobile-nav__contact li > i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--cleanin-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  margin-right: 10px;
  color: var(--cleanin-white);
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

/***
=============================================
Home Showcase Css
=============================================
***/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.main-header-one__bottom .home-showcase .container {
  max-width: 1350px;
  width: 100%;
}

.home-showcase__inner {
  padding: 40px 42px 33px;
  background-color: var(--cleanin-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
  justify-content: center;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
  border: 2px solid rgba(var(--cleanin-base-rgb), 0.25);
  border-radius: 5px;
  padding: 10px 10px 16px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--cleanin-bdr-radius);
}

.home-showcase__image > img {
  width: 100%;
  border-radius: var(--cleanin-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover > img {
  filter: blur(2px);
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: scale(1, 0);
  transition:
    transform 500ms ease,
    opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
  background-color: rgba(var(--cleanin-black-rgb), 0.7);
  border-radius: var(--cleanin-bdr-radius);
}

.home-showcase__buttons__item {
  padding: 0px 17px 0px;
  width: 150px;
  text-align: center;
  color: var(--cleanin-white);
  background-color: var(--cleanin-base);
}

.home-showcase__buttons__item + .home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--cleanin-black);
  margin-top: 18px;
  text-transform: capitalize;
  font-family: var(--cleanin-font);
}

.mobile-nav__wrapper .home-showcase .row [class*="col-"] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 46px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--cleanin-white, #ffffff);
}

/***
=============================================
Main Header One Css
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-one__top {
  position: relative;
  display: block;
  background-color: var(--cleanin-base);
  z-index: 99;
}

.main-header-one__top::before {
  position: absolute;
  top: 0;
  left: 65%;
  bottom: 0;
  right: 0px;
  border-top: 42px solid var(--cleanin-black);
  border-left: 23px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-one__top .container {
  max-width: 1590px;
  width: 100%;
}

.main-header-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 0px;
}

.header-style1__contact {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li + li {
  margin-left: 45px;
}

.header-style1__contact li:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--cleanin-white-rgb), 0.6);
}

.header-style1__contact li:first-child:before {
  display: none;
}

.header-style1__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li .icon i {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 16px;
}

.header-style1__contact li .text {
  margin-left: 10px;
}

.header-style1__contact li .text p {
  color: var(--cleanin-white);
  font-size: 15px;
  line-height: 25px;
}

.header-style1__contact li .text p a {
  color: var(--cleanin-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-style1__contact li .text p a:hover {
  color: var(--cleanin-white);
}

.main-header-one__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 23px;
}

.main-header__language-switcher .icon {
  position: relative;
  display: block;
  margin-right: 10px;
}

.main-header__language-switcher .icon span {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 16px;
  top: 2px;
}

.main-header__language-switcher .language-switcher {
  position: relative;
  display: block;
}

.main-header__language-switcher .language-switcher form {
  position: relative;
  display: block;
  width: 65px;
}

.main-header__language-switcher .language-switcher form .select-box {
  position: relative;
  display: block;
}

.main-header__language-switcher .nice-select {
  background-color: var(--cleanin-black);
  border-radius: 0px;
  color: var(--cleanin-white);
  font-size: 15px;
  font-weight: 400;
  height: 25px;
  line-height: 25px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  font-family: var(--cleanin-font);
}

.main-header__language-switcher .nice-select:after {
  right: 0px;
  margin-top: -5px;
  border-bottom: 1px solid var(--cleanin-white);
  border-right: 1px solid var(--cleanin-white);
}

.main-header__language-switcher .nice-select .list {
  width: 115px;
  background-color: var(--cleanin-black);
}

.header-style1__social-links {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  padding-left: 20px;
}

.header-style1__social-links::before {
  position: absolute;
  top: -1px;
  left: 0;
  bottom: -2px;
  width: 1px;
  background-color: rgba(var(--cleanin-white-rgb), 0.6);
  content: "";
}

.header-style1__social-links a {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
}

.header-style1__social-links a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

.header-style1__social-links a:hover {
  color: var(--cleanin-white);
}

.header-style1__social-links a + a {
  margin-left: 20px;
}

.main-header-one__bottom {
  position: relative;
  display: block;
  background: var(--cleanin-gray-bg);
  z-index: 2;
}

.main-header-one__bottom .container {
  max-width: 1590px;
  width: 100%;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-header-one__bottom-left {
  position: relative;
  display: block;
}

.logo-one {
  position: relative;
  display: block;
  z-index: 1;
}

.logo-one a {
  position: relative;
  display: block;
}

.logo-one a img {
  width: 200px;
}

.main-header-one__bottom-middle {
  display: block;
}

.main-menu__main-menu-box {
  display: block;
}

.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header-search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: block;
  color: var(--cleanin-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--cleanin-base);
}

.main-header__shop {
  position: relative;
  display: block;
  margin-left: 18px;
}

.main-header__shop .icon-box {
  position: relative;
  display: block;
}

.main-header__shop .icon-box a {
  position: relative;
  display: inline-block;
  color: var(--cleanin-black);
}

.main-header__shop .icon-box a:hover {
  color: var(--cleanin-base);
}

.main-header__shop .icon-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
}

.main-header__shop .icon-box .count {
  position: absolute;
  top: -2px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: var(--cleanin-base);
  border-radius: 50%;
}

.main-header__shop .icon-box .count span {
  position: relative;
  color: var(--cleanin-white);
  font-size: 12px;
  font-weight: 500;
  top: -1px;
}

.main-header__btn {
  position: relative;
  display: block;
  margin-left: 43px;
  line-height: 0px;
}

.stricky-header.stricky-header__one .main-menu__list > li {
  padding-top: 40px;
  padding-bottom: 38px;
}

.stricky-header.main-menu {
  background-color: var(--cleanin-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 50px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  color: var(--cleanin-black);
  font-size: 16px;
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  /* font-weight: 600; */
  text-transform: uppercase;
  font-family: var(--cleanin-font-two);
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--cleanin-base);
}

.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 16px;
}

.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 45%;
  right: 0;
  font-family: "icomoon" !important;
  content: "\e938";
  font-size: 12px;
  color: var(--cleanin-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current > a::after,
.stricky-header .main-menu__list > li:hover > a::after {
  color: var(--cleanin-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 340px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition:
    opacity 500ms ease,
    visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    -webkit-transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease;
  transition:
    opacity 500ms ease,
    visibility 500ms ease,
    transform 700ms ease,
    -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 0px 0px 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: 1px solid rgba(var(--cleanin-bdr-color-rgb), 0.8);
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: #000;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 13px 30px 13px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--cleanin-white);
  border-radius: 0px;
  z-index: 1;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  color: var(--cleanin-white);
}

.main-menu .main-menu__list > li > ul > li > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li > a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  bottom: 0px;
  background-color: var(--cleanin-base);
  border-radius: 0px;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  z-index: -1;
}

.main-menu .main-menu__list > li > ul > li:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li:hover > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
  border-left: 2px solid transparent;
  background-color: transparent;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list > li > ul > li.dropdown > a:after {
  position: absolute;
  top: 50%;
  right: 30px;
  font-family: "icomoon" !important;
  content: "\e90e";
  font-size: 12px;
  color: var(--cleanin-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list > li > ul > li:hover.dropdown > a::after {
  color: var(--cleanin-white);
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list > .megamenu,
.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu__wrapper .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
  padding: 31px !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition:
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  transition:
    transform 500ms ease,
    visibility 500ms ease;
  transition:
    transform 500ms ease,
    visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--cleanin-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--cleanin-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 25px;
  color: var(--cleanin-base);
  cursor: pointer;
  line-height: 0px;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--cleanin-black);
}

.main-menu .mobile-nav__toggler i::before {
  position: relative;
  display: inline-block;
  top: 2px;
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/***
=============================================
Main Header Two Css
=============================================
***/
.main-header-two {
  position: relative;
  display: block;
  z-index: 999;
}

.main-header-two .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.15;
  z-index: 6;
}

.main-header-two .container {
  max-width: 1630px;
  width: 100%;
}

.main-header-two__inner {
  position: relative;
  display: block;
}

.main-header-two__top {
  position: relative;
  display: block;
  padding: 14px 0px 14px;
  z-index: 1;
}

.main-header-two__top::before {
  position: absolute;
  top: 0;
  left: -999999px;
  bottom: 0;
  right: -999999px;
  background: var(--cleanin-black);
  content: "";
  z-index: -1;
}

.main-header-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 340px;
}

.header-style2__contact {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style2__contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style2__contact li + li {
  margin-left: 80px;
}

.header-style2__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--cleanin-white-rgb), 0.1);
  border-radius: 50%;
  overflow: hidden;
}

.header-style2__contact li .icon i::before {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 15px;
  line-height: 15px;
}

.header-style2__contact li .text {
  position: relative;
  display: block;
  margin-left: 15px;
  flex: 1;
}

.header-style2__contact li .text .text1 {
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 1px;
}

.header-style2__contact li .text .text2 {
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.header-style2__contact li .text .text2 a {
  color: var(--cleanin-white);
}

.header-style2__contact li .text .text2 a:hover {
  color: var(--cleanin-white);
}

.header-style2__social-links {
  position: relative;
  display: block;
}

.header-style2__social-links .title-box {
  position: relative;
  display: block;
  margin-bottom: 8px;
}

.header-style2__social-links .title-box p {
  color: var(--cleanin-white);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}

.header-style2__social-links ul {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style2__social-links ul li {
  position: relative;
  display: block;
}

.header-style2__social-links ul li + li {
  margin-left: 10px;
}

.header-style2__social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(var(--cleanin-white-rgb), 0.1);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.header-style2__social-links ul li a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--cleanin-white);
  transition-delay: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(-70deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-70deg) scale(0.2);
  transform: perspective(400px) rotateX(-70deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: -1;
}

.header-style2__social-links ul li a:hover:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}

.header-style2__social-links ul li a span {
  position: relative;
  display: block;
  line-height: 0px;
}

.header-style2__social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: var(--cleanin-white);
  font-size: 13px;
  line-height: 13px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-style2__social-links ul li a:hover span::before {
  color: var(--cleanin-black);
}

.main-header-two__bottom {
  position: relative;
  display: block;
}

.main-header-two__bottom .container {
  padding: 0px;
}

.main-header-two__bottom .main-menu__wrapper-inner {
  padding-left: 340px;
}

.main-header-two__logo {
  position: absolute;
  top: -90px;
  left: 0;
  width: 240px;
  height: 169px;
  display: flex;
  align-items: center;
  z-index: 5;
}

.main-header-two__logo::before {
  position: absolute;
  top: 0;
  left: -99999px;
  bottom: 0;
  right: 0;
  border-top: 169px solid var(--cleanin-base);
  border-right: 50px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-two__logo::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -50px;
  height: 50px;
  width: 85px;
  border-bottom: 90px solid rgba(var(--cleanin-base-rgb), 0.8);
  border-left: 10px solid transparent;
  border-right: 50px solid transparent;
  z-index: -1;
}

.main-header-two__bottom-left {
  display: block;
}

.main-header-two .main-menu .main-menu__list > li,
.stricky-header.stricky-header__two .main-menu__list > li {
  padding-top: 28px;
  padding-bottom: 26px;
}

.main-header-two__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__bottom-right .sidebar-icon {
  position: relative;
  display: block;
  padding-left: 20px;
  margin-left: 20px;
  padding-right: 10px;
}

.main-header-two__bottom-right .sidebar-icon::after {
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: 0px;
  width: 1px;
  background: var(--cleanin-black);
  content: "";
}

.main-header-two__bottom-right .sidebar-icon a {
  position: relative;
  display: block;
  width: 41px;
}

.main-header-two__bottom-right .sidebar-icon a span + span {
  margin-top: 5px;
}

.main-header-two__bottom-right .sidebar-icon a .nav-sidebar-menu-1 {
  position: relative;
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-1 {
  width: 30px;
  background: var(--cleanin-base);
}

.main-header-two__bottom-right .sidebar-icon a .nav-sidebar-menu-2 {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-2 {
  width: 20px;
  background: var(--cleanin-base);
}

.main-header-two__bottom-right .sidebar-icon a .nav-sidebar-menu-3 {
  position: relative;
  display: block;
  height: 2px;
  width: 25px;
  background-color: var(--cleanin-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__bottom-right .sidebar-icon a:hover .nav-sidebar-menu-3 {
  width: 30px;
  background: var(--cleanin-base);
}

.main-header-two__bottom-right .main-header__btn {
  margin-left: 0px;
}

.main-header-two__bottom-right .main-header__btn .thm-btn {
  line-height: 49px;
}

.stricky-header__two .container {
  max-width: 1630px;
  width: 100%;
}

.stricky-header__two .main-header-two__logo {
  position: relative;
  top: 0px;
  left: 0;
  width: auto;
  height: auto;
  display: block;
  align-items: center;
  padding-right: 30px;
  z-index: 5;
}

.stricky-header__two .main-header-two__logo::before {
  position: absolute;
  top: -22px;
  left: -99999px;
  bottom: -19px;
  right: 0;
  border-top: none;
  border-right: none;
  background: var(--cleanin-base);
  content: "";
  z-index: -1;
}

.stricky-header__two .main-header-two__logo::after {
  display: none;
}

.stricky-header.stricky-header__two .main-menu__list > li {
  padding-top: 38px;
  padding-bottom: 36px;
}

.main-header-two .home-showcase .container {
  max-width: 1350px;
  width: 100%;
}

.stricky-header__two .home-showcase .container {
  max-width: 1350px;
  width: 100%;
}

/***
=============================================
Main Header Three Css
=============================================
***/
.main-header-one--three {
  position: relative;
  display: block;
}

.main-header-one--three .main-header-one__top::before {
  display: none;
}

.main-header-one--three .main-header__language-switcher .nice-select {
  background-color: var(--cleanin-base);
}

.main-header-one--three .main-header__language-switcher .nice-select .list {
  background-color: var(--cleanin-base);
}

.main-header-one--three .nice-select .option:hover,
.main-header-one--three .nice-select .option.focus,
.main-header-one--three .nice-select .option.selected.focus {
  background-color: var(--cleanin-black);
}

/***
=============================================
Main Header Four Css
=============================================
***/
.main-header-one--four {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(var(--cleanin-white-rgb), 0.05);
  z-index: 99;
}

.main-header-one--four .main-slider-one__bg::before {
  background: rgba(var(--cleanin-base-rgb), 0.6);
}

.main-header-one--four .main-header-one__top {
  background-color: transparent;
  border-bottom: 1px solid rgba(var(--cleanin-white-rgb), 0.12);
}

.main-header-one--four .main-header-one__top-inner {
  padding: 12px 0px;
}

.main-header-one--four .main-header-one__bottom {
  background: transparent;
}

.main-header-one--four .main-header-one__top::before {
  display: none;
}

.main-header-one--four .header-style1__contact li:before {
  background-color: rgba(var(--cleanin-white-rgb), 0.15);
}

.main-header-one--four .main-header__language-switcher .nice-select {
  background-color: transparent;
}

.main-header-one--four .header-style1__social-links::before {
  background-color: rgba(var(--cleanin-white-rgb), 0.15);
}

.main-header-one--four .main-menu__search {
  color: var(--cleanin-white);
}

.main-header-one--four .main-header__shop .icon-box a {
  color: var(--cleanin-white);
}

.main-header-one--four .main-menu .main-menu__list > li > a,
.main-header-one--four .stricky-header .main-menu__list > li > a {
  color: var(--cleanin-white);
}

.main-header-one--four .main-menu .main-menu__list > li.dropdown > a:after {
  color: var(--cleanin-white);
}

.main-header-one--four .main-header__btn .thm-btn {
  background: rgba(var(--cleanin-white-rgb), 0.25);
}

.stricky-header.stricky-header--four .main-menu__list > li {
  padding-top: 40px;
  padding-bottom: 38px;
}

.stricky-header.stricky-header--four.main-menu {
  background-color: var(--cleanin-base);
}

.stricky-header.stricky-header--four .main-menu__list > li > a {
  color: var(--cleanin-white);
}

.stricky-header.stricky-header--four.main-menu
  .main-menu__list
  > li.dropdown
  > a:after {
  color: var(--cleanin-white);
}

.stricky-header.stricky-header--four .main-menu__search {
  color: var(--cleanin-white);
}

.stricky-header.stricky-header--four .main-header__shop .icon-box a {
  color: var(--cleanin-white);
}

.stricky-header.stricky-header--four .main-header__shop .icon-box .count {
  background: var(--cleanin-black);
}

.stricky-header.stricky-header--four .main-header__btn .thm-btn {
  background: var(--cleanin-white);
  color: var(--cleanin-black);
}

.stricky-header.stricky-header--four .main-header__btn .thm-btn:hover {
  color: var(--cleanin-white);
}

/***
=============================================
Bootstrap Header
=============================================
***/
.ae-header {
  position: relative;
  z-index: 120;
  background: #ffffff;
  width: 100%;
}

.ae-header.ae-header--nav-sticky {
  padding-bottom: var(--ae-nav-height, 0px);
}

.ae-header__top {
  background: linear-gradient(180deg, #f4f9ff 0%, #e3effd 100%);
  border-bottom: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
}

.ae-header__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.ae-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 34px;
  margin-right: 8px;
  border-right: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
}

.ae-header__brand img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.ae-header__contact {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1 1 auto;
  min-width: 0;
}

.ae-header__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #14395c;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  min-width: 0;
}

.ae-header__contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.ae-header__contact-link {
  color: #14395c;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  white-space: nowrap;
}

.ae-header__contact-link:hover,
.ae-header__contact-item:hover {
  color: var(--cleanin-base);
}

.ae-header__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(var(--cleanin-base-rgb), 0.12);
  color: #0a5ba8;
  font-size: 14px;
  flex-shrink: 0;
}

.ae-header__utility {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.ae-header__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ae-header__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d7e1ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #203449;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ae-header__social a:hover {
  background: var(--cleanin-base);
  border-color: var(--cleanin-base);
  color: #ffffff;
}

.ae-header__download {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a5ba8 0%, #052944 100%);
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 74, 148, 0.18);
}

.ae-header__download:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 74, 148, 0.26);
}

.ae-header__download-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: aeDownloadPulse 1.6s ease-in-out infinite;
}

.ae-header__download-icon i {
  font-size: 13px;
}

@keyframes aeDownloadPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    transform: translateY(2px) scale(1.08);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.ae-header__download:hover .ae-header__download-icon {
  color: var(--cleanin-base);
  background: #ffffff;
}

.ae-brochure-modal .modal-dialog {
  max-width: 920px;
}

.ae-brochure-modal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(var(--cleanin-base-rgb), 0.14) 0%, rgba(var(--cleanin-base-rgb), 0) 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 28px 70px rgba(7, 24, 45, 0.2);
}

.ae-brochure-modal .modal-header {
  align-items: flex-start;
  gap: 18px;
  padding: 28px 30px 16px;
  border-bottom: 1px solid rgba(var(--cleanin-base-rgb), 0.1);
}

.ae-brochure-modal .modal-body {
  padding: 0 30px 30px;
}

.ae-brochure-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--cleanin-base);
  font-family: var(--cleanin-font-two);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ae-brochure-modal__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cleanin-base);
  box-shadow: 0 0 0 5px rgba(var(--cleanin-base-rgb), 0.12);
}

.ae-brochure-modal .modal-title {
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
}

.ae-brochure-modal .modal-header p {
  margin: 12px 0 0;
  color: #44586d;
  font-size: 16px;
  line-height: 1.75;
}

.ae-brochure-modal__close {
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 1;
}

.ae-brochure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ae-brochure-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.07);
}

.ae-brochure-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a5ba8 0%, #052944 100%);
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 14px 28px rgba(0, 74, 148, 0.22);
}

.ae-brochure-card h6 {
  margin: 0 0 10px;
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.ae-brochure-card p {
  margin: 0 0 18px;
  color: #516274;
  font-size: 15px;
  line-height: 1.75;
}

.ae-brochure-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.ae-brochure-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: var(--cleanin-font-two);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ae-brochure-card__link--primary {
  background: linear-gradient(135deg, #0a5ba8 0%, #052944 100%);
  color: #ffffff;
}

.ae-brochure-card__link--primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 74, 148, 0.22);
}

.ae-brochure-card__link--secondary {
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.18);
  background: #ffffff;
  color: var(--cleanin-base);
}

.ae-brochure-card__link--secondary:hover {
  color: var(--cleanin-base);
  border-color: rgba(var(--cleanin-base-rgb), 0.28);
  background: rgba(var(--cleanin-base-rgb), 0.05);
}

.ae-header__aqua-brand {
  display: inline-flex;
  align-items: center;
  padding-left: 16px;
  margin-left: 2px;
  border-left: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
}

.ae-header__aqua-brand img {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.ae-header__toggler {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--cleanin-base);
  box-shadow: none;
}

.ae-header__toggler:focus {
  box-shadow: none;
}

.ae-header__toggler .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.25' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ae-header__nav {
  position: relative;
  z-index: 121;
  background: linear-gradient(90deg, #0a5ba8 0%, #063f73 48%, #052944 100%);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 34px rgba(7, 24, 45, 0.18);
}

.ae-header__nav.ae-header__nav--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: aeHeaderSlideDown 0.35s ease;
  box-shadow: 0 18px 42px rgba(7, 24, 45, 0.16);
}

@keyframes aeHeaderSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.ae-header__nav .navbar {
  min-height: 66px;
}

.ae-header__nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.ae-header__mobile-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.ae-header__menu-label {
  color: #ffffff;
  font-family: var(--cleanin-font-two);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ae-header__mobile-brand {
  display: inline-flex;
  align-items: center;
}

.ae-header__mobile-brand img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.ae-header__mobile-download {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(7, 24, 45, 0.16);
}

.ae-header__mobile-download i {
  font-size: 18px;
}

.ae-header__mobile-download:hover,
.ae-header__mobile-download:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.ae-header .navbar-collapse {
  width: 100%;
  justify-content: center;
}

.ae-header .navbar-nav {
  width: 100%;
  justify-content: center;
  gap: 0 6px;
}

.ae-header .nav-link {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--cleanin-font-two);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ae-header .nav-link:hover,
.ae-header .nav-link.active,
.ae-header .show > .nav-link {
  color: #d9efff;
}

.ae-header .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
  border-top-color: currentColor;
}

.ae-header .mega-dropdown > .dropdown-menu {
  left: 50%;
  right: auto;
  top: 100%;
  width: min(760px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  margin-top: 0;
  padding: 0;
  border-radius: 0 0 28px 28px;
  background: transparent;
  box-shadow: 0 26px 60px rgba(7, 24, 45, 0.16);
}

.ae-mega-menu {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #dce6f1;
}

.ae-mega-menu::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: -28px;
  width: 320px;
  height: 280px;
  background: url("../images/slider/closed-circuit-cooling-tower.png") no-repeat center/contain;
  opacity: 0.08;
  pointer-events: none;
}

.ae-mega-menu__group {
  position: relative;
  z-index: 1;
}

.ae-mega-menu__group h6 {
  margin-bottom: 14px;
  color: #1b2d42;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.ae-mega-menu__group a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #e6edf5;
  color: #33475b;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.ae-mega-menu__group a:hover {
  color: var(--cleanin-base);
  padding-left: 6px;
}

.ae-mega-menu__feature {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 28px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a5ba8 0%, #052944 100%);
  box-shadow: 0 18px 40px rgba(0, 74, 148, 0.24);
}

.ae-mega-menu__feature::before {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 220px;
  height: 220px;
  background: url("../images/slider/closed-circuit-cooling-tower.png") no-repeat center/contain;
  opacity: 0.16;
  pointer-events: none;
}

.ae-mega-menu__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #d8ebff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ae-mega-menu__feature h6 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.ae-mega-menu__feature p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.ae-mega-menu__feature--wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ae-mega-menu__feature-copy {
  max-width: 520px;
}

.ae-mega-menu__feature-copy p {
  margin-bottom: 0;
}

.ae-mega-menu__feature-side {
  position: relative;
  z-index: 1;
  flex: 1 1 360px;
}

.ae-mega-menu__feature-side .ae-mega-menu__quick-links {
  margin-bottom: 20px;
}

.ae-mega-menu__quick-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.ae-mega-menu__quick-links a {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.ae-mega-menu__quick-links a:hover {
  color: #d8ebff;
  transform: translateX(4px);
}

.ae-mega-menu__cta {
  position: relative;
  z-index: 1;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: var(--cleanin-base);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.ae-mega-menu__cta:hover {
  background: #dcecff;
  color: #0d497f;
}

.ae-tower-menu {
  padding: 34px 38px 38px;
  background: linear-gradient(180deg, #f7f7f8 0%, #ededee 100%);
  border-top: 3px solid #7ea8d6;
}

.ae-tower-menu::after {
  display: none;
}

.ae-tower-menu__overview {
  display: block;
  padding: 0 0 16px;
  border-bottom: 1px solid #d2d7dd;
  color: #263646;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.ae-tower-menu__overview:hover {
  color: var(--cleanin-base);
  padding-left: 6px;
}

.ae-tower-menu__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 36px;
  margin-top: 0;
}

.ae-tower-menu__column {
  min-width: 0;
}

.ae-tower-menu__group + .ae-tower-menu__group {
  margin-top: 22px;
}

.ae-tower-menu__group h6,
.ae-tower-menu__group > span {
  margin: 0;
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid #d2d7dd;
  color: #162230;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.ae-tower-menu__title-link {
  display: block;
  color: inherit;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.ae-tower-menu__title-link:hover {
  color: var(--cleanin-base);
  padding-left: 6px;
}

.ae-tower-menu__group > a {
  display: block;
  position: relative;
  padding: 14px 0;
  border-bottom: 1px solid #d2d7dd;
  color: #34495e;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.ae-tower-menu__group > a:hover {
  color: var(--cleanin-base);
  transform: translateX(6px);
}

.ae-tower-menu__tier-link--level-1 {
  padding-left: 18px;
}

.ae-tower-menu__tier-link--level-2 {
  padding-left: 36px;
  font-size: 15px;
}

.ae-tower-menu__tier-link--level-3 {
  padding-left: 56px;
  font-size: 15px;
  color: #506579;
}

.ae-tower-menu__tier-link--level-1::before,
.ae-tower-menu__tier-link--level-2::before,
.ae-tower-menu__tier-link--level-3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 1px;
  background: #9fb1c3;
  transform: translateY(-50%);
}

.ae-tower-menu__tier-link--level-2::before {
  left: 18px;
}

.ae-tower-menu__tier-link--level-3::before {
  left: 38px;
}

@media (min-width: 1200px) {
  .ae-header .mega-dropdown > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease,
      transform 0.28s ease;
  }

  .ae-header .mega-dropdown:hover > .dropdown-menu,
  .ae-header .mega-dropdown > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1199.98px) {
  .ae-header__nav,
  .ae-header__nav.ae-header__nav--sticky {
    z-index: 1101;
  }

  .ae-header__topbar {
    min-height: 80px;
  }

  .ae-header__brand {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }

  .ae-header__brand img {
    height: 56px;
  }

  .ae-header__utility {
    gap: 12px;
  }

  .ae-header__download {
    padding: 11px 14px;
    font-size: 11px;
  }

  .ae-brochure-grid {
    grid-template-columns: 1fr;
  }

  .ae-brochure-modal .modal-title {
    font-size: 26px;
  }

  .ae-header__aqua-brand img {
    height: 42px;
  }

  .ae-header .navbar-collapse {
    padding: 0 0 18px;
    max-height: calc(100dvh - var(--ae-nav-height, 76px));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .ae-header .navbar-nav {
    align-items: stretch !important;
    gap: 0;
  }

  .ae-header .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ae-header .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
  }

  .ae-header .mega-dropdown > .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    width: 100%;
    max-width: none;
    transform: none;
    box-shadow: none;
    border-radius: 0;
  }

  .ae-mega-menu {
    padding: 20px 0 0;
    background: transparent;
    border-top: 0;
  }

  .ae-mega-menu::after {
    display: none;
  }

  .ae-mega-menu__group {
    padding-bottom: 6px;
  }

  .ae-mega-menu__group h6 {
    font-size: 16px;
  }

  .ae-mega-menu__group a {
    padding: 10px 0;
    font-size: 14px;
  }

  .ae-mega-menu__feature {
    margin-top: 8px;
  }

  .ae-mega-menu__feature--wide {
    display: block;
  }

  .ae-mega-menu__feature-copy {
    max-width: none;
    margin-bottom: 20px;
  }

  .ae-tower-menu {
    margin-top: 10px;
    padding: 14px 16px 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 33, 61, 0.4);
    backdrop-filter: blur(10px);
  }

  .ae-tower-menu__overview {
    padding-bottom: 12px;
    border-bottom-color: rgba(255, 255, 255, 0.18);
    color: #f6fbff;
    font-size: 17px;
  }

  .ae-tower-menu__columns {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 12px;
  }

  .ae-tower-menu__group + .ae-tower-menu__group {
    margin-top: 18px;
  }

  .ae-tower-menu__group h6,
  .ae-tower-menu__group > span {
    padding-bottom: 12px;
    border-bottom-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 17px;
  }

  .ae-tower-menu__title-link {
    color: inherit;
  }

  .ae-tower-menu__group > a {
    padding: 12px 0;
    border-bottom-color: rgba(255, 255, 255, 0.16);
    color: rgba(226, 239, 252, 0.96);
    font-size: 14px;
  }

  .ae-tower-menu__tier-link--level-1 {
    padding-left: 16px;
  }

  .ae-tower-menu__tier-link--level-2 {
    padding-left: 30px;
  }

  .ae-tower-menu__tier-link--level-3 {
    padding-left: 42px;
    color: rgba(208, 225, 243, 0.96);
  }

  .ae-tower-menu__tier-link--level-1::before,
  .ae-tower-menu__tier-link--level-2::before,
  .ae-tower-menu__tier-link--level-3::before {
    background: rgba(164, 201, 235, 0.78);
  }

  .ae-tower-menu__tier-link--level-2::before {
    left: 16px;
  }

  .ae-tower-menu__tier-link--level-3::before {
    left: 28px;
  }

  .ae-header__nav.ae-header__nav--sticky {
    border-bottom-width: 1px;
  }

  body.ae-mobile-nav-open .floating-contact-btn {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 991.98px) {
  .ae-header__social {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .ae-header__top {
    display: none;
  }

  .ae-header__nav {
    top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom-width: 1px;
    box-shadow: 0 10px 24px rgba(7, 24, 45, 0.16);
  }

  .ae-header__nav .navbar {
    min-height: 62px;
  }

  .ae-header__nav-inner {
    justify-content: space-between;
    padding: 10px 0;
  }

  .ae-header__mobile-tools {
    gap: 8px;
  }

  .ae-header__mobile-brand {
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 18px rgba(5, 41, 68, 0.18);
  }

  .ae-header__mobile-brand img {
    height: 60px;
  }

  .ae-header__toggler {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .ae-brochure-modal .modal-header,
  .ae-brochure-modal .modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ae-brochure-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .ae-brochure-card h6 {
    font-size: 18px;
  }

  .ae-header .navbar-collapse {
    padding: 0 0 14px;
    max-height: calc(143dvh - var(--ae-nav-height, 100px));
  }

  .ae-mega-menu__feature {
    padding: 22px;
    border-radius: 20px;
  }

  .ae-mega-menu__feature h6 {
    font-size: 22px;
  }
}

/***
=============================================
Mission Vision Section
=============================================
***/
.ae-principles {
  --ae-principles-accent: var(--cleanin-base);
  --ae-principles-accent-soft: rgba(var(--cleanin-base-rgb), 0.16);
  --ae-principles-accent-light: #5faef2;
  position: relative;
  padding: 95px 0 105px;
  overflow: hidden;
}

.ae-principles::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 180px;
  height: 180px;
  background:
    linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.08) 0, rgba(var(--cleanin-base-rgb), 0.08) 1px, transparent 1px),
    linear-gradient(45deg, rgba(var(--cleanin-base-rgb), 0.05) 0, rgba(var(--cleanin-base-rgb), 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.45;
  pointer-events: none;
}

.ae-principles::after {
  content: "";
  position: absolute;
  right: 36px;
  top: 26px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ae-principles-accent);
  box-shadow: 0 0 0 10px var(--ae-principles-accent-soft);
  pointer-events: none;
}

.ae-principles .container {
  position: relative;
  z-index: 1;
}

.ae-principles__headline {
  margin: 0 auto 34px;
}

.ae-principles__headline .sec-title__title {
  margin: 0;
}

.ae-principles__frame {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 34px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.1);
  box-shadow: 0 24px 65px rgba(var(--cleanin-black-rgb), 0.08);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.ae-principles__frame::before {
  content: none;
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #0a2b59;
  animation: aePrinciplesFloatAlt 8s ease-in-out infinite;
}

.ae-principles__frame::after {
  content: none;
  position: absolute;
  left: 58px;
  bottom: 48px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ae-principles-accent);
  animation: aePrinciplesFloat 6.5s ease-in-out infinite;
}

.ae-principles__sidebar,
.ae-principles__content {
  position: relative;
  z-index: 1;
}

.ae-principles__sidebar {
  padding: 42px 26px 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #082857 0%, #07224b 100%);
  color: var(--cleanin-white);
  min-height: 492px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(var(--cleanin-black-rgb), 0.22);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.ae-principles__sidebar::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -55%;
  width: 72%;
  background: linear-gradient(120deg, rgba(var(--cleanin-white-rgb), 0.2) 0%, rgba(var(--cleanin-white-rgb), 0.04) 38%, rgba(var(--cleanin-white-rgb), 0) 70%);
  transform: rotate(14deg) translateX(0);
  opacity: 0.72;
  pointer-events: none;
  transition: transform 0.7s ease, opacity 0.45s ease;
}

.ae-principles__sidebar-title {
  margin: 0 0 42px;
  font-size: 45px;
  line-height: 0.98;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
}

.ae-principles__sidebar-title span {
  display: block;
}

.ae-principles__sidebar-title span:last-child {
  color: var(--ae-principles-accent-light);
}

.ae-principles__sidebar-values h3 {
  margin: 0 0 18px;
  color: rgba(var(--cleanin-white-rgb), 0.98);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}

.ae-principles__content {
  position: relative;
  min-height: 492px;
  padding: 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 150px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "vision-card vision-card vision-symbol"
    "mission-symbol mission-card mission-card";
  gap: 24px 22px;
  align-items: stretch;
}

.ae-principles__content::before {
  content: none;
  position: absolute;
  right: 18px;
  top: 26px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #0a2b59;
  animation: aePrinciplesFloat 7.2s ease-in-out infinite 0.6s;
}

.ae-principles__content::after {
  content: none;
  position: absolute;
  left: 24px;
  bottom: 78px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ae-principles-accent);
  animation: aePrinciplesFloatAlt 9s ease-in-out infinite;
}

.ae-principles__symbol {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 32px;
  color: var(--ae-principles-accent);
  background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.14) 0%, rgba(var(--cleanin-base-rgb), 0.04) 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.18);
  box-shadow: 0 24px 38px rgba(var(--cleanin-black-rgb), 0.08);
  pointer-events: none;
  z-index: 0;
  align-self: center;
  justify-self: center;
}

.ae-principles__symbol svg {
  /* width: 54px;
  height: 54px; */
  display: block;
}

.ae-principles__symbol--vision {
  grid-area: vision-symbol;
}

.ae-principles__symbol--mission {
  grid-area: mission-symbol;
}

.ae-principles__card {
  position: relative;
  max-width: none;
  padding: 34px 36px 30px;
  background: rgba(var(--cleanin-white-rgb), 0.96);
  border: 2px solid #173257;
  box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ae-principles__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ae-principles-accent-light) 0%, var(--ae-principles-accent) 100%);
  transition: width 0.45s ease;
}

.ae-principles__card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--cleanin-base-rgb), 0.16) 0%, rgba(var(--cleanin-base-rgb), 0) 68%);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.ae-principles__card--vision {
  grid-area: vision-card;
  width: 100%;
  border-radius: 30px;
}

.ae-principles__card--mission {
  grid-area: mission-card;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  border-radius: 30px;
}

.ae-principles__card h3 {
  margin: 0 0 14px;
  color: #16253e;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  transition: color 0.35s ease;
}

.ae-principles__card--mission h3 span {
  color: var(--ae-principles-accent);
}

.ae-principles__card p {
  margin: 0;
  max-width: 520px;
  color: #4f5f6e;
  font-size: 16px;
  line-height: 1.75;
  transition: color 0.35s ease;
}

.ae-principles__list {
  display: grid;
  gap: 12px;
}

.ae-principles__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(var(--cleanin-white-rgb), 0.94);
  font-size: 15px;
  line-height: 1.65;
  transition: transform 0.35s ease, color 0.35s ease;
}

.ae-principles__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ae-principles-accent-light);
  box-shadow: 0 0 0 4px var(--ae-principles-accent-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

@keyframes aePrinciplesFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes aePrinciplesFloatAlt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(8px, 9px, 0) rotate(4deg);
  }
}

@media (hover: hover) {
  .ae-principles__frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 74px rgba(var(--cleanin-black-rgb), 0.12);
  }

  .ae-principles__sidebar:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(var(--cleanin-black-rgb), 0.28);
  }

  .ae-principles__sidebar:hover::before {
    transform: rotate(14deg) translateX(38%);
    opacity: 1;
  }

  .ae-principles__sidebar:hover .ae-principles__list li {
    transform: translateX(7px);
    color: var(--cleanin-white);
  }

  .ae-principles__sidebar:hover .ae-principles__list li::before {
    transform: scale(1.18);
    box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.24);
  }

  .ae-principles__card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--cleanin-base-rgb), 0.62);
    box-shadow: 0 28px 60px rgba(var(--cleanin-black-rgb), 0.12);
    background: rgba(var(--cleanin-white-rgb), 1);
  }

  .ae-principles__card:hover::before {
    width: 100%;
  }

  .ae-principles__card:hover::after {
    opacity: 1;
    transform: scale(1);
  }

  .ae-principles__card:hover h3 {
    color: var(--cleanin-base);
  }

  .ae-principles__card:hover p {
    color: #344b61;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ae-principles::after,
  .ae-principles__frame,
  .ae-principles__frame::before,
  .ae-principles__frame::after,
  .ae-principles__sidebar,
  .ae-principles__sidebar::before,
  .ae-principles__content::before,
  .ae-principles__content::after,
  .ae-principles__card,
  .ae-principles__card::before,
  .ae-principles__card::after,
  .ae-principles__card h3,
  .ae-principles__card p,
  .ae-principles__list li,
  .ae-principles__list li::before {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1199.98px) {
  .ae-principles {
    padding: 86px 0 96px;
  }

  .ae-principles__frame {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
  }

  .ae-principles__headline {
    margin-bottom: 28px;
  }

  .ae-principles__sidebar {
    min-height: 470px;
    padding: 38px 22px 30px;
  }

  .ae-principles__sidebar-title {
    font-size: 46px;
  }

  .ae-principles__content {
    min-height: 470px;
    grid-template-columns: 110px minmax(0, 1fr) 110px;
    gap: 22px 18px;
  }

  .ae-principles__card {
    padding: 30px 30px 26px;
  }

  .ae-principles__symbol {
    width: 110px;
    border-radius: 26px;
  }

  .ae-principles__symbol svg {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 991.98px) {
  .ae-principles {
    padding: 80px 0;
  }

  .ae-principles__frame {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 18px;
  }

  .ae-principles__sidebar {
    min-height: 0;
    border-radius: 24px;
  }

  .ae-principles__content {
    min-height: 0;
    padding: 8px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    gap: 20px;
  }

  .ae-principles__symbol {
    display: none;
  }

  .ae-principles__content::before {
    right: 8px;
    top: -10px;
  }

  .ae-principles__content::after {
    left: 0;
    bottom: -6px;
  }

  .ae-principles__card,
  .ae-principles__card--vision,
  .ae-principles__card--mission {
    width: 100%;
    max-width: none;
  }

  .ae-principles__card--vision,
  .ae-principles__card--mission {
    grid-area: auto;
  }

  .ae-principles__card--mission {
    margin-top: 0;
  }

  .ae-principles__card p {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .ae-principles {
    padding: 70px 0;
  }

  .ae-principles::after {
    right: 18px;
    top: 16px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .ae-principles__frame {
    padding: 14px;
    gap: 18px;
  }

  .ae-principles__headline {
    margin-bottom: 24px;
  }

  .ae-principles__sidebar {
    padding: 30px 18px 24px;
  }

  .ae-principles__sidebar-title {
    margin-bottom: 28px;
    font-size: 38px;
  }

  .ae-principles__sidebar-values h3 {
    font-size: 22px;
  }

  .ae-principles__card {
    padding: 24px 20px 22px;
  }

  .ae-principles__card h3 {
    font-size: 24px;
  }

  .ae-principles__card p {
    font-size: 15px;
  }

  .ae-principles__list li {
    padding-left: 20px;
    font-size: 15px;
  }
}

/***
=============================================
Custom Product Showcase
=============================================
***/
.services-five--showcase {
  position: relative;
  padding: 60px 0 60px;
  background:
    radial-gradient(circle at top left, rgba(var(--cleanin-base-rgb), 0.14) 0%, rgba(var(--cleanin-base-rgb), 0) 30%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 52%);
  overflow: hidden;
}

.services-five--showcase::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(var(--cleanin-base-rgb), 0.08);
  filter: blur(10px);
}

.services-five--showcase::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(var(--cleanin-black-rgb), 0.04);
  filter: blur(12px);
}

.services-five--showcase .container {
  position: relative;
  z-index: 1;
}

.services-five--showcase .services-five__pattern {
  background-image: radial-gradient(rgba(var(--cleanin-base-rgb), 0.16) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: center center;
  background-repeat: repeat;
  opacity: 0.28;
}

.services-five--showcase .services-five__top {
  margin-bottom: 48px;
}

.services-five--showcase .services-five__heading {
  /* max-width: 760px; */
  margin: 0;
  text-align: center;
}

.services-five--showcase .services-five__heading .sec-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.services-five--showcase .services-five__heading .sec-title__tagline .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.14) 0%, rgba(var(--cleanin-base-rgb), 0.05) 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
}

.services-five--showcase .services-five__heading .sec-title__tagline .icon-box span::before {
  color: var(--cleanin-base);
  font-size: 20px;
  line-height: 1;
}

.services-five--showcase .services-five__heading .sec-title__tagline .text h4 {
  margin: 0;
  color: var(--cleanin-base);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-five--showcase .services-five__heading .sec-title__title {
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.08;
  text-transform: none;
}

.services-five--showcase .services-five__carousel {
  position: relative;
}

.services-five--showcase .services-five__carousel .owl-stage-outer {
  padding: 20px 0 28px;
  margin: -20px 0 -28px;
}

.services-five--showcase .services-five__carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.services-five--showcase .services-five__carousel .owl-item {
  display: flex;
  height: auto;
}

.services-five--showcase .services-five__single {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
  background: var(--cleanin-white);
  box-shadow: 0 22px 55px rgba(var(--cleanin-black-rgb), 0.08);
  overflow: hidden;
  transition: transform 500ms ease, box-shadow 500ms ease, border-color 500ms ease;
}

.services-five--showcase .services-five__single::before {
  /* content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--cleanin-base) 0%, #59a6ff 100%);
  z-index: 1; */
}

.services-five--showcase .services-five__single:hover {
  transform: translateY(-14px);
  border-color: rgba(var(--cleanin-base-rgb), 0.35);
  box-shadow: 0 30px 70px rgba(var(--cleanin-black-rgb), 0.14);
}

.services-five--showcase .services-five__single-img {
  position: relative;
  display: block;
  padding: 14px 14px 0;
}

.services-five--showcase .services-five__single-img-inner {
  position: relative;
  display: block;
  height: 260px;
  border-radius: 22px;
  background: var(--cleanin-black);
  overflow: hidden;
}

.services-five--showcase .services-five__single-img-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--cleanin-black-rgb), 0.02) 8%, rgba(var(--cleanin-black-rgb), 0.48) 100%);
  z-index: 1;
  transition: opacity 500ms ease;
}

.services-five--showcase .services-five__single-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity 500ms ease;
}

.services-five--showcase .services-five__single:hover .services-five__single-img-inner img {
  transform: scale(1.08);
  opacity: 0.88;
}

.services-five--showcase .services-five__single-icon {
  position: absolute;
  left: 28px;
  bottom: -30px;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cleanin-base) 0%, #4a97ef 100%);
  border: 7px solid var(--cleanin-white);
  box-shadow: 0 18px 34px rgba(var(--cleanin-base-rgb), 0.24);
  z-index: 3;
}

.services-five--showcase .services-five__single-icon span::before {
  color: var(--cleanin-white);
  font-size: 30px;
  line-height: 1;
}

.services-five--showcase .services-five__single-content {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 0px;
  background: var(--cleanin-white);
  text-align: center;
}

.services-five--showcase .services-five__single-content h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: none;
}

.services-five--showcase .services-five__single-content h2 a {
  color: var(--cleanin-black);
}

.services-five--showcase .services-five__single-content h2 a:hover {
  color: var(--cleanin-base);
}

.services-five--showcase .thm-dot-style1.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 12px;
}

.services-five--showcase .thm-dot-style1.owl-theme .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.25);
  background: rgba(var(--cleanin-white-rgb), 0.92);
  transition: all 300ms ease;
}

.services-five--showcase .thm-dot-style1.owl-theme .owl-dots .owl-dot.active span,
.services-five--showcase .thm-dot-style1.owl-theme .owl-dots .owl-dot:hover span {
  width: 38px;
  background: linear-gradient(90deg, var(--cleanin-base) 0%, #59a6ff 100%);
  border-color: transparent;
}

@media (max-width: 1199.98px) {
  .services-five--showcase {
    padding: 92px 0 78px;
  }

  .services-five--showcase .services-five__heading .sec-title__title {
    font-size: 48px;
  }

  .services-five--showcase .services-five__single-img-inner {
    height: 240px;
  }

  .services-five--showcase .services-five__single-content {
    padding: 44px 24px 28px;
  }
}

@media (max-width: 767.98px) {
  .services-five--showcase {
    padding: 72px 0 60px;
  }

.services-five--showcase .services-five__top {
    gap: 22px;
    margin-bottom: 34px;
  }

  .services-five--showcase .services-five__heading .sec-title__tagline {
    margin-bottom: 16px;
  }

  .services-five--showcase .services-five__heading .sec-title__tagline .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .services-five--showcase .services-five__heading .sec-title__title {
    font-size: 38px;
  }

  .services-five--showcase .services-five__carousel .owl-stage-outer {
    padding: 14px 0 24px;
    margin: -14px 0 -24px;
  }

  .services-five--showcase .services-five__single {
    border-radius: 24px;
  }

  .services-five--showcase .services-five__single-img {
    padding: 12px 12px 0;
  }

  .services-five--showcase .services-five__single-img-inner {
    height: 220px;
    border-radius: 18px;
  }

  .services-five--showcase .services-five__single-icon {
    left: 24px;
    bottom: -28px;
    width: 68px;
    height: 68px;
    border-radius: 20px;
    border-width: 6px;
  }

  .services-five--showcase .services-five__single-icon span::before {
    font-size: 26px;
  }

  .services-five--showcase .services-five__single-content {
    padding: 42px 20px 24px;
  }

  .services-five--showcase .services-five__single-content h2 {
    font-size: 22px;
  }
}

/***
=============================================
Custom Footer
=============================================
***/
.ae-footer {
  position: relative;
  padding: 50px 0 28px;
  color: var(--cleanin-white);
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.88) 0%, rgba(4, 10, 18, 0.82) 38%, rgba(4, 10, 18, 0.72) 100%),
    url(../images/slider/cooling-tower-water-treatment-hero.webp) center center / cover no-repeat;
  overflow: hidden;
}

.ae-footer--bottom-only {
  padding: 18px 0 18px;
}

.ae-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(var(--cleanin-base-rgb), 0.12), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.ae-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.ae-footer .container {
  position: relative;
  z-index: 1;
}

.ae-footer__hero {
  /* padding-bottom: 30px; */
}

.ae-footer__panel {
  height: 100%;
}

.ae-footer__eyebrow {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ae-footer__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: #b73a45;
}

.ae-footer__company {
  margin: 26px 0 0;
  color: var(--cleanin-white);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 700;
}

.ae-footer__reach-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  max-width: 640px;
}

.ae-footer__reach-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ae-footer__reach-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--cleanin-white-rgb), 0.08);
  border: 1px solid rgba(var(--cleanin-white-rgb), 0.16);
  color: var(--cleanin-white);
  font-size: 16px;
}

.ae-footer__reach-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.9;
}

.ae-footer__reach-item strong {
  color: var(--cleanin-white);
  font-weight: 700;
}

.ae-footer__map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.ae-footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.ae-footer__map-link:hover {
  color: var(--cleanin-white);
}

.ae-footer__map-link i {
  font-size: 12px;
}

.ae-footer__map-frame {
  position: relative;
  min-height: 210px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(var(--cleanin-white-rgb), 0.18);
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.28);
}

.ae-footer__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.ae-footer__contact-strip {
  margin-bottom: 20px;
  padding: 28px 0 0;
  border-bottom: 1px solid rgba(var(--cleanin-white-rgb), 0.16);
}

.ae-footer__contact-card {
  height: 100%;
  padding-right: 24px;
}

.ae-footer__contact-strip .row>[class*="col-"]:not(:last-child) .ae-footer__contact-card {
  border-right: 1px solid rgba(var(--cleanin-white-rgb), 0.16);
}

.ae-footer__contact-card h3 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 300;
}

.ae-footer__contact-card a,
.ae-footer__contact-card p {
  display: block;
  margin: 0;
  color: var(--cleanin-white);
  font-size: 17px;
  line-height: 1.8;
}

.ae-footer__contact-card a:hover {
  color: #d5ebff;
}

.ae-footer__contact-card p {
  color: rgba(255, 255, 255, 0.7);
}

.ae-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ae-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--cleanin-white-rgb), 0.18);
  background: rgba(var(--cleanin-white-rgb), 0.08);
  color: var(--cleanin-white);
  font-size: 16px;
}

.ae-footer__social a:hover {
  background: var(--cleanin-base);
  border-color: rgba(var(--cleanin-base-rgb), 0.9);
  color: var(--cleanin-white);
}

.ae-footer__bottom {
  padding-top: 24px;
  margin-top: 26px;
  border-top: 1px solid rgba(var(--cleanin-white-rgb), 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.ae-footer__bottom p,
.ae-footer__bottom a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.ae-footer__bottom a:hover {
  color: var(--cleanin-white);
}

.ae-footer__bottom img {
  width: auto;
  height: 28px;
  margin-left: 6px;
  vertical-align: middle;
}

.ae-footer--bottom-only .ae-footer__bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 1199.98px) {
  .ae-footer__company {
    font-size: 28px;
  }

  .ae-footer__reach-item p,
  .ae-footer__contact-card a,
  .ae-footer__contact-card p {
    font-size: 16px;
  }

  .ae-footer__contact-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 991.98px) {
  .ae-footer {
    padding: 80px 0 24px;
  }

  .ae-footer__contact-strip .row>[class*="col-"] .ae-footer__contact-card {
    border-right: 0;
    padding-right: 0;
  }

  .ae-footer__bottom {
    justify-content: flex-start;
  }

  .ae-footer__map-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .ae-footer {
    padding: 68px 0 22px;
  }

  .ae-footer__hero {
    padding-bottom: 24px;
  }

  .ae-footer__company {
    margin-top: 22px;
    font-size: 24px;
  }

  .ae-footer__eyebrow {
    font-size: 15px;
  }

  .ae-footer__reach-list {
    gap: 16px;
    margin-top: 20px;
  }

  .ae-footer__reach-item {
    gap: 12px;
  }

  .ae-footer__reach-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 14px;
  }

  .ae-footer__reach-item p {
    font-size: 15px;
    line-height: 1.8;
  }

  .ae-footer__map-frame {
    min-height: 240px;
    border-radius: 18px;
  }

  .ae-footer__contact-strip {
    padding-top: 24px;
  }

  .ae-footer__contact-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .ae-footer__contact-card a,
  .ae-footer__contact-card p,
  .ae-footer__bottom p,
  .ae-footer__bottom a {
    font-size: 15px;
  }

  .ae-footer__social a {
    width: 40px;
    height: 40px;
  }
}

.btn-box {
  padding: 20px;
  /* text-align: center; */
}

.theme-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.whatsappbtn {
  background-color: #25d366;
  border: none;
}

.whatsappbtn:hover {
  background-color: #128c7e;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  cursor: pointer;
}

/* --- Floating Buttons Container --- */
.floating-contact-btn {
  position: fixed;
  bottom: 160px; /* Space from the bottom */
  right: 0px; /* Space from the right */
  display: flex;
  flex-direction: column;
  align-items: center; /* Aligns items to the center of the container */
  gap: 10px; /* Creates space between the buttons */
  z-index: 1050;
}

/* Floating Button Styles */
.floating-contact-btn > div,
.floating-contact-btn > a {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 20px 0 0 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition:
    transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  text-decoration: none; /* For the link element */
  overflow: visible;
}

.floating-contact-btn > div:hover,
.floating-contact-btn > a:hover {
  transform: translateX(-4px) scale(1.08);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.26);
}

.floating-contact-btn > div::before,
.floating-contact-btn > a::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 26px 0 0 0;
  border: 2px solid transparent;
  opacity: 0;
  pointer-events: none;
  animation: floatingButtonRipple 2.8s ease-out infinite;
}

.floating-whatsapp-btn {
  background-color: #25d366;
  animation: floatingButtonGlow 2.8s ease-in-out infinite;
}

.floating-phone-btn {
  background-color: #34b7f1;
  animation: floatingButtonGlow 2.8s ease-in-out infinite 0.7s;
}

.floating-whatsapp-btn::before {
  border-color: rgba(37, 211, 102, 0.45);
}

.floating-phone-btn::before {
  border-color: rgba(52, 183, 241, 0.45);
  animation-delay: 0.7s;
}

.floating-contact-btn img {
  width: 40px;
}

.floating-contact-btn i {
  color: white;
  font-size: 2rem;
}

.floating-whatsapp-btn i {
  animation: floatingWhatsAppIcon 2.8s ease-in-out infinite;
}

.floating-phone-btn i {
  transform-origin: 50% 50%;
  animation: floatingPhoneIcon 2.8s ease-in-out infinite 0.7s;
}

@keyframes floatingButtonGlow {
  0%,
  100% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
  }
}

@keyframes floatingButtonRipple {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  25% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes floatingWhatsAppIcon {
  0%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-2px) scale(1.04);
  }

  40% {
    transform: translateY(2px);
  }

  60% {
    transform: translateY(-1px);
  }
}

@keyframes floatingPhoneIcon {
  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-12deg);
  }

  30% {
    transform: rotate(10deg);
  }

  40% {
    transform: rotate(-8deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact-btn > div,
  .floating-contact-btn > a,
  .floating-contact-btn > div::before,
  .floating-contact-btn > a::before,
  .floating-whatsapp-btn i,
  .floating-phone-btn i {
    animation: none !important;
  }
}

.icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Modal Overlay and Container */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal-content-wrapper {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform: translateY(-50px);
  opacity: 0;
}

.modal-overlay.show .modal-content-wrapper {
  transform: translateY(0);
  opacity: 1;
}

/* Modal Header */
.modal-header {
  background-color: #25d366;
  color: white;
  padding: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.modal-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Modal Body */
.modal-body {
  padding: 1.5rem;
}

/* Form Styling */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  font-weight: 500;
  color: #4a4a4a;
  display: block;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
}

.form-control:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-submit {
  background-color: #25d366;
  border: none;
  font-weight: bold;
  color: white;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  width: 100%;
  cursor: pointer;
  transition:
    transform 0.2s ease-in-out,
    background-color 0.2s ease-in-out;
}

.btn-submit:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

/* Corner Modal Specific Styles */
.corner-modal-overlay {
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px;
}

.corner-modal-overlay .modal-content-wrapper {
  width: 100%;
  max-width: 400px;
  transform: translateY(50px);
  margin: 0;
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 768px) {
  .floating-contact-btn {
    bottom: 7.5rem; /* Keep controls reachable without covering hero content */
    right: 0.25rem; /* Pull slightly in from the edge on small screens */
    gap: 0.6rem;
  }
  .floating-contact-btn > div,
  .floating-contact-btn > a {
    width: 46px;
    height: 46px;
  }
  .floating-contact-btn img {
    width: 32px;
  }
}

.review-module {
  max-width: 1280px;
  width: 100%;
  background: #ffffff;
  border-radius: 40px;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05); */
  padding: 32px 28px 38px;
}

/* ----- TOP ROW: google on first line, rating & 5 star on second line ----- */
.summary-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  margin-bottom: 40px;
  background: #f8fafd;
  padding: 16px 24px;
  border: 1px solid #eef2f6;
}

.stars-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Google-colored word - first line - NO BORDER */
.google-reviews {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.google-g {
  color: #4285f4;
}

.google-o1 {
  color: #ea4335;
}

.google-o2 {
  color: #fbbc04;
}

.google-g2 {
  color: #4285f4;
}

.google-l {
  color: #34a853;
}

.google-e {
  color: #ea4335;
}

.reviews-text {
  color: #5f6b7a;
  margin-left: 6px;
  font-weight: 500;
  font-size: 1.6rem;
}

/* Rating row container - second line */
.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

/* Total stars with count */
.total-stars-large {
  display: flex;
  align-items: center;
  gap: 8px;
}

.star-holder {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbc04;
  font-size: 1.5rem;
}

.count {
  font-weight: 600;
  font-size: 1.6rem;
  color: #1e293b;
}

/* 5.0 badge - just light background, no border */
.five-star-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eef6ff;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.3rem;
  color: #1e3a6b;
}

.five-star-badge i {
  color: #fbbc04;
  font-size: 1.3rem;
}
/* Google blue button - simple with correct link */
.write-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4285f4;
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.write-review-btn i {
  font-size: 1.2rem;
  color: white;
}

.write-review-btn:hover {
  background: #5a95f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* ----- SLIDER with ARROWS + 1:1 MOUSE DRAG ----- */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

/* arrow buttons - clean, minimal */
.slider-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  color: #334e68;
  transition: all 0.15s;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.slider-arrow:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #1e3a5f;
}

.slider-arrow:active {
  transform: scale(0.95);
}

/* container with grab cursor for drag */
.slider-container {
  flex: 1;
  overflow: hidden;
  border-radius: 28px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.slider-container.dragging {
  cursor: grabbing;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px 4px;
  margin: -4px -4px 0 -4px;
  pointer-events: auto;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

/* cards - clean, minimal shadow, snap alignment */
.review-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 280px;
  background: white;
  border-radius: 24px;
  padding: 20px 18px 22px 18px;
  border: 1px solid #f0f3f7;
  transition:
    transform 0.2s,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  user-select: none;
  -webkit-user-select: none;
}

.review-card:hover {
  border-color: #d0ddee;
  transform: translateY(-4px);
}

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: #eef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2d4a72;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  background-size: cover;
  background-position: center;
}

.name-and-stars {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e2b3c;
  margin-bottom: 2px;
}

/* NO reviewer-meta - removed as requested */

.stars-mini {
  color: #fbbc04;
  font-size: 0.8rem;
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

/* Review text with working read more/less */
.review-text-container {
  margin: 8px 0 12px;
  flex: 1;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #33475b;
  border-left: 3px solid #fbbc04;
  padding-left: 14px;
  background: #f9fcff;
  border-radius: 0 12px 12px 0;
  overflow: hidden;
  transition: all 0.2s;
}

.review-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.review-text.expanded {
  display: block;
}

.read-more-btn {
  background-color: #ffffff;
  border: none;
  color: #4285f4;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 10px;
  margin-top: 4px;
  display: inline-block;
  text-decoration: none;
}

.read-more-btn:hover {
  color: #1a3a6b;
}

/* Review image - only shown when available in data */
.review-image {
  margin-top: 8px;
  border-radius: 18px;
  overflow: hidden;
  max-height: 100px;
  background: #f0f5fa;
  border: 1px solid #eef2f6;
}

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

.card-footer {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.8rem;
  border-top: 1px solid #edf2f7;
  padding-top: 12px;
}

.google-icon {
  color: #4285f4;
  background: #f0f7ff;
  border-radius: 30px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #d4e2fc;
}

.new-badge {
  background: #34a853;
  color: white;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 0.7rem;
  margin-left: 6px;
  display: inline-block;
}

/* Owner response - ALWAYS SHOWN as requested */
.owner-response {
  margin-top: 12px;
  padding: 10px 12px;
  background: #f8fafd;
  border-radius: 16px;
  font-size: 0.85rem;
  border-left: 3px solid #4285f4;
}

.response-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-weight: 600;
  color: #1e3a6b;
  font-size: 0.8rem;
}

.response-text {
  color: #475569;
  line-height: 1.4;
}

/* responsive adjustments */
@media (max-width: 1100px) {
  .review-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}

@media (max-width: 800px) {
  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .summary-row {
    border-radius: 30px;
    padding: 14px 20px;
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 calc(100% - 20px);
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .rating-row {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .google-reviews {
    font-size: 1.5rem;
  }

  .reviews-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .write-review-btn {
    width: 100%;
    justify-content: center;
  }

  .count {
    font-size: 1.3rem;
  }

  .five-star-badge {
    font-size: 1.1rem;
    padding: 4px 12px;
  }

  .star-holder {
    font-size: 1.2rem;
  }
}
.reviews-wrapper {
  position: relative;
  padding: 40px 0;
  background: #f8f9fb;
}

/* ===== SLIDER CONTAINER ===== */
.slider-container {
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.slider-container.dragging {
  cursor: grabbing;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

/* ===== CARD ===== */
.review-card {
  /* min-width: 320px;
    max-width: 320px; */
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

/* ===== HEADER ===== */
.reviewer-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.avatar-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c7be5, #00c6ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  margin-right: 12px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 15px;
}

.stars-mini i {
  color: #ffc107;
  font-size: 13px;
}

/* ===== TEXT ===== */
.review-text-container {
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
}

.review-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded {
  display: block;
}

.read-more-btn {
  background: none;
  border: none;
  color: #2c7be5;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-top: 5px;
}

/* ===== FOOTER ===== */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

.google-icon i {
  color: #db4437;
}

/* ===== ARROWS ===== */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
}

#arrow-left {
  left: -10px;
}
#arrow-right {
  right: -10px;
}

.arrow-btn i {
  font-size: 14px;
}


.industries-slider-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.industries-slider {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.industry-item {
  flex: 0 0 220px;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-item a {
  display: block;
  color: inherit;
}

.industry-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.industry-item h6 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}

.clients-section {
  position: relative;
  margin-bottom: 50px;
}

.clients-section--home {
  padding: 24px 0 8px;
  margin-bottom: 70px;
  background:
    radial-gradient(circle at top center, rgba(var(--cleanin-base-rgb), 0.1), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fe 100%);
}

.clients-section--home .section-head {
  margin-bottom: 30px;
}

.clients-section--home .section-head p,
.network-clients-section .section-head p {
  max-width: 680px;
  margin: 12px auto 0;
  color: #4b5f73;
}

.clients-slider-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.clients-section--home .clients-slider-viewport {
  padding: 24px 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.08);
  isolation: isolate;
}

.clients-section--home .clients-slider-viewport::before,
.clients-section--home .clients-slider-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 76px;
  z-index: 2;
  pointer-events: none;
}

.clients-section--home .clients-slider-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(244, 248, 255, 1) 0%, rgba(244, 248, 255, 0) 100%);
}

.clients-section--home .clients-slider-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(244, 248, 255, 1) 0%, rgba(244, 248, 255, 0) 100%);
}

.clients-slider {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.clients-section--home .clients-slider {
  gap: 22px;
  padding-right: 22px;
}

.client-item {
  flex: 0 0 220px;
}

.clients-section--home .client-item {
  transition: transform 0.35s ease;
}

.client-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
}

.clients-section--home .client-item a {
  min-height: 128px;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.08);
  box-shadow: 0 18px 38px rgba(var(--cleanin-black-rgb), 0.08);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.clients-section--home .client-item a:focus-visible {
  outline: 2px solid rgba(var(--cleanin-base-rgb), 0.32);
  outline-offset: 4px;
}

.client-item img {
  width: 100%;
}

.clients-section--home .client-item img {
  width: auto;
  max-width: 100%;
  height: 74px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition:
    filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.clients-section--home .client-item:hover {
  transform: translateY(-6px);
}

.clients-section--home .client-item:hover a,
.clients-section--home .client-item:focus-within a {
  border-color: rgba(var(--cleanin-base-rgb), 0.18);
  box-shadow: 0 24px 42px rgba(5, 41, 68, 0.14);
}

.clients-section--home .client-item:hover img,
.clients-section--home .client-item:focus-within img {
  transform: scale(1.04);
}

.network-clients-section {
  padding: 0 0 90px;
  background: linear-gradient(180deg, #eef5fc 0%, #ffffff 100%);
}

.network-clients-shell {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  box-shadow: 0 26px 56px rgba(var(--cleanin-black-rgb), 0.08);
}

.network-clients-section .section-head {
  margin-bottom: 30px;
}

.network-clients-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.network-client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.08);
  box-shadow: 0 18px 38px rgba(var(--cleanin-black-rgb), 0.07);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.network-client-card img {
  width: auto;
  max-width: 100%;
  /* height: 72px; */
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.network-client-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--cleanin-base-rgb), 0.18);
  box-shadow: 0 24px 44px rgba(5, 41, 68, 0.12);
}

.network-client-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 1199.98px) {
  .network-clients-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .clients-section--home .clients-slider-viewport {
    padding: 22px 20px;
    border-radius: 26px;
  }

  .clients-section--home .client-item {
    flex-basis: 190px;
  }

  .clients-section--home .client-item a {
    min-height: 112px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .clients-section--home .client-item img {
    height: 64px;
  }

  .network-clients-section {
    padding-bottom: 70px;
  }

  .network-clients-shell {
    padding: 28px 22px;
    border-radius: 28px;
  }

  .network-clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .network-client-card {
    min-height: 112px;
    padding: 18px 14px;
    border-radius: 20px;
  }

  .network-client-card img {
    height: 60px;
  }
}

@media (max-width: 767.98px) {
  .clients-section--home {
    padding-top: 10px;
    margin-bottom: 48px;
  }

  .clients-section .section-head {
    margin-bottom: 22px;
  }

  .clients-section--home .clients-slider-viewport {
    padding: 16px 14px;
    border-radius: 24px;
  }

  .clients-section--home .clients-slider-viewport::before,
  .clients-section--home .clients-slider-viewport::after {
    width: 40px;
  }

  .clients-section--home .clients-slider {
    gap: 14px;
    padding-right: 14px;
  }

  .client-item {
    flex-basis: 180px;
  }

  .client-item a {
    min-height: 96px;
  }

  .clients-section--home .client-item {
    flex-basis: 160px;
  }

  .clients-section--home .client-item a {
    min-height: 92px;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .client-item img {
    max-width: 140px;
    height: 70px;
  }

  .clients-section--home .client-item img {
    max-width: 130px;
    height: 50px;
  }

  .network-clients-section {
    padding-bottom: 55px;
  }

  .network-clients-shell {
    padding: 22px 16px;
    border-radius: 24px;
  }

  .network-clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .network-client-card {
    min-height: 92px;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .network-client-card img {
    height: 48px;
  }
}


.tag1{
  margin-top: 90px;
}

.ae-solution-section {
  padding: 80px 0 40px;
}

.ae-applications-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(var(--cleanin-base-rgb), 0.11), transparent 28%),
    linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.04) 0, rgba(var(--cleanin-base-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  background-size: auto, 24px 24px, auto;
  overflow: hidden;
}

.ae-industries-showcase,
.ae-applications-panel {
  position: relative;
  overflow: hidden;
  background: rgba(var(--cleanin-white-rgb), 0.98);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(var(--cleanin-black-rgb), 0.09);
  padding: 46px;
}

.ae-industries-showcase {
  margin-bottom: 34px;
}

.ae-industries-showcase__headline {
  margin-bottom: 34px;
}

.ae-industries-showcase::before,
.ae-applications-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--cleanin-base) 0%, #5ba7ef 100%);
}

.ae-applications-kicker {
  color: var(--cleanin-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Exo", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(var(--cleanin-base-rgb), 0.08);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
  text-transform: uppercase;
}

.ae-industries-hero {
  margin-bottom: 38px;
}

.ae-industries-hero__copy h2 {
  margin: 18px 0 16px;
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ae-industries-hero__copy p {
  margin: 0;
  max-width: 640px;
  color: var(--cleanin-gray);
  font-size: 17px;
  line-height: 1.8;
}

.ae-industries-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.ae-industries-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(var(--cleanin-base-rgb), 0.08);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
  color: var(--cleanin-black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ae-industries-feature {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(150deg, #0b5f9d 0%, #0a3d71 100%);
  box-shadow: 0 24px 54px rgba(8, 64, 111, 0.22);
}

.ae-industries-feature__media img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.ae-industries-feature__content {
  padding: 20px 24px 22px;
}

.ae-industries-feature__label {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ae-industries-feature h3 {
  margin: 0;
  color: var(--cleanin-white);
  font-family: var(--cleanin-font-two);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.22;
}

.ae-industries-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.75;
}

.ae-industry-grid {
  margin-top: 6px;
}

.ae-industry-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.07);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.ae-industry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--cleanin-base-rgb), 0.24);
  box-shadow: 0 26px 48px rgba(var(--cleanin-black-rgb), 0.1);
}

.ae-industry-card__media img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.ae-industry-card__body {
  padding: 20px 22px;
}

.ae-industry-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cleanin-base);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ae-industry-card h3 {
  margin: 0;
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.28;
}

.ae-industry-card p {
  margin: 0;
  color: var(--cleanin-gray);
  font-size: 15px;
  line-height: 1.75;
}

.ae-applications-panel__intro {
  max-width: 760px;
}

.ae-applications-panel__intro h2 {
  margin: 18px 0 14px;
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.ae-applications-panel__intro p {
  margin: 0;
  color: var(--cleanin-gray);
  font-size: 17px;
  line-height: 1.8;
}

.ae-applications-panel__summary {
  display: grid;
  gap: 14px;
}

.ae-applications-panel__metric {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfdff 0%, #eef5fc 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  box-shadow: 0 14px 36px rgba(var(--cleanin-black-rgb), 0.05);
}

.ae-applications-panel__metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-size: 28px;
  line-height: 1;
}

.ae-applications-panel__metric span {
  color: var(--cleanin-gray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ae-applications-body {
  margin-top: 30px;
}

.ae-applications-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ae-applications-item {
  color: var(--cleanin-black);
  font-family: "Exo", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 22px;
  min-height: 112px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 14px 36px rgba(var(--cleanin-black-rgb), 0.05);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.ae-applications-item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--cleanin-base-rgb), 0.28);
  box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.08);
}

.ae-applications-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: var(--cleanin-white);
  background: linear-gradient(180deg, #1ebcff 0%, var(--cleanin-base) 100%);
  font-size: 19px;
  flex: 0 0 auto;
}

.ae-solution-card {
  background: #ffffff;
  border: 1px solid rgba(15, 57, 87, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 57, 87, 0.08);
  padding: 42px;
}

.ae-solution-kicker {
  color: #0f3957;
  display: inline-block;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.ae-solution-copy p {
  color: #1c2b39;
  font-family: "Exo", sans-serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.65;
  margin: 0 0 12px;
}

.ae-solution-copy h2 {
  color: #0f3957;
  font-family: "Exo", sans-serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 26px;
}

.ae-solution-divider {
  border-top: 1px solid rgba(15, 57, 87, 0.14);
  margin: 18px 0 28px;
}

.ae-solution-figure {
  align-items: center;
  background: linear-gradient(180deg, #f7fafc 0%, #edf3f7 100%);
  border: 1px solid rgba(15, 57, 87, 0.1);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  min-height: 420px;
  padding: 24px;
}

.ae-solution-stage-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.ae-solution-stage {
  background: #ffffff;
  border: 1px solid rgba(15, 57, 87, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 57, 87, 0.06);
  padding: 30px 28px;
}

.ae-solution-note {
  margin-top: 28px;
}

.ae-solution-svg {
  height: auto;
  max-width: 100%;
}

@media (max-width: 991px) {
  .ae-applications-section {
    padding: 70px 0;
  }

  .ae-industries-showcase,
  .ae-applications-panel {
    padding: 28px;
  }

  .ae-industries-hero {
    margin-bottom: 30px;
  }

  .ae-industries-hero__copy h2 {
    font-size: 34px;
  }

  .ae-industries-feature__media img {
    height: 220px;
  }

  .ae-applications-panel__intro h2 {
    font-size: 32px;
  }

  .ae-applications-panel__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ae-applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ae-solution-section {
    padding: 90px 0 20px;
  }

  .ae-solution-card {
    padding: 28px;
  }

  .ae-solution-copy p {
    font-size: 18px;
  }

  .ae-solution-stage-grid {
    grid-template-columns: 1fr;
  }

  .ae-solution-figure {
    min-height: 320px;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .ae-industries-feature__content {
    padding: 22px 20px 24px;
  }

  .ae-applications-panel__summary {
    grid-template-columns: 1fr;
  }

  .ae-applications-grid {
    grid-template-columns: 1fr;
  }

  .ae-applications-item {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .ae-applications-section {
    padding: 55px 0;
  }

  .ae-industries-showcase,
  .ae-applications-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .ae-industries-hero__copy h2 {
    font-size: 28px;
  }

  .ae-industries-hero__chips {
    gap: 10px;
  }

  .ae-industries-hero__chips span {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .ae-industries-feature__media img,
  .ae-industry-card__media img {
    height: 200px;
  }

  .ae-industry-card__body {
    padding: 20px 18px 20px;
  }

  .ae-industry-card h3 {
    font-size: 22px;
  }

  .ae-applications-panel__intro h2 {
    font-size: 26px;
  }

  .ae-applications-panel__intro p {
    font-size: 16px;
  }

  .ae-applications-item {
    align-items: flex-start;
    padding: 16px;
  }
}


.form-container {
            width: 100%;
            max-width: 48rem; /* Equivalent to max-w-2xl */
            background-color: white;
            padding: 2rem; /* Equivalent to p-8 */
            border-radius: 1.5rem; /* Equivalent to rounded-2xl */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Equivalent to shadow-xl */
        }
        @media (min-width: 768px) {
            .form-container {
                padding: 3rem; /* Equivalent to md:p-12 */
            }
        }
        .form-heading {
            font-size: 1.875rem; /* Equivalent to text-3xl */
            font-weight: 700; /* Equivalent to font-bold */
            text-align: center;
            color: #1f2937; /* Equivalent to text-gray-800 */
            margin-bottom: 2rem; /* Equivalent to mb-8 */
        }
        .input-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 768px) {
            .input-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #d1d5db; /* Equivalent to border-gray-300 */
            border-radius: 0.5rem; /* Equivalent to rounded-lg */
            color: #1f2937;
            transition: all 0.2s ease-in-out;
        }
        .form-input::placeholder, .form-textarea::placeholder {
            color: #6b7280; /* Equivalent to placeholder-gray-500 */
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            box-shadow: 0 0 0 2px #3b82f6;
        }
        .form-textarea {
            height: 8rem;
            resize: none;
        }
        .file-upload-section {
            display: flex;
            flex-direction: column;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 768px) {
            .file-upload-section {
                flex-direction: row;
                align-items: center;
            }
        }
        .file-label {
            font-size: 1.125rem;
            font-weight: 500;
            color: #4b5563;
            margin-bottom: 0.5rem;
        }
        @media (min-width: 768px) {
            .file-label {
                width: 33.333333%;
                margin-bottom: 0;
            }
        }
        .captcha-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-top: 2rem;
            justify-content: space-between;
        }
        @media (min-width: 768px) {
            .captcha-section {
                flex-direction: row;
                align-items: center;
            }
        }
        .captcha-input-group {
            display: flex;
            flex-grow: 1;
            margin-bottom: 1rem;
        }
        @media (min-width: 768px) {
            .captcha-input-group {
                margin-bottom: 0;
            }
        }
        .captcha-label {
            display: block;
            color: #4b5563;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .captcha-content {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.25rem;
            font-weight: 700;
        }
        .captcha-refresh {
            color: #3b82f6;
            cursor: pointer;
            font-size: 1.125rem;
            transition: color 0.2s ease-in-out;
        }
        .captcha-refresh:hover {
            color: #1d4ed8;
        }
        .captcha-input {
            width: 4rem;
            padding: 0.5rem;
            border: 2px solid #d1d5db;
            border-radius: 0.5rem;
            text-align: center;
        }
        .submit-button {
            width: 100%;
            padding: 0.75rem 2rem;
            background-color: #2563eb;
            color: white;
            font-weight: 700;
            border-radius: 9999px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            cursor: pointer;
            transition: background-color 0.2s ease-in-out;
        }
        .submit-button:hover {
            background-color: #1d4ed8;
        }
        .error-message {
            color: #ef4444;
            font-size: 0.875rem;
            font-weight: 500;
            margin-top: 0.25rem;
        }
        .hidden {
            display: none;
        }
        .unvalid {
            border-color: #ef4444;
        }
        .valid {
            border-color: #10b981;
        }

/***
=============================================
Contact Us Redesign
=============================================
***/
.contact-page-info--redesigned {
    padding: 110px 0 50px;
    background:
        radial-gradient(circle at top left, rgba(var(--cleanin-base-rgb), 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.contact-page-info--redesigned .contact-page-info__intro {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-page-info--redesigned .contact-page-info__intro .sec-title {
    padding-bottom: 0;
}

.contact-page-info--redesigned .contact-page-info__intro .sec-title__tagline {
    justify-content: center;
}

.contact-page-info__intro-text {
    margin: 18px 0 0;
    font-size: 17px;
    line-height: 30px;
    color: #5d7188;
}

.contact-page-info--redesigned .contact-page-info__single {
    margin-bottom: 0;
    padding: 32px 30px;
    border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(7, 48, 83, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-page-info__grid > [class*="col-"] {
    display: flex;
}

.contact-page-info__grid .contact-page-info__single {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.contact-page-info--redesigned .contact-page-info__single:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--cleanin-base-rgb), 0.28);
    box-shadow: 0 28px 60px rgba(7, 48, 83, 0.14);
}

.contact-page-info__single-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-page-info--redesigned .contact-page-info__single-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--cleanin-base) 0%, #083860 100%);
    box-shadow: 0 14px 26px rgba(var(--cleanin-base-rgb), 0.22);
}

.contact-page-info--redesigned .contact-page-info__single-icon::before {
    display: none;
}

.contact-page-info--redesigned .contact-page-info__single-icon i {
    color: #ffffff;
    font-size: 24px;
}

.contact-page-info__single-label {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(var(--cleanin-base-rgb), 0.10);
    color: var(--cleanin-base);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-page-info--redesigned .contact-page-info__single h2 {
    margin-bottom: 14px;
    color: var(--cleanin-black);
    font-size: 28px;
    line-height: 1.25;
}

.contact-page-info__single-copy,
.contact-page-info__single-lines p {
    margin: 0;
    color: #5d7188;
    font-size: 15px;
    line-height: 28px;
}

.contact-page-info__single-links,
.contact-page-info__single-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page-info__single-links {
    margin-top: 20px;
}

.contact-page-info__single-links a {
    color: #14395c;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    word-break: break-word;
}

.contact-page-info__single-links a:hover {
    color: var(--cleanin-base);
}

.contact-page-info__region-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.contact-page-info__region-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(var(--cleanin-base-rgb), 0.10);
}

.contact-page-info__region-item:first-child {
    padding-top: 0;
    border-top: none;
}

.contact-page-info__region-title {
    color: var(--cleanin-black);
    font-family: var(--cleanin-font-two);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.contact-page-info__region-item a {
    color: #14395c;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    word-break: break-word;
}

.contact-page-info__region-item a:hover {
    color: var(--cleanin-base);
}

.contact-page-info__region-name {
    color: #5d7188;
    font-size: 15px;
    line-height: 1.7;
}

.contact-page-info__single-lines strong {
    color: var(--cleanin-black);
}

.contact-page--redesigned {
    padding: 20px 0 120px;
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 72%);
}

.contact-page--redesigned .contact-page__shell {
    overflow: hidden;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(var(--cleanin-base-rgb), 0.10);
    box-shadow: 0 28px 80px rgba(7, 48, 83, 0.12);
}

.contact-page--redesigned .contact-page__aside {
    position: relative;
    height: 100%;
    padding: 48px 40px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(180deg, #0d4e89 0%, #072d52 100%);
    color: #ffffff;
}

.contact-page__eyebrow {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-page--redesigned .contact-page__aside h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.contact-page__lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 30px;
}

.contact-page__feature-list {
    margin: 30px 0 34px;
    display: grid;
    gap: 14px;
}

.contact-page__feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    line-height: 28px;
}

.contact-page__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-page__detail-grid {
    display: grid;
    gap: 16px;
}

.contact-page__detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-page__detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-page__detail-copy h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.3;
}

.contact-page__detail-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 27px;
}

.contact-page__map-card {
    margin-top: 30px;
    padding: 18px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(6, 34, 58, 0.16);
}

.contact-page__map-head {
    margin-bottom: 14px;
}

.contact-page__map-label {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--cleanin-base);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-page__map-head h3 {
    margin: 0;
    color: var(--cleanin-black);
    font-size: 22px;
    line-height: 1.3;
}

.contact-page__map-frame iframe {
    display: block;
    width: 100%;
    height: 275px;
    border: 0;
    border-radius: 20px;
}

.contact-page--redesigned .contact-page__form-box {
    margin-top: 0;
}

.contact-page__form-box--modern {
    height: 100%;
    padding: 48px 44px;
}

.contact-page__form-head .sec-title {
    padding-bottom: 12px;
}

.contact-page__form-note {
    margin: 0 0 30px;
    color: #5d7188;
    font-size: 16px;
    line-height: 29px;
}

.contact-page--redesigned .input-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.contact-page__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page__field-label {
    color: #163a5d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.contact-page--redesigned .form-input,
.contact-page--redesigned .form-textarea {
    min-height: 58px;
    padding: 15px 18px;
    border: 1px solid rgba(var(--cleanin-base-rgb), 0.16);
    border-radius: 18px;
    background: #f7fbff;
    color: #18324a;
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-page--redesigned .form-input::placeholder,
.contact-page--redesigned .form-textarea::placeholder {
    color: #7a8ea4;
}

.contact-page--redesigned .form-input:focus,
.contact-page--redesigned .form-textarea:focus {
    border-color: rgba(var(--cleanin-base-rgb), 0.5);
    box-shadow: 0 0 0 4px rgba(var(--cleanin-base-rgb), 0.12);
}

.contact-page--redesigned .form-textarea {
    min-height: 180px;
    padding-top: 16px;
}

.contact-page__upload {
    margin-top: 22px;
    padding: 22px 24px;
    border: 1px dashed rgba(var(--cleanin-base-rgb), 0.28);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.06) 0%, rgba(var(--cleanin-base-rgb), 0.02) 100%);
}

.contact-page__file-input {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
    border-radius: 16px;
    background: #ffffff;
    color: #18324a;
}

.contact-page__upload-note {
    margin: 10px 0 0;
    color: #6f8398;
    font-size: 14px;
    line-height: 24px;
}

.contact-page--redesigned .captcha-section {
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
    border-radius: 24px;
    background: #eef6ff;
    gap: 20px;
    align-items: flex-end;
}

.contact-page--redesigned .captcha-input-group {
    display: block;
    flex: 1 1 auto;
    margin-bottom: 0;
}

.contact-page--redesigned .captcha-label {
    color: #163a5d;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}

.contact-page--redesigned .captcha-content {
    margin-top: 12px;
    padding: 14px 18px;
    width: fit-content;
    border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
    border-radius: 18px;
    background: #ffffff;
}

.contact-page--redesigned .submit__generated {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #163a5d;
    font-size: 20px;
    font-weight: 700;
}

.contact-page--redesigned .captcha-refresh {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(var(--cleanin-base-rgb), 0.10);
    color: var(--cleanin-base);
    transition: transform 0.2s ease, color 0.2s ease;
}

.contact-page--redesigned .captcha-refresh:hover {
    color: #083860;
    transform: rotate(25deg);
}

.contact-page--redesigned .captcha-input {
    width: 72px;
    min-height: 48px;
    padding: 8px 10px;
    border: 1px solid rgba(var(--cleanin-base-rgb), 0.16);
    border-radius: 14px;
    background: #f7fbff;
    color: #163a5d;
    font-size: 18px;
    font-weight: 700;
}

.contact-page__submit-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.contact-page--redesigned .submit-button {
    min-width: 220px;
    border: 0;
    padding: 16px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cleanin-base) 0%, #083860 100%);
    box-shadow: 0 18px 30px rgba(var(--cleanin-base-rgb), 0.22);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-page--redesigned .submit-button:hover {
    background: linear-gradient(135deg, #0f6cc5 0%, #072d52 100%);
}

.contact-page__submit-note {
    max-width: 270px;
    margin: 0;
    color: #6f8398;
    font-size: 13px;
    line-height: 22px;
    text-align: right;
}

.contact-page--redesigned .result {
    margin-top: 18px;
}

@media (max-width: 1199px) {
    .contact-page--redesigned .contact-page__aside,
    .contact-page__form-box--modern {
        padding: 40px 32px;
    }

    .contact-page--redesigned .contact-page__aside h2 {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .contact-page-info--redesigned {
        padding: 90px 0 36px;
    }

    .contact-page-info--redesigned .contact-page-info__single {
        max-width: none;
    }

    .contact-page--redesigned .contact-page__shell {
        border-radius: 28px;
    }

    .contact-page--redesigned .contact-page__form-box {
        margin-top: 0;
    }

    .contact-page__submit-box {
        align-items: flex-start;
    }

    .contact-page__submit-note {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .contact-page-info__intro-text {
        font-size: 15px;
        line-height: 28px;
    }

    .contact-page-info--redesigned .contact-page-info__single {
        padding: 26px 22px;
    }

    .contact-page-info--redesigned .contact-page-info__single h2 {
        font-size: 24px;
    }

    .contact-page-info__region-title,
    .contact-page-info__region-item a {
        font-size: 17px;
    }

    .contact-page--redesigned {
        padding-bottom: 90px;
    }

    .contact-page--redesigned .contact-page__aside,
    .contact-page__form-box--modern {
        padding: 30px 22px;
    }

    .contact-page--redesigned .contact-page__aside h2 {
        font-size: 30px;
    }

    .contact-page--redesigned .input-grid {
        grid-template-columns: 1fr;
    }

    .contact-page__upload,
    .contact-page--redesigned .captcha-section {
        padding: 20px 18px;
    }

    .contact-page--redesigned .captcha-content {
        width: 100%;
    }

    .contact-page--redesigned .submit__generated {
        flex-wrap: wrap;
    }

    .contact-page--redesigned .submit-button {
        width: 100%;
        min-width: 0;
    }
}

/***
=============================================
Fanless Induced Draft Cooling Tower
=============================================
***/
.fanless-product-section {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.06) 0, rgba(var(--cleanin-base-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
  background-size: 24px 24px, auto;
}

.fanless-product-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 8px;
  background: rgba(var(--cleanin-white-rgb), 0.98);
  box-shadow: 0 26px 70px rgba(var(--cleanin-black-rgb), 0.09);
}

.fanless-product-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--cleanin-base) 0%, #58a4ef 100%);
}

.fanless-product-panel::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -76px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(var(--cleanin-base-rgb), 0.07);
  pointer-events: none;
}

.fanless-product-content h2,
.fanless-product-content h3 {
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-weight: 800;
}

.fanless-product-content h2 {
  margin: 0 0 20px;
  font-size: 40px;
  line-height: 1.2;
}

.fanless-product-content h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
}

.fanless-product-content p {
  margin: 0 0 16px;
  color: var(--cleanin-black);
  font-size: 17px;
  line-height: 1.8;
}

.fanless-product-content strong {
  color: var(--cleanin-black);
  font-weight: 800;
}

.fanless-benefits {
  margin: 30px 0 34px;
  padding: 24px;
  border-left: 4px solid var(--cleanin-base);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: 0 18px 48px rgba(var(--cleanin-black-rgb), 0.07);
}

.fanless-benefits ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fanless-benefits li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
  border-radius: 8px;
  color: var(--cleanin-black);
  background: #f8fbff;
  font-family: var(--cleanin-font-two);
  font-weight: 700;
  line-height: 1.35;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.fanless-benefits li:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--cleanin-base-rgb), 0.3);
  box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.08);
}

.fanless-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--cleanin-white);
  background: var(--cleanin-base);
  font-size: 16px;
  flex: 0 0 auto;
}

.fanless-detail-card,
.fanless-material {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: 0 16px 42px rgba(var(--cleanin-black-rgb), 0.06);
}

.fanless-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: 0 14px 36px rgba(var(--cleanin-black-rgb), 0.06);
}

.fanless-table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.fanless-table-wrap caption {
  caption-side: top;
  padding: 14px 16px;
  color: var(--cleanin-white);
  background: var(--cleanin-base);
  font-family: var(--cleanin-font-two);
  font-weight: 800;
  text-align: left;
}

.fanless-table-wrap th,
.fanless-table-wrap td {
  padding: 14px 16px;
  border: 1px solid rgba(var(--cleanin-black-rgb), 0.08);
  color: var(--cleanin-black);
  font-size: 16px;
  line-height: 1.5;
  vertical-align: top;
}

.fanless-table-wrap th {
  width: 32%;
  background: #edf5fd;
  font-family: var(--cleanin-font-two);
  font-weight: 800;
}

.fanless-nozzle-table th,
.fanless-nozzle-table td {
  text-align: center;
}

.fanless-material > p {
  font-style: italic;
}

.fanless-product-visuals {
  position: sticky;
  top: 115px;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.08), rgba(var(--cleanin-base-rgb), 0)),
    var(--cleanin-white);
  box-shadow: 0 22px 55px rgba(var(--cleanin-black-rgb), 0.1);
}

.fanless-product-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.16);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: none;
}

.fanless-product-image img {
  display: block;
  width: 100%;
  height: auto;
}

.fanless-product-image--large img {
  height: 360px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .fanless-product-section {
    padding: 70px 0;
  }

  .fanless-product-content h2 {
    font-size: 34px;
  }

  .fanless-benefits ul {
    grid-template-columns: 1fr;
  }

  .fanless-product-visuals {
    position: static;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .fanless-product-section {
    padding: 55px 0;
  }

  .fanless-product-content h2 {
    font-size: 28px;
  }

  .fanless-product-content h3 {
    font-size: 21px;
  }

  .fanless-benefits {
    padding: 18px;
  }

  .fanless-product-panel,
  .fanless-detail-card,
  .fanless-material {
    padding: 16px;
  }

  .fanless-table-wrap th,
  .fanless-table-wrap td {
    padding: 12px;
    font-size: 15px;
  }

  .fanless-product-image--large img {
    height: 240px;
  }
}

/***
=============================================
Pultruded FRP Cooling Tower
=============================================
***/
.pultruded-product-section {
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.05) 0, rgba(var(--cleanin-base-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  background-size: 24px 24px, auto;
}

.pultruded-product-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 8px;
  background: rgba(var(--cleanin-white-rgb), 0.98);
  box-shadow: 0 26px 70px rgba(var(--cleanin-black-rgb), 0.09);
}

.pultruded-product-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--cleanin-base) 0%, #58a4ef 100%);
}

.pultruded-product-panel::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -76px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(var(--cleanin-base-rgb), 0.07);
  pointer-events: none;
}

.cooling-fills-section .pultruded-product-panel {
  padding-top: 28px;
}

.cooling-fills-heading {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(var(--cleanin-black-rgb), 0.12);
  text-align: center;
}

.cooling-fills-heading h2 {
  margin: 0;
  color: #33415c;
  font-size: 31px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 700;
}

.cooling-fills-section .pultruded-product-content p,
.cooling-fills-section .pultruded-content-block p {
  font-style: italic;
}

.cooling-fills-section .pultruded-content-block {
  margin-top: 28px;
  padding: 24px 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(var(--cleanin-black-rgb), 0.10);
}

.cooling-fills-section .thm-btn {
  min-width: 148px;
  justify-content: center;
}

.forced-draft-section .pultruded-content-block h3 {
  color: #1f5fbf;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
}

.pultruded-product-content h2,
.pultruded-product-content h3,
.pultruded-content-block h2,
.pultruded-content-block h3 {
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-weight: 800;
}

.pultruded-product-content h2,
.pultruded-content-block h2 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.22;
}

.pultruded-product-content h3,
.pultruded-content-block h3 {
  margin: 0 0 16px;
  font-size: 23px;
  line-height: 1.3;
}

.pultruded-product-content p,
.pultruded-content-block p,
.pultruded-rich-list li,
.pultruded-spec-item {
  color: var(--cleanin-black);
  font-size: 17px;
  line-height: 1.8;
}

.pultruded-product-content p,
.pultruded-content-block p {
  margin: 0 0 16px;
}

.pultruded-product-content strong,
.pultruded-content-block strong,
.pultruded-rich-list strong,
.pultruded-spec-item strong {
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-weight: 800;
}

.pultruded-product-content--wide {
  margin-top: 34px;
  padding: 24px;
  border-left: 4px solid var(--cleanin-base);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: 0 16px 42px rgba(var(--cleanin-black-rgb), 0.06);
}

.pultruded-product-content--wide p {
  margin-bottom: 0;
}

.pultruded-product-visuals {
  position: sticky;
  top: 115px;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.08), rgba(var(--cleanin-base-rgb), 0)),
    var(--cleanin-white);
  box-shadow: 0 22px 55px rgba(var(--cleanin-black-rgb), 0.1);
}

.pultruded-product-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.16);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: none;
}

.pultruded-product-image img {
  display: block;
  width: 100%;
  height: auto;
}

.pultruded-product-image--large img {
  height: 360px;
  object-fit: cover;
}

.pultruded-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.pultruded-spec-item {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: 0 14px 34px rgba(var(--cleanin-black-rgb), 0.055);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.pultruded-spec-item::before,
.pultruded-rich-list li::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--cleanin-base);
}

.pultruded-spec-item:hover,
.pultruded-rich-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--cleanin-base-rgb), 0.3);
  box-shadow: 0 20px 48px rgba(var(--cleanin-black-rgb), 0.09);
}

.pultruded-spec-item:nth-child(9) {
  grid-column: 1 / -1;
}

.pultruded-content-block {
  margin-top: 42px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(var(--cleanin-base-rgb), 0.15);
}

.pultruded-rich-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pultruded-rich-list--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pultruded-rich-list li {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 8px;
  background: #fbfdff;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.pultruded-content-block .pultruded-rich-list + h3 {
  margin-top: 30px;
}

.closed-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: 0 16px 42px rgba(var(--cleanin-black-rgb), 0.055);
}

.closed-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.closed-table th,
.closed-table td {
  padding: 14px 16px;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  color: var(--cleanin-black);
  font-size: 15px;
  line-height: 1.65;
  vertical-align: top;
}

.closed-table th {
  background: rgba(var(--cleanin-base-rgb), 0.13);
  font-family: var(--cleanin-font-two);
  font-weight: 800;
}

.closed-table tbody tr:nth-child(even):not(.closed-table-section) td {
  background: #f5f8fb;
}

.closed-table tbody tr:hover:not(.closed-table-section) td {
  background: rgba(var(--cleanin-base-rgb), 0.06);
}

.closed-category-table {
  min-width: 700px;
}

.closed-category-table td {
  color: var(--cleanin-base);
  font-weight: 600;
}

.closed-category-table .closed-table-section td {
  color: var(--cleanin-black);
  background: rgba(var(--cleanin-base-rgb), 0.13);
  font-family: var(--cleanin-font-two);
  font-weight: 800;
}

.square-detail-table {
  min-width: 560px;
}

.square-detail-table td:first-child {
  color: var(--cleanin-black);
  font-family: var(--cleanin-font-two);
  font-weight: 800;
}

.closed-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.closed-faq-item {
  overflow: hidden;
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
  border-radius: 8px;
  background: var(--cleanin-white);
  box-shadow: 0 14px 34px rgba(var(--cleanin-black-rgb), 0.05);
}

.closed-faq-question {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 16px 46px 16px 18px;
  border: 0;
  background: #eef7fd;
  color: var(--cleanin-black);
  text-align: left;
  font-family: var(--cleanin-font-two);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  transition: background-color 300ms ease, color 300ms ease;
}

.closed-faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--cleanin-base);
  font-size: 22px;
  font-weight: 800;
  transform: translateY(-50%);
}

.closed-faq-question:not(.collapsed)::after {
  content: "-";
}

.closed-faq-question:focus,
.closed-faq-question:hover {
  background: rgba(var(--cleanin-base-rgb), 0.14);
  color: var(--cleanin-base);
  outline: none;
}

.closed-faq-answer {
  padding: 18px;
}

.closed-faq-answer p {
  margin: 0;
  color: var(--cleanin-black);
  font-size: 17px;
  line-height: 1.8;
}

.network-map-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(var(--cleanin-base-rgb), 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
}

.network-map-single {
  padding: 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
  border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
  box-shadow: 0 24px 56px rgba(var(--cleanin-black-rgb), 0.08);
}

.network-region-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding: 28px 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #0d6fb6 0%, #0a4e90 100%);
  box-shadow: 0 24px 54px rgba(10, 68, 119, 0.2);
}

.network-region-board__column {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.network-region-board__column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(51, 203, 255, 0) 0%, rgba(51, 203, 255, 0.9) 18%, rgba(51, 203, 255, 0.9) 82%, rgba(51, 203, 255, 0) 100%);
}

.network-region-board__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0 auto 22px;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1ebcff 0%, #18a2ef 100%);
  color: var(--cleanin-white);
  font-family: var(--cleanin-font-two);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.08);
}

.network-region-board__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.network-region-board__list li {
  color: var(--cleanin-white);
  font-family: var(--cleanin-font-two);
  font-size: 18px;
  line-height: 1.5;
}

.network-region-board__list li + li {
  margin-top: 4px;
}

.network-map-single__figure {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #eff6fd;
}

.network-map-single__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(6, 52, 97, 0.03) 100%);
  pointer-events: none;
}

.network-map-single__figure img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.04) contrast(1.02);
}

.network-world-pin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: default;
}

.network-world-pin__pulse,
.network-world-pin__dot {
  position: absolute;
  border-radius: 50%;
}

.network-world-pin__pulse {
  width: 34px;
  height: 34px;
  background: rgba(255, 51, 79, 0.08);
  border: 2px solid rgba(234, 35, 63, 0.28);
  animation: networkPulse 2.8s infinite;
  animation-delay: var(--pin-delay);
}

.network-world-pin__dot {
  display: none;
}

.network-world-pin__label {
  display: none;
}

.network-world-pin:focus-visible {
  outline: none;
}

@keyframes networkPulse {
  0% {
    transform: scale(0.7);
    opacity: 0.85;
  }

  70% {
    transform: scale(1.9);
    opacity: 0;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .pultruded-product-section {
    padding: 70px 0;
  }

  .pultruded-product-content h2,
  .pultruded-content-block h2 {
    font-size: 32px;
  }

  .pultruded-product-visuals {
    position: static;
    margin-top: 10px;
  }

  .pultruded-spec-grid,
  .pultruded-rich-list--grid {
    grid-template-columns: 1fr;
  }

  .pultruded-spec-item:nth-child(9) {
    grid-column: auto;
  }

  .network-map-section {
    padding: 70px 0;
  }

  .network-map-single {
    padding: 14px;
  }

  .network-region-board {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 22px;
  }

  .network-region-board__column {
    padding: 0;
  }

  .network-region-board__column:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 50%;
    width: min(220px, 100%);
    height: 2px;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .pultruded-product-section {
    padding: 55px 0;
  }

  .pultruded-product-content h2,
  .pultruded-content-block h2 {
    font-size: 27px;
  }

  .pultruded-product-content h3,
  .pultruded-content-block h3 {
    font-size: 21px;
  }

  .pultruded-product-content--wide,
  .pultruded-product-panel,
  .pultruded-spec-item,
  .pultruded-rich-list li {
    padding: 16px;
  }

  .closed-table th,
  .closed-table td {
    padding: 12px;
    font-size: 14px;
  }

  .closed-faq-question {
    padding: 14px 40px 14px 14px;
    font-size: 17px;
  }

  .closed-faq-answer {
    padding: 14px;
  }

  .pultruded-product-image--large img {
    height: 240px;
  }

  .network-map-section {
    padding: 55px 0;
  }

  .network-map-single {
    padding: 10px;
    border-radius: 24px;
  }

  .network-region-board {
    margin-top: 20px;
    padding: 18px 16px;
    border-radius: 22px;
  }

  .network-map-single__figure {
    border-radius: 18px;
  }

  .network-map-single__figure img {
    height: auto;
  }

  .network-region-board__pill {
    min-height: 50px;
    margin-bottom: 16px;
    font-size: 18px;
  }

  .network-region-board__list li {
    font-size: 16px;
  }

}


/* Internal Page CSS migrated from page <style> blocks */

/* Moved from closed-loop.html */
        body.page-closed-loop .closed-loop-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.12);
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        body.page-closed-loop .closed-loop-chip::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-closed-loop .closed-loop-lead {
            margin-bottom: 18px;
            font-size: 22px;
            line-height: 1.45;
        }

        body.page-closed-loop .closed-loop-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        body.page-closed-loop .closed-loop-highlight {
            padding: 22px 18px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff);
            box-shadow: 0 16px 38px rgba(var(--cleanin-black-rgb), 0.06);
        }

        body.page-closed-loop .closed-loop-highlight span {
            display: block;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.5;
        }

        body.page-closed-loop .closed-loop-visuals .pultruded-product-image {
            position: relative;
        }

        body.page-closed-loop .closed-loop-visuals .pultruded-product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 29, 53, 0) 45%, rgba(10, 29, 53, 0.48) 100%);
            pointer-events: none;
        }

        body.page-closed-loop .closed-loop-visuals__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        body.page-closed-loop .closed-loop-visuals__meta span {
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 14px;
            font-weight: 700;
        }

        body.page-closed-loop .closed-loop-overview {
            height: 100%;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(160deg, rgba(var(--cleanin-base-rgb), 0.1), rgba(var(--cleanin-base-rgb), 0.02) 70%, #ffffff 100%);
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-closed-loop .closed-loop-overview h2 {
            margin-top: 18px;
            margin-bottom: 18px;
        }

        body.page-closed-loop .closed-loop-series-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            height: 100%;
        }

        body.page-closed-loop .closed-loop-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            box-shadow: 0 18px 44px rgba(var(--cleanin-black-rgb), 0.08);
            text-decoration: none;
            transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
        }

        body.page-closed-loop .closed-loop-series-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--cleanin-base-rgb), 0.28);
            box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.12);
        }

        body.page-closed-loop .closed-loop-series-card__number {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--cleanin-base);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 20px;
            font-weight: 800;
        }

        body.page-closed-loop .closed-loop-series-card h3 {
            margin: 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 28px;
            font-weight: 800;
            line-height: 1.35;
        }

        body.page-closed-loop .closed-loop-series-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.8;
        }

        body.page-closed-loop .closed-loop-series-card__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 15px;
            font-weight: 800;
        }

        body.page-closed-loop .closed-loop-section .pultruded-content-block + .pultruded-content-block {
            display: none;
        }

        @media (max-width: 991px) {
            .closed-loop-highlights,
            body.page-closed-loop .closed-loop-series-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body.page-closed-loop .closed-loop-lead {
                font-size: 20px;
            }

            .closed-loop-overview,
            body.page-closed-loop .closed-loop-series-card {
                padding: 24px;
            }

            body.page-closed-loop .closed-loop-series-card h3 {
                font-size: 24px;
            }
        }
    

/* Moved from cross-flow.html */
        body.page-cross-flow .closed-loop-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.12);
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        body.page-cross-flow .closed-loop-chip::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-cross-flow .closed-loop-lead {
            margin-bottom: 18px;
            font-size: 22px;
            line-height: 1.45;
        }

        body.page-cross-flow .closed-loop-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        body.page-cross-flow .closed-loop-highlight {
            padding: 22px 18px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff);
            box-shadow: 0 16px 38px rgba(var(--cleanin-black-rgb), 0.06);
        }

        body.page-cross-flow .closed-loop-highlight span {
            display: block;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.5;
        }

        body.page-cross-flow .closed-loop-visuals .pultruded-product-image {
            position: relative;
        }

        body.page-cross-flow .closed-loop-visuals .pultruded-product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 29, 53, 0) 45%, rgba(10, 29, 53, 0.48) 100%);
            pointer-events: none;
        }

        body.page-cross-flow .closed-loop-visuals__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        body.page-cross-flow .closed-loop-visuals__meta span {
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 14px;
            font-weight: 700;
        }

        body.page-cross-flow .product-video-section {
            margin-top: 42px;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff 72%);
            box-shadow: 0 20px 46px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-cross-flow .product-video-section__head {
            margin-bottom: 18px;
        }

        body.page-cross-flow .product-video-section__head h2 {
            margin: 16px 0 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
        }

        body.page-cross-flow .product-video-stage {
            overflow: hidden;
            border-radius: 10px;
            background: #08111d;
            box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.16);
        }

        body.page-cross-flow .product-video-stage video {
            display: block;
            width: 100%;
            height: 480px;
            background: #000000;
            object-fit: cover;
        }

        body.page-cross-flow .features-video-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
            gap: 28px;
            align-items: start;
            margin-top: 18px;
        }

        body.page-cross-flow .product-video-section--aside {
            margin-top: 0;
            padding: 24px;
        }

        body.page-cross-flow .product-video-section--aside .product-video-section__head h2 {
            font-size: 24px;
        }

        body.page-cross-flow .product-video-section--aside .product-video-stage video {
            height: 340px;
        }

        body.page-cross-flow .closed-loop-overview {
            height: 100%;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(160deg, rgba(var(--cleanin-base-rgb), 0.1), rgba(var(--cleanin-base-rgb), 0.02) 70%, #ffffff 100%);
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-cross-flow .closed-loop-overview h2 {
            margin-top: 18px;
            margin-bottom: 18px;
        }

        body.page-cross-flow .closed-loop-series-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            height: 100%;
        }

        body.page-cross-flow .closed-loop-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            box-shadow: 0 18px 44px rgba(var(--cleanin-black-rgb), 0.08);
            text-decoration: none;
            transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
        }

        body.page-cross-flow .closed-loop-series-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--cleanin-base-rgb), 0.28);
            box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.12);
        }

        body.page-cross-flow .closed-loop-series-card__number {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--cleanin-base);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 20px;
            font-weight: 800;
        }

        body.page-cross-flow .closed-loop-series-card h3 {
            margin: 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 28px;
            font-weight: 800;
            line-height: 1.35;
        }

        body.page-cross-flow .closed-loop-series-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.8;
        }

        body.page-cross-flow .closed-loop-series-card__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 15px;
            font-weight: 800;
        }

        .closed-loop-section .pultruded-content-block + .pultruded-content-block,
        body.page-cross-flow .closed-loop-section .product-video-section + .pultruded-content-block {
            display: none;
        }

        body.page-cross-flow .crossflow-principle-box {
            position: relative;
            margin-top: 18px;
            padding: 28px 28px 28px 34px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.12) 0%, #ffffff 78%);
            box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.08);
            overflow: hidden;
        }

        body.page-cross-flow .crossflow-principle-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--cleanin-base) 0%, #58a4ef 100%);
        }

        body.page-cross-flow .crossflow-principle-box p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 18px;
            line-height: 1.9;
        }

        body.page-cross-flow .crossflow-advantages-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        body.page-cross-flow .crossflow-advantages-list li {
            position: relative;
            padding: 22px 20px 22px 58px;
            border-radius: 10px;
            background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
            box-shadow: 0 16px 34px rgba(var(--cleanin-black-rgb), 0.07);
        }

        body.page-cross-flow .crossflow-advantages-list li::before {
            content: "";
            position: absolute;
            top: 24px;
            left: 22px;
            width: 16px;
            height: 16px;
            margin: 0;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        @media (max-width: 991px) {
            .closed-loop-highlights,
            .closed-loop-series-grid,
            body.page-cross-flow .features-video-layout {
                grid-template-columns: 1fr;
            }

            body.page-cross-flow .crossflow-advantages-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body.page-cross-flow .closed-loop-lead {
                font-size: 20px;
            }

            .closed-loop-overview,
            body.page-cross-flow .closed-loop-series-card {
                padding: 24px;
            }

            body.page-cross-flow .closed-loop-series-card h3 {
                font-size: 24px;
            }

            body.page-cross-flow .product-video-stage video {
                height: 360px;
            }

            body.page-cross-flow .product-video-section--aside {
                padding: 20px;
            }

            body.page-cross-flow .product-video-section--aside .product-video-section__head h2 {
                font-size: 22px;
            }

            body.page-cross-flow .crossflow-principle-box {
                padding: 24px 22px 24px 28px;
            }

            body.page-cross-flow .crossflow-principle-box p {
                font-size: 17px;
            }

            body.page-cross-flow .crossflow-advantages-list li {
                padding: 20px 18px 20px 52px;
            }
        }
    

/* Moved from counter-flow.html */
        body.page-counter-flow .closed-loop-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.12);
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        body.page-counter-flow .closed-loop-chip::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-counter-flow .closed-loop-lead {
            margin-bottom: 18px;
            font-size: 22px;
            line-height: 1.45;
        }

        body.page-counter-flow .closed-loop-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        body.page-counter-flow .closed-loop-highlight {
            padding: 22px 18px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff);
            box-shadow: 0 16px 38px rgba(var(--cleanin-black-rgb), 0.06);
        }

        body.page-counter-flow .closed-loop-highlight span {
            display: block;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.5;
        }

        body.page-counter-flow .closed-loop-visuals .pultruded-product-image {
            position: relative;
        }

        body.page-counter-flow .closed-loop-visuals .pultruded-product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 29, 53, 0) 45%, rgba(10, 29, 53, 0.48) 100%);
            pointer-events: none;
        }

        body.page-counter-flow .closed-loop-visuals__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        body.page-counter-flow .closed-loop-visuals__meta span {
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 14px;
            font-weight: 700;
        }

        body.page-counter-flow .product-video-section {
            margin-top: 42px;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff 72%);
            box-shadow: 0 20px 46px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-counter-flow .product-video-section__head {
            margin-bottom: 18px;
        }

        body.page-counter-flow .product-video-section__head h2 {
            margin: 16px 0 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
        }

        body.page-counter-flow .product-video-stage {
            overflow: hidden;
            border-radius: 10px;
            background: #08111d;
            box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.16);
        }

        body.page-counter-flow .product-video-stage video {
            display: block;
            width: 100%;
            height: 480px;
            background: #000000;
            object-fit: cover;
        }

        body.page-counter-flow .features-video-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
            gap: 28px;
            align-items: start;
            margin-top: 18px;
        }

        body.page-counter-flow .product-video-section--aside {
            margin-top: 0;
            padding: 24px;
        }

        body.page-counter-flow .product-video-section--aside .product-video-section__head h2 {
            font-size: 24px;
        }

        body.page-counter-flow .product-video-section--aside .product-video-stage video {
            height: 340px;
        }

        body.page-counter-flow .closed-loop-overview {
            height: 100%;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(160deg, rgba(var(--cleanin-base-rgb), 0.1), rgba(var(--cleanin-base-rgb), 0.02) 70%, #ffffff 100%);
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-counter-flow .closed-loop-overview h2 {
            margin-top: 18px;
            margin-bottom: 18px;
        }

        body.page-counter-flow .closed-loop-series-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            height: 100%;
        }

        body.page-counter-flow .closed-loop-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            box-shadow: 0 18px 44px rgba(var(--cleanin-black-rgb), 0.08);
            text-decoration: none;
            transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
        }

        body.page-counter-flow .closed-loop-series-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--cleanin-base-rgb), 0.28);
            box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.12);
        }

        body.page-counter-flow .closed-loop-series-card__number {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--cleanin-base);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 20px;
            font-weight: 800;
        }

        body.page-counter-flow .closed-loop-series-card h3 {
            margin: 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 28px;
            font-weight: 800;
            line-height: 1.35;
        }

        body.page-counter-flow .closed-loop-series-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.8;
        }

        body.page-counter-flow .closed-loop-series-card__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 15px;
            font-weight: 800;
        }

        .closed-loop-section .pultruded-content-block + .pultruded-content-block,
        body.page-counter-flow .closed-loop-section .product-video-section + .pultruded-content-block {
            display: none;
        }

        body.page-counter-flow .counterflow-principle-box {
            position: relative;
            margin-top: 18px;
            padding: 28px 28px 28px 34px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.12) 0%, #ffffff 78%);
            box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.08);
            overflow: hidden;
        }

        body.page-counter-flow .counterflow-principle-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--cleanin-base) 0%, #58a4ef 100%);
        }

        body.page-counter-flow .counterflow-principle-box p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 18px;
            line-height: 1.9;
        }

        body.page-counter-flow .counterflow-advantages-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        body.page-counter-flow .counterflow-advantages-list li {
            position: relative;
            padding: 22px 20px 22px 58px;
            border-radius: 10px;
            background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
            box-shadow: 0 16px 34px rgba(var(--cleanin-black-rgb), 0.07);
        }

        body.page-counter-flow .counterflow-advantages-list li::before {
            content: "";
            position: absolute;
            top: 24px;
            left: 22px;
            width: 16px;
            height: 16px;
            margin: 0;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        @media (max-width: 991px) {
            .closed-loop-highlights,
            .closed-loop-series-grid,
            body.page-counter-flow .features-video-layout {
                grid-template-columns: 1fr;
            }

            body.page-counter-flow .counterflow-advantages-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body.page-counter-flow .closed-loop-lead {
                font-size: 20px;
            }

            .closed-loop-overview,
            body.page-counter-flow .closed-loop-series-card {
                padding: 24px;
            }

            body.page-counter-flow .closed-loop-series-card h3 {
                font-size: 24px;
            }

            body.page-counter-flow .product-video-stage video {
                height: 360px;
            }

            body.page-counter-flow .product-video-section--aside {
                padding: 20px;
            }

            body.page-counter-flow .product-video-section--aside .product-video-section__head h2 {
                font-size: 22px;
            }

            body.page-counter-flow .counterflow-principle-box {
                padding: 24px 22px 24px 28px;
            }

            body.page-counter-flow .counterflow-principle-box p {
                font-size: 17px;
            }

            body.page-counter-flow .counterflow-advantages-list li {
                padding: 20px 18px 20px 52px;
            }
        }
    

/* Moved from fanless.html */
        body.page-fanless .closed-loop-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.12);
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        body.page-fanless .closed-loop-chip::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-fanless .closed-loop-lead {
            margin-bottom: 18px;
            font-size: 22px;
            line-height: 1.45;
        }

        body.page-fanless .closed-loop-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        body.page-fanless .closed-loop-highlight {
            padding: 22px 18px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff);
            box-shadow: 0 16px 38px rgba(var(--cleanin-black-rgb), 0.06);
        }

        body.page-fanless .closed-loop-highlight span {
            display: block;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.5;
        }

        body.page-fanless .closed-loop-visuals .pultruded-product-image {
            position: relative;
        }

        body.page-fanless .closed-loop-visuals .pultruded-product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 29, 53, 0) 45%, rgba(10, 29, 53, 0.48) 100%);
            pointer-events: none;
        }

        body.page-fanless .closed-loop-visuals__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        body.page-fanless .closed-loop-visuals__meta span {
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 14px;
            font-weight: 700;
        }

        body.page-fanless .product-video-section {
            margin-top: 42px;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff 72%);
            box-shadow: 0 20px 46px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-fanless .product-video-section__head {
            margin-bottom: 18px;
        }

        body.page-fanless .product-video-section__head h2 {
            margin: 16px 0 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
        }

        body.page-fanless .product-video-stage {
            overflow: hidden;
            border-radius: 10px;
            background: #08111d;
            box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.16);
        }

        body.page-fanless .product-video-stage video {
            display: block;
            width: 100%;
            height: 480px;
            background: #000000;
            object-fit: cover;
        }

        body.page-fanless .closed-loop-overview {
            height: 100%;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(160deg, rgba(var(--cleanin-base-rgb), 0.1), rgba(var(--cleanin-base-rgb), 0.02) 70%, #ffffff 100%);
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-fanless .closed-loop-overview h2 {
            margin-top: 18px;
            margin-bottom: 18px;
        }

        body.page-fanless .closed-loop-series-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            height: 100%;
        }

        body.page-fanless .closed-loop-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            box-shadow: 0 18px 44px rgba(var(--cleanin-black-rgb), 0.08);
            text-decoration: none;
            transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
        }

        body.page-fanless .closed-loop-series-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--cleanin-base-rgb), 0.28);
            box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.12);
        }

        body.page-fanless .closed-loop-series-card__number {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--cleanin-base);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 20px;
            font-weight: 800;
        }

        body.page-fanless .closed-loop-series-card h3 {
            margin: 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 28px;
            font-weight: 800;
            line-height: 1.35;
        }

        body.page-fanless .closed-loop-series-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.8;
        }

        body.page-fanless .closed-loop-series-card__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 15px;
            font-weight: 800;
        }

        .closed-loop-section .pultruded-content-block + .pultruded-content-block,
        body.page-fanless .closed-loop-section .product-video-section + .pultruded-content-block {
            display: none;
        }

        body.page-fanless .counterflow-principle-box {
            position: relative;
            margin-top: 18px;
            padding: 28px 28px 28px 34px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.12) 0%, #ffffff 78%);
            box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.08);
            overflow: hidden;
        }

        body.page-fanless .counterflow-principle-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--cleanin-base) 0%, #58a4ef 100%);
        }

        body.page-fanless .counterflow-principle-box p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 18px;
            line-height: 1.9;
        }

        body.page-fanless .counterflow-advantages-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        body.page-fanless .counterflow-advantages-list li {
            position: relative;
            padding: 22px 20px 22px 58px;
            border-radius: 10px;
            background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
            box-shadow: 0 16px 34px rgba(var(--cleanin-black-rgb), 0.07);
        }

        body.page-fanless .counterflow-advantages-list li::before {
            content: "";
            position: absolute;
            top: 24px;
            left: 22px;
            width: 16px;
            height: 16px;
            margin: 0;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        @media (max-width: 991px) {
            .closed-loop-highlights,
            body.page-fanless .closed-loop-series-grid {
                grid-template-columns: 1fr;
            }

            body.page-fanless .counterflow-advantages-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body.page-fanless .closed-loop-lead {
                font-size: 20px;
            }

            .closed-loop-overview,
            body.page-fanless .closed-loop-series-card {
                padding: 24px;
            }

            body.page-fanless .closed-loop-series-card h3 {
                font-size: 24px;
            }

            body.page-fanless .product-video-stage video {
                height: 360px;
            }

            body.page-fanless .counterflow-principle-box {
                padding: 24px 22px 24px 28px;
            }

            body.page-fanless .counterflow-principle-box p {
                font-size: 17px;
            }

            body.page-fanless .counterflow-advantages-list li {
                padding: 20px 18px 20px 52px;
            }
        }
    

/* Moved from openloop-counterflow.html */
        body.page-openloop-counterflow .closed-loop-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.12);
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        body.page-openloop-counterflow .closed-loop-chip::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-openloop-counterflow .closed-loop-lead {
            margin-bottom: 18px;
            font-size: 22px;
            line-height: 1.45;
        }

        body.page-openloop-counterflow .closed-loop-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        body.page-openloop-counterflow .closed-loop-highlight {
            padding: 22px 18px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff);
            box-shadow: 0 16px 38px rgba(var(--cleanin-black-rgb), 0.06);
        }

        body.page-openloop-counterflow .closed-loop-highlight span {
            display: block;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.5;
        }

        body.page-openloop-counterflow .closed-loop-visuals .pultruded-product-image {
            position: relative;
        }

        body.page-openloop-counterflow .closed-loop-visuals .pultruded-product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 29, 53, 0) 45%, rgba(10, 29, 53, 0.48) 100%);
            pointer-events: none;
        }

        body.page-openloop-counterflow .closed-loop-visuals__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        body.page-openloop-counterflow .closed-loop-visuals__meta span {
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 14px;
            font-weight: 700;
        }

        body.page-openloop-counterflow .product-video-section {
            margin-top: 42px;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff 72%);
            box-shadow: 0 20px 46px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-openloop-counterflow .product-video-section__head {
            margin-bottom: 18px;
        }

        body.page-openloop-counterflow .product-video-section__head h2 {
            margin: 16px 0 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
        }

        body.page-openloop-counterflow .product-video-stage {
            overflow: hidden;
            border-radius: 10px;
            background: #08111d;
            box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.16);
        }

        body.page-openloop-counterflow .product-video-stage video {
            display: block;
            width: 100%;
            height: 480px;
            background: #000000;
            object-fit: cover;
        }

        body.page-openloop-counterflow .closed-loop-overview {
            height: 100%;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(160deg, rgba(var(--cleanin-base-rgb), 0.1), rgba(var(--cleanin-base-rgb), 0.02) 70%, #ffffff 100%);
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-openloop-counterflow .closed-loop-overview h2 {
            margin-top: 18px;
            margin-bottom: 18px;
        }

        body.page-openloop-counterflow .closed-loop-series-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            height: 100%;
        }

        body.page-openloop-counterflow .closed-loop-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            box-shadow: 0 18px 44px rgba(var(--cleanin-black-rgb), 0.08);
            text-decoration: none;
            transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
        }

        body.page-openloop-counterflow .closed-loop-series-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--cleanin-base-rgb), 0.28);
            box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.12);
        }

        body.page-openloop-counterflow .closed-loop-series-card__number {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--cleanin-base);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 20px;
            font-weight: 800;
        }

        body.page-openloop-counterflow .closed-loop-series-card h3 {
            margin: 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 28px;
            font-weight: 800;
            line-height: 1.35;
        }

        body.page-openloop-counterflow .closed-loop-series-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.8;
        }

        body.page-openloop-counterflow .closed-loop-series-card__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 15px;
            font-weight: 800;
        }

        .closed-loop-section .pultruded-content-block + .pultruded-content-block,
        body.page-openloop-counterflow .closed-loop-section .product-video-section + .pultruded-content-block {
            display: none;
        }

        body.page-openloop-counterflow .counterflow-principle-box {
            position: relative;
            margin-top: 18px;
            padding: 28px 28px 28px 34px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.12) 0%, #ffffff 78%);
            box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.08);
            overflow: hidden;
        }

        body.page-openloop-counterflow .counterflow-principle-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--cleanin-base) 0%, #58a4ef 100%);
        }

        body.page-openloop-counterflow .counterflow-principle-box p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 18px;
            line-height: 1.9;
        }

        body.page-openloop-counterflow .counterflow-advantages-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        body.page-openloop-counterflow .counterflow-advantages-list li {
            position: relative;
            padding: 22px 20px 22px 58px;
            border-radius: 10px;
            background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
            box-shadow: 0 16px 34px rgba(var(--cleanin-black-rgb), 0.07);
        }

        body.page-openloop-counterflow .counterflow-advantages-list li::before {
            content: "";
            position: absolute;
            top: 24px;
            left: 22px;
            width: 16px;
            height: 16px;
            margin: 0;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        @media (max-width: 991px) {
            .closed-loop-highlights,
            body.page-openloop-counterflow .closed-loop-series-grid {
                grid-template-columns: 1fr;
            }

            body.page-openloop-counterflow .counterflow-advantages-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body.page-openloop-counterflow .closed-loop-lead {
                font-size: 20px;
            }

            .closed-loop-overview,
            body.page-openloop-counterflow .closed-loop-series-card {
                padding: 24px;
            }

            body.page-openloop-counterflow .closed-loop-series-card h3 {
                font-size: 24px;
            }

            body.page-openloop-counterflow .product-video-stage video {
                height: 360px;
            }

            body.page-openloop-counterflow .counterflow-principle-box {
                padding: 24px 22px 24px 28px;
            }

            body.page-openloop-counterflow .counterflow-principle-box p {
                font-size: 17px;
            }

            body.page-openloop-counterflow .counterflow-advantages-list li {
                padding: 20px 18px 20px 52px;
            }
        }
    

/* Moved from openloop.html */
        body.page-openloop .closed-loop-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.12);
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        body.page-openloop .closed-loop-chip::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-openloop .closed-loop-lead {
            margin-bottom: 18px;
            font-size: 22px;
            line-height: 1.45;
        }

        body.page-openloop .closed-loop-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        body.page-openloop .closed-loop-highlight {
            padding: 22px 18px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff);
            box-shadow: 0 16px 38px rgba(var(--cleanin-black-rgb), 0.06);
        }

        body.page-openloop .closed-loop-highlight span {
            display: block;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.5;
        }

        body.page-openloop .closed-loop-visuals .pultruded-product-image {
            position: relative;
        }

        body.page-openloop .closed-loop-visuals .pultruded-product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 29, 53, 0) 45%, rgba(10, 29, 53, 0.48) 100%);
            pointer-events: none;
        }

        body.page-openloop .closed-loop-visuals__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        body.page-openloop .closed-loop-visuals__meta span {
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 14px;
            font-weight: 700;
        }

        body.page-openloop .product-video-section {
            margin-top: 42px;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff 72%);
            box-shadow: 0 20px 46px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-openloop .product-video-section__head {
            margin-bottom: 18px;
        }

        body.page-openloop .product-video-section__head h2 {
            margin: 16px 0 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
        }

        body.page-openloop .product-video-stage {
            overflow: hidden;
            border-radius: 10px;
            background: #08111d;
            box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.16);
        }

        body.page-openloop .product-video-stage video {
            display: block;
            width: 100%;
            height: 480px;
            background: #000000;
            object-fit: cover;
        }

        body.page-openloop .closed-loop-overview {
            height: 100%;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(160deg, rgba(var(--cleanin-base-rgb), 0.1), rgba(var(--cleanin-base-rgb), 0.02) 70%, #ffffff 100%);
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-openloop .closed-loop-overview h2 {
            margin-top: 18px;
            margin-bottom: 18px;
        }

        body.page-openloop .closed-loop-series-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            height: 100%;
        }

        body.page-openloop .closed-loop-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            box-shadow: 0 18px 44px rgba(var(--cleanin-black-rgb), 0.08);
            text-decoration: none;
            transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
        }

        body.page-openloop .closed-loop-series-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--cleanin-base-rgb), 0.28);
            box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.12);
        }

        body.page-openloop .closed-loop-series-card__number {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--cleanin-base);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 20px;
            font-weight: 800;
        }

        body.page-openloop .closed-loop-series-card h3 {
            margin: 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 24px;
            font-weight: 800;
            line-height: 1.35;
        }

        body.page-openloop .closed-loop-series-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.8;
        }

        body.page-openloop .closed-loop-series-card__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 15px;
            font-weight: 800;
        }

        .closed-loop-section .pultruded-content-block + .pultruded-content-block,
        body.page-openloop .closed-loop-section .product-video-section + .pultruded-content-block {
            display: none;
        }

        body.page-openloop .counterflow-principle-box {
            position: relative;
            margin-top: 18px;
            padding: 28px 28px 28px 34px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.12) 0%, #ffffff 78%);
            box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.08);
            overflow: hidden;
        }

        body.page-openloop .counterflow-principle-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--cleanin-base) 0%, #58a4ef 100%);
        }

        body.page-openloop .counterflow-principle-box p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 18px;
            line-height: 1.9;
        }

        body.page-openloop .counterflow-advantages-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        body.page-openloop .counterflow-advantages-list li {
            position: relative;
            padding: 22px 20px 22px 58px;
            border-radius: 10px;
            background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
            box-shadow: 0 16px 34px rgba(var(--cleanin-black-rgb), 0.07);
        }

        body.page-openloop .counterflow-advantages-list li::before {
            content: "";
            position: absolute;
            top: 24px;
            left: 22px;
            width: 16px;
            height: 16px;
            margin: 0;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        @media (max-width: 991px) {
            .closed-loop-highlights,
            body.page-openloop .closed-loop-series-grid {
                grid-template-columns: 1fr;
            }

            body.page-openloop .counterflow-advantages-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body.page-openloop .closed-loop-lead {
                font-size: 20px;
            }

            .closed-loop-overview,
            body.page-openloop .closed-loop-series-card {
                padding: 24px;
            }

            body.page-openloop .closed-loop-series-card h3 {
                font-size: 24px;
            }

            body.page-openloop .product-video-stage video {
                height: 360px;
            }

            body.page-openloop .counterflow-principle-box {
                padding: 24px 22px 24px 28px;
            }

            body.page-openloop .counterflow-principle-box p {
                font-size: 17px;
            }

            body.page-openloop .counterflow-advantages-list li {
                padding: 20px 18px 20px 52px;
            }
        }
    

/* Moved from openloop-crossflow.html */
        body.page-openloop-crossflow .closed-loop-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.12);
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        body.page-openloop-crossflow .closed-loop-chip::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-openloop-crossflow .closed-loop-lead {
            margin-bottom: 18px;
            font-size: 22px;
            line-height: 1.45;
        }

        body.page-openloop-crossflow .closed-loop-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        body.page-openloop-crossflow .closed-loop-highlight {
            padding: 22px 18px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff);
            box-shadow: 0 16px 38px rgba(var(--cleanin-black-rgb), 0.06);
        }

        body.page-openloop-crossflow .closed-loop-highlight span {
            display: block;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.5;
        }

        body.page-openloop-crossflow .closed-loop-visuals .pultruded-product-image {
            position: relative;
        }

        body.page-openloop-crossflow .closed-loop-visuals .pultruded-product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 29, 53, 0) 45%, rgba(10, 29, 53, 0.48) 100%);
            pointer-events: none;
        }

        body.page-openloop-crossflow .closed-loop-visuals__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        body.page-openloop-crossflow .closed-loop-visuals__meta span {
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 14px;
            font-weight: 700;
        }

        body.page-openloop-crossflow .product-video-section {
            margin-top: 42px;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff 72%);
            box-shadow: 0 20px 46px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-openloop-crossflow .product-video-section__head {
            margin-bottom: 18px;
        }

        body.page-openloop-crossflow .product-video-section__head h2 {
            margin: 16px 0 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
        }

        body.page-openloop-crossflow .product-video-stage {
            overflow: hidden;
            border-radius: 10px;
            background: #08111d;
            box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.16);
        }

        body.page-openloop-crossflow .product-video-stage video {
            display: block;
            width: 100%;
            height: 480px;
            background: #000000;
            object-fit: cover;
        }

        body.page-openloop-crossflow .closed-loop-overview {
            height: 100%;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(160deg, rgba(var(--cleanin-base-rgb), 0.1), rgba(var(--cleanin-base-rgb), 0.02) 70%, #ffffff 100%);
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-openloop-crossflow .closed-loop-overview h2 {
            margin-top: 18px;
            margin-bottom: 18px;
        }

        body.page-openloop-crossflow .closed-loop-series-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            height: 100%;
        }

        body.page-openloop-crossflow .closed-loop-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            box-shadow: 0 18px 44px rgba(var(--cleanin-black-rgb), 0.08);
            text-decoration: none;
            transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
        }

        body.page-openloop-crossflow .closed-loop-series-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--cleanin-base-rgb), 0.28);
            box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.12);
        }

        body.page-openloop-crossflow .closed-loop-series-card__number {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--cleanin-base);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 20px;
            font-weight: 800;
        }

        body.page-openloop-crossflow .closed-loop-series-card h3 {
            margin: 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 28px;
            font-weight: 800;
            line-height: 1.35;
        }

        body.page-openloop-crossflow .closed-loop-series-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.8;
        }

        body.page-openloop-crossflow .closed-loop-series-card__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 15px;
            font-weight: 800;
        }

        .closed-loop-section .pultruded-content-block + .pultruded-content-block,
        body.page-openloop-crossflow .closed-loop-section .product-video-section + .pultruded-content-block {
            display: none;
        }

        body.page-openloop-crossflow .counterflow-principle-box {
            position: relative;
            margin-top: 18px;
            padding: 28px 28px 28px 34px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.12) 0%, #ffffff 78%);
            box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.08);
            overflow: hidden;
        }

        body.page-openloop-crossflow .counterflow-principle-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--cleanin-base) 0%, #58a4ef 100%);
        }

        body.page-openloop-crossflow .counterflow-principle-box p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 18px;
            line-height: 1.9;
        }

        body.page-openloop-crossflow .counterflow-advantages-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        body.page-openloop-crossflow .counterflow-advantages-list li {
            position: relative;
            padding: 22px 20px 22px 58px;
            border-radius: 10px;
            background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
            box-shadow: 0 16px 34px rgba(var(--cleanin-black-rgb), 0.07);
        }

        body.page-openloop-crossflow .counterflow-advantages-list li::before {
            content: "";
            position: absolute;
            top: 24px;
            left: 22px;
            width: 16px;
            height: 16px;
            margin: 0;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        @media (max-width: 991px) {
            .closed-loop-highlights,
            body.page-openloop-crossflow .closed-loop-series-grid {
                grid-template-columns: 1fr;
            }

            body.page-openloop-crossflow .counterflow-advantages-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body.page-openloop-crossflow .closed-loop-lead {
                font-size: 20px;
            }

            .closed-loop-overview,
            body.page-openloop-crossflow .closed-loop-series-card {
                padding: 24px;
            }

            body.page-openloop-crossflow .closed-loop-series-card h3 {
                font-size: 24px;
            }

            body.page-openloop-crossflow .product-video-stage video {
                height: 360px;
            }

            body.page-openloop-crossflow .counterflow-principle-box {
                padding: 24px 22px 24px 28px;
            }

            body.page-openloop-crossflow .counterflow-principle-box p {
                font-size: 17px;
            }

            body.page-openloop-crossflow .counterflow-advantages-list li {
                padding: 20px 18px 20px 52px;
            }
        }
    

/* Moved from selection-guide.html */
        body.page-selection-guide .closed-loop-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.12);
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        body.page-selection-guide .closed-loop-chip::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-selection-guide .closed-loop-lead {
            margin-bottom: 18px;
            font-size: 22px;
            line-height: 1.45;
        }

        body.page-selection-guide .closed-loop-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        body.page-selection-guide .closed-loop-highlight {
            padding: 22px 18px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff);
            box-shadow: 0 16px 38px rgba(var(--cleanin-black-rgb), 0.06);
        }

        body.page-selection-guide .closed-loop-highlight span {
            display: block;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
            line-height: 1.5;
        }

        body.page-selection-guide .closed-loop-visuals .pultruded-product-image {
            position: relative;
        }

        body.page-selection-guide .closed-loop-visuals .pultruded-product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10, 29, 53, 0) 45%, rgba(10, 29, 53, 0.48) 100%);
            pointer-events: none;
        }

        body.page-selection-guide .closed-loop-visuals__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 16px;
        }

        body.page-selection-guide .closed-loop-visuals__meta span {
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 14px;
            font-weight: 700;
        }

        body.page-selection-guide .product-video-section {
            margin-top: 42px;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.08), #ffffff 72%);
            box-shadow: 0 20px 46px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-selection-guide .product-video-section__head {
            margin-bottom: 18px;
        }

        body.page-selection-guide .product-video-section__head h2 {
            margin: 16px 0 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 30px;
            font-weight: 800;
            line-height: 1.3;
        }

        body.page-selection-guide .product-video-stage {
            overflow: hidden;
            border-radius: 10px;
            background: #08111d;
            box-shadow: 0 18px 42px rgba(var(--cleanin-black-rgb), 0.16);
        }

        body.page-selection-guide .product-video-stage video {
            display: block;
            width: 100%;
            height: 480px;
            background: #000000;
            object-fit: cover;
        }

        body.page-selection-guide .closed-loop-overview {
            height: 100%;
            padding: 30px;
            border-radius: 8px;
            background: linear-gradient(160deg, rgba(var(--cleanin-base-rgb), 0.1), rgba(var(--cleanin-base-rgb), 0.02) 70%, #ffffff 100%);
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
        }

        body.page-selection-guide .closed-loop-overview h2 {
            margin-top: 18px;
            margin-bottom: 18px;
        }

        body.page-selection-guide .closed-loop-series-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            height: 100%;
        }

        body.page-selection-guide .closed-loop-series-card {
            display: flex;
            flex-direction: column;
            gap: 18px;
            min-height: 100%;
            padding: 28px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 8px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
            box-shadow: 0 18px 44px rgba(var(--cleanin-black-rgb), 0.08);
            text-decoration: none;
            transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
        }

        body.page-selection-guide .closed-loop-series-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--cleanin-base-rgb), 0.28);
            box-shadow: 0 24px 54px rgba(var(--cleanin-black-rgb), 0.12);
        }

        body.page-selection-guide .closed-loop-series-card__number {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--cleanin-base);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 20px;
            font-weight: 800;
        }

        body.page-selection-guide .closed-loop-series-card h3 {
            margin: 0;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 24px;
            font-weight: 800;
            line-height: 1.35;
        }

        body.page-selection-guide .closed-loop-series-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.8;
        }

        body.page-selection-guide .closed-loop-series-card__link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: auto;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 15px;
            font-weight: 800;
        }

        .closed-loop-section .pultruded-content-block + .pultruded-content-block,
        body.page-selection-guide .closed-loop-section .product-video-section + .pultruded-content-block {
            display: none;
        }

        body.page-selection-guide .selection-guide-heading {
            margin-bottom: 26px;
        }

        body.page-selection-guide .selection-guide-heading h3 {
            margin: 18px 0 12px;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 34px;
            font-weight: 800;
            line-height: 1.25;
        }

        body.page-selection-guide .selection-guide-table-wrap {
            overflow-x: auto;
            margin-top: 20px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 14px;
            background: linear-gradient(180deg, rgba(var(--cleanin-base-rgb), 0.05) 0%, #ffffff 100%);
            box-shadow: 0 22px 48px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-selection-guide .selection-guide-table {
            width: 100%;
            min-width: 760px;
            border-collapse: collapse;
        }

        body.page-selection-guide .selection-guide-table thead th {
            padding: 18px 20px;
            background: linear-gradient(135deg, #0c4e8d 0%, #052944 100%);
            color: var(--cleanin-white);
            font-family: var(--cleanin-font-two);
            font-size: 17px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        body.page-selection-guide .selection-guide-table tbody td {
            padding: 18px 20px;
            border-top: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            border-right: 1px solid rgba(var(--cleanin-base-rgb), 0.1);
            color: var(--cleanin-black);
            font-size: 16px;
            line-height: 1.75;
            vertical-align: top;
            background: rgba(255, 255, 255, 0.94);
        }

        .selection-guide-table tbody tr td:last-child,
        body.page-selection-guide .selection-guide-table thead tr th:last-child {
            border-right: none;
        }

        body.page-selection-guide .selection-guide-table tbody td:first-child {
            width: 22%;
            background: rgba(var(--cleanin-base-rgb), 0.06);
            font-family: var(--cleanin-font-two);
            font-weight: 800;
        }

        body.page-selection-guide .selection-guide-table strong {
            display: block;
            margin-bottom: 6px;
            color: var(--cleanin-base);
            font-family: var(--cleanin-font-two);
            font-size: 18px;
            font-weight: 800;
        }

        body.page-selection-guide .selection-guide-table span {
            display: block;
        }

        body.page-selection-guide .selection-guide-decision-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            margin-top: 28px;
        }

        body.page-selection-guide .selection-guide-decision-card {
            position: relative;
            padding: 28px 28px 26px;
            border-radius: 14px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.12);
            overflow: hidden;
            box-shadow: 0 20px 46px rgba(var(--cleanin-black-rgb), 0.08);
        }

        body.page-selection-guide .selection-guide-decision-card::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 6px;
            border-radius: 14px 0 0 14px;
            background: var(--cleanin-base);
        }

        body.page-selection-guide .selection-guide-decision-card--clct {
            background: linear-gradient(135deg, rgba(0, 74, 148, 0.12) 0%, #ffffff 82%);
        }

        body.page-selection-guide .selection-guide-decision-card--olct {
            background: linear-gradient(135deg, rgba(5, 41, 68, 0.1) 0%, #ffffff 82%);
        }

        body.page-selection-guide .selection-guide-decision-card h3 {
            margin: 0 0 14px;
            color: var(--cleanin-black);
            font-family: var(--cleanin-font-two);
            font-size: 26px;
            font-weight: 800;
            line-height: 1.3;
        }

        body.page-selection-guide .selection-guide-decision-card p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 17px;
            line-height: 1.8;
        }

        body.page-selection-guide .counterflow-principle-box {
            position: relative;
            margin-top: 18px;
            padding: 28px 28px 28px 34px;
            border: 1px solid rgba(var(--cleanin-base-rgb), 0.14);
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(var(--cleanin-base-rgb), 0.12) 0%, #ffffff 78%);
            box-shadow: 0 18px 40px rgba(var(--cleanin-black-rgb), 0.08);
            overflow: hidden;
        }

        body.page-selection-guide .counterflow-principle-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--cleanin-base) 0%, #58a4ef 100%);
        }

        body.page-selection-guide .counterflow-principle-box p {
            margin: 0;
            color: var(--cleanin-black);
            font-size: 18px;
            line-height: 1.9;
        }

        body.page-selection-guide .counterflow-advantages-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        body.page-selection-guide .counterflow-advantages-list li {
            position: relative;
            padding: 22px 20px 22px 58px;
            border-radius: 10px;
            background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
            box-shadow: 0 16px 34px rgba(var(--cleanin-black-rgb), 0.07);
        }

        body.page-selection-guide .counterflow-advantages-list li::before {
            content: "";
            position: absolute;
            top: 24px;
            left: 22px;
            width: 16px;
            height: 16px;
            margin: 0;
            border-radius: 50%;
            background: var(--cleanin-base);
            box-shadow: 0 0 0 6px rgba(var(--cleanin-base-rgb), 0.14);
        }

        @media (max-width: 991px) {
            .closed-loop-highlights,
            .closed-loop-series-grid,
            body.page-selection-guide .selection-guide-decision-grid {
                grid-template-columns: 1fr;
            }

            body.page-selection-guide .counterflow-advantages-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            body.page-selection-guide .closed-loop-lead {
                font-size: 20px;
            }

            .closed-loop-overview,
            body.page-selection-guide .closed-loop-series-card {
                padding: 24px;
            }

            body.page-selection-guide .closed-loop-series-card h3 {
                font-size: 24px;
            }

            body.page-selection-guide .selection-guide-heading h3 {
                font-size: 28px;
            }

            .selection-guide-table thead th,
            body.page-selection-guide .selection-guide-table tbody td {
                padding: 16px;
            }

            body.page-selection-guide .selection-guide-decision-card {
                padding: 24px 22px 22px;
            }

            body.page-selection-guide .selection-guide-decision-card h3 {
                font-size: 22px;
            }

            body.page-selection-guide .product-video-stage video {
                height: 360px;
            }

            body.page-selection-guide .counterflow-principle-box {
                padding: 24px 22px 24px 28px;
            }

            body.page-selection-guide .counterflow-principle-box p {
                font-size: 17px;
            }

            body.page-selection-guide .counterflow-advantages-list li {
                padding: 20px 18px 20px 52px;
            }
        }
    

@media (max-width: 991px) {
        body[class*="page-"] .closed-loop-section .closed-loop-highlights,
        body[class*="page-"] .closed-loop-section .closed-loop-series-grid {
            grid-template-columns: 1fr;
        }
}

@media (max-width: 767px) {
        body[class*="page-"] .closed-loop-section .closed-loop-highlights {
            gap: 12px;
        }

        body[class*="page-"] .closed-loop-section .closed-loop-highlight {
            padding: 18px 16px;
        }

        body[class*="page-"] .closed-loop-section .closed-loop-highlight span {
            font-size: 17px;
            line-height: 1.45;
        }

        body[class*="page-"] .closed-loop-section .closed-loop-overview {
            padding: 24px;
        }
}

/* End internal page CSS migrated */



  /****SEO  START****/

.location-heading {
	background-color: #0957a1;
	color: #fff;
	text-align: center;
	padding: 8px 0px;
	margin: 30px 0px;
	display: block;
	font-size: 26px;
}

.location-subHeading {
	margin: 0 0 15px;
	font-weight: 700;
	font-family: 'Source Sans Pro', sans-serif;
	color: #333;
	font-size: 18px;
	display: block;
	text-align: center;
	background: #efefef;
	padding: 13px;
}

hr{
	margin-top: 5px;
	margin-bottom: 5px;
	border: 0;
	border-top: 1px solid #ccc;
}


.pricing-block .inner-box div {
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 11px;
}

.inner-box div:hover {
    background-color: #eeeeee;
}

.pricing-block{

	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	padding: 20px;
}

.heading-one {
    font-size: 30px;
    color: #000;
    background: #0957a117;
    margin-bottom: 15px !important;
    line-height: 32px !important;
    padding: 12px;
    border-bottom: 2px solid #0957a1;
    border-radius: 3px;
    margin-top: 20px;
}

@media screen and (max-width: 600px) {
    .heading-one {
        font-size: 26px !important;
    }
  }

  .heading-two ~ .heading-three {
    margin-left: 0.6%;
}

.heading-two {
    font-size: 24px;
    color: #000;
    background: #0957a117;
    margin-bottom: 15px !important;
    line-height: 30px !important;
    padding: 12px;
    border-left: 2px solid #0957a1;
    border-radius: 3px;
    margin-top: 15px;

}

.heading-two ~ p {
    padding-left: 1.5%;
}

@media screen and (max-width: 600px) {
    .heading-two {
        font-size: 19px !important;
    }
  }

.heading-three {
    font-size: 18px;
    color: #000;
    background-image: linear-gradient(to right, #0957a117 , #fff);
    margin-bottom: 12px !important;
    line-height: 24px !important;
    padding: 12px;
    border-left: 2px solid #0957a1;
    border-radius: 3px;
    margin-top: 12px;

}

.heading-three ~ p {
    padding-left: 1.5%;
}


.triangle li::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent !important;
  border-bottom: 6px solid transparent!important;
  border-left: 10px solid #0957a1;
  position: absolute;
  left: 0;
  top: 6px;
  }

  .triangle {
	padding-left:1.5rem;
}
  
  ul.triangle li {
	position: relative;
	padding-left: 20px;
	padding-bottom:10px;
  }

/* Ordered List Styling */
ol[type="1"] {
  counter-reset: list-counter;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

ol[type="1"] > li {
  counter-increment: list-counter;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

ol[type="1"] > li::before {
  content: counter(list-counter) ". ";
  font-weight: bold;
  color: #000;
  position: absolute;
  left: 0;
  top: 0;
}

/* Circle List Styling */
ul.circle {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

ul.circle > li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #000;
}

ul.circle > li::before {
  content: "";
  display: inline-block;
  background-color: #0957a1;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 0.4em;
}

   
.accro .accordion {
	background-color: #eee;
	color: #333;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	margin-bottom: 10px;
	font-weight: 400;
	}
  
  .accro  .active, .accordion:hover {
  background-color: #ccc;
  }
  
  .accro .accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  }
  
  .accro .active:after {
  content: "\2212";
  }
  
  .accro .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  }
  
  
  .accordion.footer:hover {
	background-color: #fff;
  }

  .box-one {
    height: 358px;
    text-align: center;
  }

  .imgs {
	border: 2px solid #0957a1;
	padding: 5px;
    object-fit: contain;
    height: 100%;
    width: 100%;
  }

  ul {
    list-style-type: none;
  }

  ol,
.circle ul {
    padding-left: 1.5rem !important; 
}

  .table-responsive {
    margin-left: 1.5%;
  }

  table {
  border: 1px solid #0957a1 !important;
}

thead tr th {
  background-color: #0957a117 !important;
  /* color: white; */
}

tr th {
  background-color: #0957a117 !important;
  /* color: white; */
}

thead {
  background-color: #0957a117 !important;
  /* color: white; */
}

/****SEO  END****/
