@charset "UTF-8";

:root {

  --primary: #3a569e;
  --primary-dark: #1B325D;
  --primary-dark-rgb: 27, 50, 93;
  --primary-light: rgba(58, 86, 158, 0.1);
  --primary-medium: rgba(58, 86, 158, 0.5);
  --primary-lighter: rgb(53, 74, 144);
  --secondary: #28A34A;
  --secondary-rgb: 40, 163, 74;
  --secondary-light: rgba(0, 164, 228, 0.1);
  --gray-brand: #929497;
  --accent: rgb(57, 84, 154);
  --yellow: rgb(255, 227, 102);
  --black: rgb(0, 0, 0);
  --white: rgb(255, 255, 255);
  --gray-100: rgb(248, 249, 250);
  --gray-200: rgb(233, 236, 239);
  --gray-300: rgb(222, 226, 230);
  --gray-400: rgb(206, 212, 218);
  --gray-500: rgb(173, 181, 189);
  --gray-600: rgb(108, 117, 125);
  --gray-700: rgb(73, 80, 87);
  --gray-800: rgb(52, 58, 64);
  --gray-900: rgb(33, 37, 41);
  --primary-rgb: 58, 86, 158;
  --primary-light-rgb: 52, 81, 151;
  --primary-lighter-rgb: 53, 74, 144;
  --accent-rgb: 57, 84, 154;
  --black-rgb: 0, 0, 0;
  --white-rgb: 255, 255, 255;
  --text-color: #333;
  --text-light: #666;
  --text-dark: #222;
  --background: #f8fbff;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;

  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-xxxl: 2.5rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --radius-circle: 50%;
  --shadow: 0 5px 20px rgba(58, 86, 158, 0.1);
  --shadow-hover: 0 10px 30px rgba(58, 86, 158, 0.2);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
  --shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --transition-fast: all 0.2s ease;
  --transition-base: all 0.3s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: all 0.5s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
  --gradient-water: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.f-500 {
  font-weight: 500 !important;
}
.f-500 > * {
  font-weight: 500 !important;
}

.nts-shadow-column > .col-inner {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.nts-radius-1 img {
  border-radius: 2rem 0 2rem 0;
}

html {

  overflow-x: clip;

  scroll-behavior: smooth;

  background-color: #2f2f2f;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-primary);
  font-size: 100%;
  font-weight: 400;
  color: #333333;

  background-color: #ffffff;

  overflow-x: clip;
  width: 100%;
}

.absolute-footer {
  background-color: #2f2f2f;
}

h1, h2, h3, h4, h5, h6, .heading-font {
  color: #111111;
  font-family: var(--font-primary);
  font-weight: 700;
}

.nav > li > a,
.links > li > a {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: none;
}

.breadcrumbs,
button,
.button,
.section-title span,
h3.widget-title,
span.widget-title {
  text-transform: none;
}

a {
  color: #334862;
  text-decoration: none;
}

a:hover {
  color: #111;
}

p {
  margin-top: 0;
  margin-bottom: 1.3em;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
  }
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bubble-anim {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }
  20% {
    transform: translateY(-20%) scale(0.8);
    opacity: 0.3;
  }
  40% {
    transform: translateY(-40%) scale(1);
    opacity: 0.5;
  }
  60% {
    transform: translateY(-60%) scale(0.8);
    opacity: 0.3;
  }
  80% {
    transform: translateY(-80%) scale(0.6);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100%) scale(0.4);
    opacity: 0;
  }
}
@keyframes bubble-float {
  0% {
    transform: translateY(50px) scale(0.5);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-90px) scale(0.7);
    opacity: 0;
  }
}
@keyframes splash-anim {
  0%, 100% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: scale(1) rotate(5deg);
    opacity: 0.4;
  }
}
@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-500px) scale(2);
    opacity: 0;
  }
}
@keyframes particle-animate {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}
@keyframes droplet-animation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1);
    opacity: 0.7;
  }
  80% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    opacity: 0;
    left: -75%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 130%;
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes sweep {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes water-bg-animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes horizontal-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}
@keyframes horizontal-bounce-reverse {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
}
@keyframes wavyMotion {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0);
  }
}
.delay-1 {
  animation-delay: 0.5s;
  transition-delay: 0.5s;
}

.delay-2 {
  animation-delay: 1s;
  transition-delay: 1s;
}

.delay-3 {
  animation-delay: 1.5s;
  transition-delay: 1.5s;
}

.delay-4 {
  animation-delay: 2s;
  transition-delay: 2s;
}

.delay-5 {
  animation-delay: 2.5s;
  transition-delay: 2.5s;
}

.delay-6 {
  animation-delay: 3s;
  transition-delay: 3s;
}

.delay-7 {
  animation-delay: 3.5s;
  transition-delay: 3.5s;
}

.delay-8 {
  animation-delay: 4s;
  transition-delay: 4s;
}

.delay-9 {
  animation-delay: 4.5s;
  transition-delay: 4.5s;
}

.delay-10 {
  animation-delay: 5s;
  transition-delay: 5s;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-1000px) scale(1.2);
    opacity: 0;
  }
}
@keyframes particleRise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-300px) translateX(var(--move-x, 0));
    opacity: 0;
  }
}
@keyframes bobbing {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes dropletPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
@keyframes splash {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}
.float-animation {
  animation: floating 6s ease-in-out infinite;
}

.animated-in {
  animation: fadeInUp 0.5s ease-out forwards;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.header-action .header-action__search {
  position: relative;
  display: flex;
  margin-bottom: 0;
}
.header-action .header-action__search .nts-search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.header-action .header-action__search .search-field {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: 8px;
  padding: 0 30px;
  font-size: 14px;
  color: var(--primary-dark);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  width: 250px;
  transition: all 0.3s ease;
  z-index: 10;
  position: relative;
}
.header-action .header-action__search .search-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.header-action .header-action__search .search-submit {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px;
  height: 28px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  min-height: unset;
  transition: all 0.3s ease;
}
.header-action .header-action__search .search-submit:hover {
  background-color: var(--primary-dark);
}
.header-action .open-menu {
  display: flex;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: var(--primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}
.header-action .open-menu:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.nts-offcanvas-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.offcanvas__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas__header__logo {
  max-height: 80px;
  filter: brightness(0) invert(1);
}

.offcanvas__header__close {
  background-color: var(--yellow);
  color: var(--primary-dark);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  padding: 8px;
  height: 40px;
  width: 40px;
  font-size: 1rem;
  display: block;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.offcanvas__header__close:hover {
  transform: rotate(90deg);
  background-color: var(--white);
}

.water-header {
  position: relative;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  min-height: 80px;
  display: flex;
  align-items: center;
  z-index: 100;
}
.water-header .header-water-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.water-header .header-water-bg .water-ripple-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.02), rgba(var(--primary-rgb), 0.05));
}
.water-header .header-water-bg .header-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 1;
}
.water-header .header-water-bg .header-wave-2 {
  bottom: -2px;
  opacity: 0.7;
  animation: wave-animation 10s linear infinite alternate;
}
.water-header .header-water-bg .bubbles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.water-header .header-water-bg .bubbles-container .bubble {
  position: absolute;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  animation-name: bubble-rise;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.water-header .header-water-bg .bubbles-container .bubble-1 {
  width: 10px;
  height: 10px;
  left: 10%;
  bottom: -10px;
  animation-duration: 6s;
  opacity: 0.5;
}
.water-header .header-water-bg .bubbles-container .bubble-2 {
  width: 15px;
  height: 15px;
  left: 50%;
  bottom: -15px;
  animation-duration: 8s;
  animation-delay: 1s;
  opacity: 0.3;
}
.water-header .header-water-bg .bubbles-container .bubble-3 {
  width: 12px;
  height: 12px;
  left: 80%;
  bottom: -12px;
  animation-duration: 7s;
  animation-delay: 2s;
  opacity: 0.4;
}
.water-header .header-water-bg .bubbles-container .bubble.animate {
  animation-name: bubble-rise;
}
.water-header .header-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

@media (min-width: 1300px) {
  .water-header .header-inner.container {
    max-width: 1600px;
  }
}
.water-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .water-header .header-row {
    padding: 0 1rem;
  }
}
.water-header .site-branding {
  display: flex;
  align-items: center;
}
.water-header .site-branding .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary);
}
.water-header .site-branding .custom-logo-link img.custom-logo,
.water-header .site-branding .custom-logo-link .header-logo,
.water-header .site-branding .custom-logo-link .header_logo {
  max-height: 35px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}
.water-header .site-branding .custom-logo-link .header-logo-sticky {
  display: none;
}
.water-header .site-branding .custom-logo-link .header-logo-dark {
  display: none;
}
.water-header .site-branding .custom-logo-link .water-logo {
  fill: var(--primary);
  margin-right: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(var(--primary-rgb), 0.3));
  animation: logo-float 3s infinite ease-in-out;
}
.water-header .site-branding .custom-logo-link .site-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 576px) {
  .water-header .site-branding .custom-logo-link .site-title {
    display: none;
  }
}
.water-header .site-branding .logo-tagline {
  font-size: 0.8rem;
  margin: 0 0 0 1rem;
  color: var(--primary);
  opacity: 0.8;
}
.water-header .header-search {
  flex: 1;
  max-width: 260px;
  margin: 0 1.5rem;
  position: relative;
  margin-left: auto;
}
@media (max-width: 768px) {
  .water-header .header-search {
    margin: 0 1rem;
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .water-header .header-search {
    margin: 0 0.5rem;
    order: 3;
    width: 10%;
	display: none;
    max-width: none;
    margin-top: 0.5rem;
  }
}
.water-header .header-search .water-search-form {
  width: 100%;
  margin: 0;
}
.water-header .header-search .search-input-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(var(--primary-rgb), 0.05);
}
.water-header .header-search .search-input-wrapper.focused {
  background: rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-2px);
}
.water-header .header-search .search-input-wrapper .search-field {
  width: 100%;
  padding: 0.7rem 1rem;
  padding-right: 3rem;
  border: none;
  background: transparent;
  color: var(--primary-dark);
  font-size: 0.95rem;
  position: relative;
  z-index: 10;
  box-shadow: none;
  margin: 0;
}
.water-header .header-search .search-input-wrapper .search-field:focus {
  outline: none;
}
.water-header .header-search .search-input-wrapper .search-field::placeholder {
  color: rgba(var(--primary-rgb), 0.6);
}
.water-header .header-search .search-input-wrapper .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  border: none;
  padding: 0 1rem;
  margin: 0;
  z-index: 10;
  cursor: pointer;
  color: var(--primary);
  transition: all 0.3s ease;
}
.water-header .header-search .search-input-wrapper .search-submit:hover {
  background: rgba(var(--primary-rgb), 0.1);
}
.water-header .header-search .search-input-wrapper .search-submit .search-icon {
  fill: var(--primary);
}
.water-header .header-search .search-input-wrapper .search-ripple {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, transparent 1%, rgba(var(--primary-rgb), 0.05) 1%) center/15000%;
  opacity: 0;
}
.water-header .header-search .search-input-wrapper .search-ripple.animate {
  animation: ripple-search 0.8s ease-out forwards;
}

.water-header .desktop-nav { display: none; }
@media (min-width: 1300px) {
  .water-header .desktop-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    margin: 0 24px;
  }
  .water-header .desktop-nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .water-header .desktop-nav-menu > li { position: relative; }
  .water-header .desktop-nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease;
  }
  .water-header .desktop-nav-menu > li > a:hover,
  .water-header .desktop-nav-menu > li.current-menu-item > a,
  .water-header .desktop-nav-menu > li.current-menu-ancestor > a,
  .water-header .desktop-nav-menu > li.current_page_item > a {
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
  }
  .water-header .desktop-nav-menu .menu-item-has-children > a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .25s ease;
    flex: none;
  }
  .water-header .desktop-nav-menu .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    margin-top: 3px;
  }
  .water-header .desktop-nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 45px -15px rgba(20, 40, 60, .25);
    border: 1px solid rgba(20, 40, 60, .06);
    padding: 10px;
    list-style: none;
    margin: 0;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .water-header .desktop-nav-menu > li:hover > .sub-menu,
  .water-header .desktop-nav-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .water-header .desktop-nav-menu .sub-menu li a {
    display: block;
    padding: 9px 12px;
    border-radius: 9px;
    color: var(--primary-dark);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
  }
  .water-header .desktop-nav-menu .sub-menu li a:hover {
    background: rgba(var(--primary-rgb), .08);
    color: var(--primary);
  }

  .water-header .desktop-nav-menu .lang-switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 14px;
    padding: 3px;
    background: rgba(var(--primary-rgb), .07);
    border-radius: 999px;
  }
  .water-header .desktop-nav-menu .lang-switch-thumb {
    position: absolute;
    top: 3px;
    left: 0;
    background: #fff;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(20, 40, 60, .1), 0 1px 3px rgba(20, 40, 60, .15);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1), width .25s ease;
    z-index: 0;
  }
  .water-header .desktop-nav-menu .lang-switch-option {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    line-height: 0;
  }
  .water-header .desktop-nav-menu .lang-switch-option:not(.is-current):hover {
    background: rgba(var(--primary-rgb), .1);
  }
  .water-header .desktop-nav-menu .lang-switch-option img {
    display: block;
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(20, 40, 60, .15);
  }

  .water-header .desktop-nav-menu .lang-item {
    margin-left: 10px;
    padding-left: 0;
    border-left: none;
  }
  .water-header .desktop-nav-menu li.lang-item + li.lang-item {
    margin-left: 6px;
  }
  .water-header .desktop-nav-menu li.lang-item > a,
  .water-header .desktop-nav-menu li.lang-item.current_page_item > a {
    display: flex;
    align-items: center;
    background: rgba(var(--primary-rgb), .06);
    padding: 4px 7px;
    line-height: 0;
    border-radius: 999px;
    transition: background .2s ease;
  }
  .water-header .desktop-nav-menu li.lang-item > a:hover {
    background: rgba(var(--primary-rgb), .12);
  }
  .water-header .desktop-nav-menu li.lang-item.current-lang > a {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(20, 40, 60, .1);
  }
  .water-header .desktop-nav-menu .lang-item > a img {
    display: block;
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(20, 40, 60, .15);
  }

  body .water-header .header-actions .menu-toggle-btn { display: none; }
}
.water-header .header-actions .menu-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.water-header .header-actions .menu-toggle-btn .water-droplet-icon {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  opacity: 1;
  transition: all 0.3s ease;
}
.water-header .header-actions .menu-toggle-btn .water-droplet-icon svg {
  color: var(--primary);
  filter: drop-shadow(0 2px 2px rgba(var(--primary-rgb), 0.3));
}
.water-header .header-actions .menu-toggle-btn .menu-toggle-inner {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
  justify-content: space-between;
  position: relative;
}
.water-header .header-actions .menu-toggle-btn .menu-toggle-inner .menu-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.water-header .header-actions .menu-toggle-btn:hover .water-droplet-icon {
  transform: translate(30%, -30%) scale(1.1);
}
.water-header .header-actions .menu-toggle-btn:hover .menu-line {
  background-color: var(--primary-dark);
}
.water-header .header-actions .menu-toggle-btn.active .menu-line-1 {
  transform: translateY(8px) rotate(45deg);
}
.water-header .header-actions .menu-toggle-btn.active .menu-line-2 {
  opacity: 0;
}
.water-header .header-actions .menu-toggle-btn.active .menu-line-3 {
  transform: translateY(-8px) rotate(-45deg);
}
.water-header .header-actions .menu-toggle-btn.active .water-droplet-icon {
  transform: translate(30%, -30%) scale(1.2);
  opacity: 1;
}
.water-header .offcanvas-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: linear-gradient(to bottom right, var(--primary-dark), var(--primary));
  z-index: 1000;
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .water-header .offcanvas-menu {
    width: 280px;
    right: -280px;
  }
}
.water-header .offcanvas-menu.active {
  right: 0;
}
.water-header .offcanvas-menu .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 576px) {
.water-header .offcanvas-menu .offcanvas-header .site-branding .custom-logo-link,
.water-header .offcanvas-menu .offcanvas-header .site-branding a {
  display: none;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}
}
.water-header .offcanvas-menu .offcanvas-header .site-branding .custom-logo-link .water-logo,
.water-header .offcanvas-menu .offcanvas-header .site-branding a .water-logo {
  fill: var(--white);
}
.water-header .offcanvas-menu .offcanvas-header .site-branding .custom-logo-link .site-title,
.water-header .offcanvas-menu .offcanvas-header .site-branding a .site-title {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 600;
  color: var(--white);
}
.water-header .offcanvas-menu .offcanvas-header .site-branding .custom-logo-link img.custom-logo,
.water-header .offcanvas-menu .offcanvas-header .site-branding a img.custom-logo {
  max-height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}
.water-header .offcanvas-menu .offcanvas-header .site-branding .logo-tagline {
  color: var(--white);
  font-size: 0.75rem;
  opacity: 0.8;
  margin-left: 1rem;
}
.water-header .offcanvas-menu .offcanvas-header .offcanvas-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
.water-header .offcanvas-menu .offcanvas-header .offcanvas-close:hover {
  background: var(--yellow);
  transform: rotate(90deg);
}
.water-header .offcanvas-menu .offcanvas-header .offcanvas-close:hover .close-icon::before, .water-header .offcanvas-menu .offcanvas-header .offcanvas-close:hover .close-icon::after {
  background: var(--primary-dark);
}
.water-header .offcanvas-menu .offcanvas-header .offcanvas-close .close-icon {
  position: relative;
  width: 16px;
  height: 16px;
}
.water-header .offcanvas-menu .offcanvas-header .offcanvas-close .close-icon::before, .water-header .offcanvas-menu .offcanvas-header .offcanvas-close .close-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  background: var(--white);
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.water-header .offcanvas-menu .offcanvas-header .offcanvas-close .close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.water-header .offcanvas-menu .offcanvas-header .offcanvas-close .close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
.water-header .offcanvas-menu .offcanvas-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}
.water-header .offcanvas-menu .offcanvas-navigation {
  margin-bottom: 2rem;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li {
  border-bottom: 0px solid rgba(255, 255, 255, 0.1);
}

.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-switch {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 2px;
  margin-right: 15px;
  padding: 3px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-switch .lang-switch-thumb {
  position: absolute;
  top: 3px;
  left: 0;
  background: var(--yellow);
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), width .25s ease;
  z-index: 0;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-switch .lang-switch-option {
  position: relative;
  z-index: 1;
  display: inline-flex !important;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-switch .lang-switch-option img {
  display: block;
  height: 16px !important;
  width: 23px !important;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-switch .lang-switch-option.is-current img {
  box-shadow: 0 0 0 1px rgba(20, 40, 60, .3);
}

.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-item {
  display: inline-flex !important;
  align-items: center;
  margin-right: 8px;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-item:last-of-type {
  margin-right: 15px;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-item > a {
  display: inline-flex !important;
  align-items: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, .1);
  padding: 6px 9px;
  border-radius: 999px;
  transition: background .2s ease;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-item.current-lang > a {
  background: var(--yellow);
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-item a img {
  display: block;
  height: 16px !important;
  width: 23px !important;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items > li.lang-item.current-lang > a img {
  box-shadow: 0 0 0 1px rgba(20, 40, 60, .3);
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li:last-child {
  border-bottom: none;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li a {
  display: block;
  padding: 0.5rem 0;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li a:hover {
  color: var(--yellow);
  padding-left: 5px;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li a:hover::before {
  width: 4px;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 20px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li .sub-menu {
  list-style: none;
  padding-left: 1.5rem;
  margin-left: 0;

}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li .sub-menu li {
  border-bottom: none;
}
.water-header .offcanvas-menu .offcanvas-navigation .offcanvas-menu-items li .sub-menu li a {
  font-weight: 400;
  padding: 0.25rem 0;
  font-size: 0.95rem;
}
.water-header .offcanvas-menu .offcanvas-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.water-header .offcanvas-menu .offcanvas-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
}
.water-header .offcanvas-menu .offcanvas-contact h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}
.water-header .offcanvas-menu .offcanvas-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.water-header .offcanvas-menu .offcanvas-contact .contact-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
.water-header .offcanvas-menu .offcanvas-contact .contact-list li i,
.water-header .offcanvas-menu .offcanvas-contact .contact-list li svg {
  color: var(--yellow);
  font-size: 1rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.water-header .offcanvas-menu .offcanvas-contact .contact-list li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.water-header .offcanvas-menu .offcanvas-contact .contact-list li a:hover {
  color: var(--yellow);
}
.water-header .offcanvas-menu .offcanvas-contact .contact-list li span {
  color: var(--white);
  opacity: 0.8;
}
.water-header .offcanvas-menu .offcanvas-contact .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.water-header .offcanvas-menu .offcanvas-contact .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.water-header .offcanvas-menu .offcanvas-contact .social-links .social-link:hover {
  background: var(--yellow);
  color: var(--primary-dark);
  transform: translateY(-3px);
}
.water-header .offcanvas-menu .offcanvas-water-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}
.water-header .offcanvas-menu .offcanvas-water-decoration .water-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
}
.water-header .offcanvas-menu .offcanvas-water-decoration .water-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.water-header .offcanvas-menu .offcanvas-water-decoration .water-particles-container .water-particle {
  position: absolute;
  background-color: var(--white);
  border-radius: 50%;
  opacity: 0.2;
}
.water-header .offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.water-header .offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.offcanvas-active {
  overflow: hidden;
}

@keyframes wave-animation {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bubble-rise {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-80px) scale(1.2);
    opacity: 0;
  }
}
@keyframes logo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes ripple-search {
  0% {
    opacity: 1;
    background-size: 0%;
  }
  100% {
    opacity: 0;
    background-size: 15000%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.cta-primary {
  border-radius: 12px;
  background: #FFF;
  width: fit-content;
  padding: 12px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-block;
  color: var(--black);
}
.cta-primary a {
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.32px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-primary::before {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  background-color: var(--secondary);
  z-index: 0;
  transition: all 0.3s linear;
  top: -100%;
  left: -100%;
  transform: translateY(-50%);
}
.cta-primary::after {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  background-color: var(--secondary);
  z-index: 0;
  transition: all 0.3s linear;
  bottom: -100%;
  right: -100%;
  transform: translateY(50%);
}
.cta-primary:hover a {
  color: #FFF;
}
.cta-primary:hover::before {
  top: 10%;
  left: -30%;
}
.cta-primary:hover::after {
  bottom: 10%;
  right: -30%;
}
.cta-primary.has-shadow {
  box-shadow: 0 0 35px 0 #CEE2F1;
}

.btn-cricle {
  border-radius: 100%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-cricle i {
  z-index: 1;
}
.btn-cricle::before {
  content: "";
  width: 135%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  background-color: var(--secondary);
  z-index: 0;
  transition: all 0.3s linear;
  top: -100%;
  left: -100%;
  transform: translateY(-50%);
}
.btn-cricle::after {
  content: "";
  width: 135%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  background-color: var(--secondary);
  z-index: 0;
  transition: all 0.3s linear;
  bottom: -100%;
  right: -100%;
  transform: translateY(50%);
}
.btn-cricle:hover {
  color: #FFF;
}
.btn-cricle:hover::before {
  top: 10%;
  left: -30%;
}
.btn-cricle:hover::after {
  bottom: 10%;
  right: -30%;
}

.swiper-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}
.swiper-actions .swiper-prev,
.swiper-actions .swiper-next {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  cursor: pointer;
  border: 1px solid #D1E6FF;
  opacity: 1;
  background-color: #fff;
  transition: 0.3s all linear;
}
.swiper-actions .swiper-prev:not(.swiper-button-disabled):hover,
.swiper-actions .swiper-next:not(.swiper-button-disabled):hover {
  background-color: #28A34A;
  border-color: #28A34A;
  color: #fff;
}
.swiper-actions .swiper-button-disabled {
  opacity: 0.4;
}
.swiper-actions .swiper-pagination {
  position: static;
  flex: 1;
}
.swiper-actions .swiper-pagination .swiper-pagination-bullet {
  width: 29px !important;
  height: 29px !important;
  border-radius: 999px !important;
  position: relative;
  background-color: transparent;
  opacity: 1;
}
.swiper-actions .swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 99px;
  transform: translate(-50%, -50%);
}
.swiper-actions .swiper-pagination.light .swiper-pagination-bullet-active {
  border: 1px solid #fff;
}
.swiper-actions .swiper-pagination.light .swiper-pagination-bullet:after {
  background-color: #fff;
}
.swiper-actions .swiper-pagination.dark .swiper-pagination-bullet-active {
  border: 1px solid #000;
}
.swiper-actions .swiper-pagination.dark .swiper-pagination-bullet:after {
  background-color: #000;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(58, 86, 158, 0.1);
  transition: all 0.3s ease-in-out;
  max-width: 500px;
}
.project-card:hover {
  box-shadow: 0 0 15px rgba(58, 86, 158, 0.5);
}
.project-card:hover .project-image {
  transform: scale(1.05);
}
.project-card:hover .project-title {
  color: var(--primary-dark);
}
.project-card .project-image {
  border-radius: 0.5rem;
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}
.project-card .project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.project-card .project-action {
  position: absolute;
  bottom: -1px;
  right: -1px;
}
.project-card .project-action .btn-cricle {
  border-radius: 2rem 2rem 0 2rem;
}
.project-card .project-category {
  background-color: var(--secondary);
  padding: 0.1rem 0.5rem;
  border-radius: 0.25rem;
  color: var(--white);
  font-size: 12px;
  display: inline-block;
  font-weight: 500;
}
.project-card .project-title {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 4.5rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.5rem;
}

.nts-section-managed.type-1:has(.nts-project-slider) .row:not(.swiper-shadow) > .col:first-child > div:nth-child(1) h2 {
  font-size: 14px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #a9d6ff;
  margin: 0 0 10px;
}
.nts-section-managed.type-1:has(.nts-project-slider) .row:not(.swiper-shadow) > .col:first-child > div:nth-child(2) h2 {
  font-size: 2.5em !important;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 18px;
}
.nts-section-managed.type-1:has(.nts-project-slider) .row:not(.swiper-shadow) > .col:first-child > div:nth-child(3) {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  max-width: 460px;
  margin-bottom: 28px;
}

.nts-section-managed.type-1:has(.nts-project-slider) .cta-primary {
  box-shadow: 0 14px 30px -12px rgba(6, 18, 40, .5);
}
.nts-section-managed.type-1:has(.nts-project-slider) .cta-primary a {
  font-weight: 700;
  gap: 10px;
}
.nts-section-managed.type-1:has(.nts-project-slider) .swiper-prev,
.nts-section-managed.type-1:has(.nts-project-slider) .swiper-next {
  box-shadow: 0 10px 24px -10px rgba(6, 18, 40, .45);
}
.nts-section-managed.type-1:has(.nts-project-slider) .swiper-button-disabled {
  cursor: default;
}

.blog-card {
  max-width: 500px;
}
.blog-card .blog-thumbnail {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
  display: block;
}
.blog-card .blog-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 1rem 0 1rem;
}
.blog-card .blog-title a {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 4.5rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  margin-top: 0.5rem;
}
.blog-card .blog-excerpt {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 100px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 20px;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card .blog-meta {
  margin-bottom: 0.5rem;
}

.dark-mode .blog-title a {
  color: #fff;
}
.dark-mode .blog-excerpt {
  color: #fff;
}
.dark-mode .blog-meta {
  color: #fff;
}

.nts-hero {
  position: relative;
  width: 96dvw;
  margin: 0 auto;
  max-height: 800px;
  min-height: 500px;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.nts-hero .hero-action {
  display: grid;
  position: absolute;
  bottom: 5rem;
  right: 0;
  z-index: 10;
  gap: 16px;
}
@media (max-width: 768px) {
  .nts-hero .hero-action {
    top: 2rem;
    bottom: auto;
  }
}
.nts-hero .hero-action .action-button {
  background: var(--white);
  color: var(--primary);
  width: 8rem;
  padding: 1rem;
  line-height: 1.2rem;
  border-radius: 1rem 0 0 0;
  font-weight: 300;
  display: block;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nts-hero .hero-action .action-button:hover {
  color: var(--white);
}
.nts-hero .hero-action .action-button span,
.nts-hero .hero-action .action-button i {
  z-index: 10;
  position: relative;
}
.nts-hero .hero-action .action-button i {
  margin-left: auto;
  display: block;
  margin-top: 0.5rem;
}
.nts-hero .hero-action .action-button::before, .nts-hero .hero-action .action-button::after {
  content: "";
  width: 15rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  background-color: var(--secondary);
  z-index: 0;
  transition: all 0.2s linear;
}
.nts-hero .hero-action .action-button::before {
  top: -15rem;
  left: -15rem;
  transform: translateY(-50%);
}
.nts-hero .hero-action .action-button:hover::before {
  top: 0;
  left: 2.5rem;
}
.nts-hero .hero-action .action-button::after {
  bottom: -15rem;
  right: -15rem;
  transform: translateY(50%);
}
.nts-hero .hero-action .action-button:hover::after {
  bottom: 0;
  right: 2.5rem;
}

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

.nts-hero-content {
  padding: 20px;
  border-radius: 10px;
  z-index: 10;
  text-align: left;
}

.nts-hero-title {
  font-size: 3em;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .nts-hero-title {
    font-size: 2rem;
  }
}

.nts-hero-description {
  color: #fff;
  font-size: 1.2em;
  max-width: 800px;
}
@media (max-width: 768px) {
  .nts-hero-description {
    font-size: 1rem;
  }
}

.video-banner {
  border-radius: 32px 0 0 0;
  position: relative;
  overflow: hidden;
}
.video-banner .container {
  position: relative;
  z-index: 10;
}
.video-banner::before, .video-banner::after {
  content: "";
  width: 130%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  background-color: var(--secondary);
  z-index: 1;
  transition: all 0.2s linear;
}
.video-banner::before {
  top: -100%;
  left: -100%;
  transform: translateY(-50%);
}
.video-banner:hover::before {
  top: 10%;
  left: -20%;
}
.video-banner::after {
  bottom: -100%;
  right: -100%;
  transform: translateY(50%);
}
.video-banner:hover::after {
  bottom: 10%;
  right: -30%;
}

.nts-social {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--white);
  padding: 1rem 0 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.nts-social .nts-social-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.nts-social-links {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
}
.nts-social-links a {
  background-color: rgba(255, 255, 255, 0.1);
  width: 4rem;
  height: 4rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--white);
}

.nts-footer-main .nts-social-links a:hover {
  background-color: var(--white);
  color: var(--primary);
}
.nts-footer-main .nts-social-links a.social-facebook:hover { color: #1877F2; }
.nts-footer-main .nts-social-links a.social-youtube:hover { color: #FF0000; }
.nts-footer-main .nts-social-links a.social-instagram:hover { color: #E4405F; }
.nts-footer-main .nts-social-links a.social-tiktok:hover { color: #000000; }

.nts-footer-menu.nav {
  align-items: start;
}
.nts-footer-menu ul {
  align-items: start;
}
.nts-footer-menu .page_item a {
  color: var(--white);
  font-size: 1rem;
  padding: 0.2rem 0;
}
.nts-footer-menu .page_item a:hover {
  color: var(--secondary);
}

.nts-footer-sp {
  border-radius: 1.5rem 1.5rem 0 1.5rem;
}

.nts-footer-main { position: relative; }
#footer .container { max-width: 1400px; }
.nts-footer-main .wp-block-columns { gap: 48px; margin-bottom: 0; }
.nts-footer-main h1, .nts-footer-main h2, .nts-footer-main h3, .nts-footer-main h4, .nts-footer-main h5 {
  color: #fff;
}
.nts-footer-heading {
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 22px; padding-bottom: 14px; position: relative;
}
.nts-footer-heading::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px;
  background: var(--secondary); border-radius: 2px;
}
.nts-footer-main .nts-footer-desc {
  font-size: 14px; line-height: 1.75; color: rgba(255, 255, 255, 0.7);
}
.nts-footer-links { list-style: none; margin: 0; padding: 0; }
.nts-footer-links li { padding: 7px 0; }
.nts-footer-links a {
  color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 14.5px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nts-footer-links a:hover { color: #fff; padding-left: 4px; }
.nts-footer-need-help {
  font-size: 14.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.7); margin-bottom: 18px;
}
.nts-footer-need-help strong { color: #fff; font-size: 16px; }
.nts-footer-help-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
}
.nts-footer-help-box .nts-footer-need-help { margin-bottom: 20px; }
.nts-footer-help-box .wp-block-ntse-cta { align-self: flex-end; }
@media (max-width: 849px) {
  .nts-footer-main .wp-block-columns { flex-wrap: wrap; gap: 36px; }
  .nts-footer-main .wp-block-column { flex-basis: 100% !important; }
}

.newsletter-section .container {
  position: relative;
  z-index: 1;
}
.newsletter-section .submit-button {
  min-height: unset;
  margin: unset;
  line-height: unset;
}

.newsletter-form .submit-button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 42px;
}
.newsletter-form input[type=email] {
  width: 100%;
  padding: 15px 140px 15px 20px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  height: 42px;
}

.nts-section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  min-height: 44dvw;
}

.nts-section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  min-height: auto !important;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  background: linear-gradient(135deg, #0b2c63, #3a82c5, #88c8f5);
  background-size: 200% 200%;
  animation: bg-shift 10s ease infinite;
}

@keyframes bg-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nts-step {
  color: var(--primary-color);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nts-step .step-number {
  font-size: 5rem;
  font-weight: 700;
  font-family: "Suez Lines";
}
.nts-step .step-line {
  width: 2px;
  height: 4rem;
  background-color: var(--primary-color);
}
.nts-step .step-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0;
}

.nts-cta-form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}
.nts-cta-form .form-title {
  margin: 0 0 15px;
  font-size: 1.5em;
  color: #333;
  text-align: center;
}
.nts-cta-form .form-description {
  margin-bottom: 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  text-align: center;
}
.nts-cta-form .nts-contact-form .form-group {
  margin-bottom: 15px;
}
.nts-cta-form .nts-contact-form input,
.nts-cta-form .nts-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  transition: all 0.3s ease;
  box-shadow: none;
}
.nts-cta-form .nts-contact-form input:focus,
.nts-cta-form .nts-contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.1);
}
.nts-cta-form .nts-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.nts-cta-form .form-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.nts-cta-form .hotline-info {
  text-align: center;
  font-size: 0.95em;
}
.nts-cta-form .hotline-info a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.nts-cta-form .nts-chat-button {
  width: 100%;
  margin-top: 20px;
  background: #4caf50;
  border: none;
}
.nts-cta-form .nts-chat-button:hover {
  background: #3e8e41;
}
.nts-cta-form .response-time {
  margin-top: 15px;
  font-size: 0.9em;
  color: #777;
  text-align: center;
  font-style: italic;
}
.nts-cta-form .form-message {
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 8px;
  display: none;
}
.nts-cta-form .form-message.success {
  background: #dff0d8;
  color: #3c763d;
  border: 1px solid #d6e9c6;
}
.nts-cta-form .form-message.error {
  background: #f2dede;
  color: #a94442;
  border: 1px solid #ebccd1;
}
@media (max-width: 768px) {
  .nts-cta-form {
    padding: 20px;
  }
  .nts-cta-form .form-title {
    font-size: 1.3em;
  }
}

.nts-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.nts-nav-menu li {
  padding: 0;
  margin: 0;
}
.nts-nav-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--white);
  margin-bottom: 0.5rem;
}
.nts-nav-menu .sub-menu {
  padding: 0;
  margin: 0;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.offcanvas__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.archive-banner .nts-breadcrumb a {
  color: var(--white);
}
.archive-banner .nts-breadcrumb .current {
  color: var(--yellow);
}

.filter-search .search-form {
  margin-bottom: 0;
}
.filter-search .search-form .search-field {
  margin-bottom: 0;
}

.nts-animation-fade-in {
  opacity: 0;
  animation: fadeInAnimation 0.8s ease forwards;
}

.nts-animation-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpAnimation 0.8s ease forwards;
}

.nts-animation-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomInAnimation 0.8s ease forwards;
}

.nts-animation-bounce {
  opacity: 0;
  animation: bounceAnimation 1s ease forwards;
}

@keyframes fadeInAnimation {
  to {
    opacity: 1;
  }
}
@keyframes slideUpAnimation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomInAnimation {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceAnimation {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

:is(.nts-linhvuc-section, .nts-abouthero-section, .nts-timeline-section, .nts-vm-section, .nts-certs-section) {
  position: relative;
  overflow: visible;
  background: var(--nts-bg, #fbfbfd);

  width: 100vw;
  margin-left: calc(50% - 50vw);
}

:is(.nts-abouthero-section, .nts-timeline-section, .nts-vm-section, .nts-certs-section) {
  border-top: 1px solid rgba(27, 50, 93, .08);
}
.nts-abouthero-section { border-top: none; }
:is(.nts-linhvuc-section, .nts-abouthero-section, .nts-timeline-section, .nts-vm-section, .nts-certs-section)::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--nts-grid-line, rgba(27, 50, 93, .04)) 1px, transparent 1px),
    linear-gradient(90deg, var(--nts-grid-line, rgba(27, 50, 93, .04)) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at var(--nts-mask-pos, center), #000 0%, transparent var(--nts-mask-size, 75%));
  mask-image: radial-gradient(ellipse at var(--nts-mask-pos, center), #000 0%, transparent var(--nts-mask-size, 75%));
  z-index: -1;
  pointer-events: none;
}

:is(.nts-linhvuc-glow, .nts-abouthero-glow, .nts-timeline-glow, .nts-vm-glow, .nts-certs-glow) {
  position: absolute; inset: 0;
  z-index: -1; pointer-events: none; overflow: hidden;
}
:is(.nts-linhvuc-glow, .nts-abouthero-glow, .nts-timeline-glow, .nts-vm-glow, .nts-certs-glow)::before,
:is(.nts-linhvuc-glow, .nts-abouthero-glow, .nts-timeline-glow, .nts-vm-glow, .nts-certs-glow)::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(120px);
}
:is(.nts-linhvuc-glow, .nts-abouthero-glow, .nts-timeline-glow, .nts-vm-glow, .nts-certs-glow)::before {
  top: -22%; left: 0%; width: 30%; padding-top: 30%;
  background: var(--nts-secondary, #28A34A); opacity: var(--nts-glow1-o, .1);
}
:is(.nts-linhvuc-glow, .nts-abouthero-glow, .nts-timeline-glow, .nts-vm-glow, .nts-certs-glow)::after {
  bottom: -25%; right: 0%; width: 28%; padding-top: 28%;
  background: var(--nts-glow2, var(--nts-primary, #1B325D)); opacity: var(--nts-glow2-o, .08);
}

:is(.nts-linhvuc-header, .nts-abouthero-header, .nts-timeline-header, .nts-vm-header, .nts-certs-header) {
  position: relative; z-index: 1; max-width: var(--nts-header-w, 720px); margin: 0 auto var(--nts-header-mb, 56px);
  text-align: center; opacity: 0; transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
:is(.nts-linhvuc-section, .nts-abouthero-section, .nts-timeline-section, .nts-vm-section, .nts-certs-section).is-visible
:is(.nts-linhvuc-header, .nts-abouthero-header, .nts-timeline-header, .nts-vm-header, .nts-certs-header) {
  opacity: 1; transform: translateY(0);
}

:is(.nts-timeline-header, .nts-vm-header, .nts-certs-header) { padding-bottom: 20px; }
:is(.nts-timeline-title, .nts-vm-title, .nts-certs-title) { position: relative; display: inline-block; }
:is(.nts-timeline-header, .nts-vm-header, .nts-certs-header)::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 56px; height: 3px; border-radius: 2px; background: var(--nts-secondary, #28A34A);
}
:is(.nts-abouthero-eyebrow, .nts-timeline-eyebrow, .nts-vm-eyebrow, .nts-certs-eyebrow) {
  display: inline-flex; align-items: center; gap: 8px; color: var(--nts-secondary, #28A34A);
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
:is(.nts-abouthero-eyebrow, .nts-timeline-eyebrow, .nts-vm-eyebrow, .nts-certs-eyebrow)::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--nts-secondary, #28A34A);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--nts-secondary, #28A34A) 20%, transparent);
}

:is(.nts-abouthero-stat, .nts-vm-card, .nts-vm-value, .nts-cert-card, .nts-timeline-card) {
  background: #fff;
  box-shadow: 0 16px 40px -22px rgba(27, 50, 93, .26);
  transition: transform .3s ease, box-shadow .3s ease;
}
:is(.nts-abouthero-stat, .nts-vm-card, .nts-vm-value, .nts-cert-card, .nts-timeline-card):hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(27, 50, 93, .32);
}

:is(.nts-abouthero-stat-icon, .nts-vm-card-icon, .linhvuc-icon) {
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--nts-secondary, #28A34A), var(--nts-primary, #1B325D));
}

:is(.nts-abouthero-section, .nts-timeline-section, .nts-vm-section, .nts-certs-section) > .container {
  max-width: 1320px;
}

.nts-counter-section {
  padding: 4rem 0;
  position: relative;
}
.nts-counter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cg fill-opacity='0.05'%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='600'/%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='500'/%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='300'/%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='200'/%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.07;
  z-index: -1;
}
.nts-counter-section .nts-counter-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.nts-counter-section .nts-counter-header::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #28A34A;
  border-radius: 2px;
}
.nts-counter-section .nts-counter-title {
  font-size: 2.5rem;
  color: #1B325D;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.nts-counter-section .nts-counter-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}
.nts-counter-section .nts-counter-grid {
  margin-top: 2rem;
}
.nts-counter-section .counter-value {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.nts-counter-section .counter-number {
  font-weight: 700;
}
.nts-counter-section .counter-suffix {
  margin-left: 2px;
}
.nts-counter-section .counter-title {
  margin: 0 0 0.5rem;
}
.nts-counter-section .counter-desc {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.nts-counter-style1 .nts-counter-item {
  background: rgb(255, 255, 255);
  padding: 2.5rem 1.5rem;
  border-radius: 16px 0 16px 0;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid #3a569e;
  overflow: hidden;
  position: relative;
}
.nts-counter-style1 .nts-counter-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.nts-counter-style1 .nts-counter-item:hover .counter-icon {
  background: #28A34A;
  color: rgb(255, 255, 255);
  transform: scale(1.1);
}
.nts-counter-style1 .nts-counter-item:hover::before {
  width: 100%;
}
.nts-counter-style1 .nts-counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #3a569e 0%, #28A34A 100%);
  transition: width 0.4s ease;
  z-index: 1;
}
.nts-counter-style1 .counter-icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 86, 158, 0.1);
  border-radius: 50%;
  color: #3a569e;
  font-size: 2rem;
  transition: all 0.4s ease;
}
.nts-counter-style1 .counter-number {
  font-size: 3.5rem;
  color: #3a569e;
}
.nts-counter-style1 .counter-suffix {
  font-size: 2rem;
  color: #3a569e;
  font-weight: 600;
}
.nts-counter-style1 .counter-title {
  font-size: 1.2rem;
  color: #3a569e;
  font-weight: 600;
}

.nts-counter-style2 .nts-counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.75rem 1.75rem 2.25rem;
  height: 100%;
  position: relative;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(58, 86, 158, .1);
  box-shadow: 0 16px 40px -26px rgba(27, 50, 93, .25);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.19, 1, .22, 1), box-shadow .4s ease, border-color .4s ease;
}
.nts-counter-style2 .nts-counter-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #3a569e, #28A34A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.nts-counter-style2 .nts-counter-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px -24px rgba(27, 50, 93, .32);
  border-color: rgba(40, 163, 74, .35);
}
.nts-counter-style2 .nts-counter-item:hover::before {
  transform: scaleX(1);
}
.nts-counter-style2 .nts-counter-item:hover .counter-icon {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 18px 34px -8px rgba(40, 163, 74, .5);
}
.nts-counter-style2 .nts-counter-item:hover .counter-number {
  color: #28A34A;
}
.nts-counter-style2 .nts-counter-item:hover .counter-suffix {
  color: #1B325D;
}
.nts-counter-style2 .counter-icon {
  margin-bottom: 1.5rem;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #28A34A;
  border-radius: 22px;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 14px 28px -10px rgba(58, 86, 158, .45);
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s ease;
}
.nts-counter-style2 .counter-number {
  font-size: 3.2rem;
  color: #1B325D;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.nts-counter-style2 .counter-suffix {
  font-size: 2rem;
  color: #28A34A;
  font-weight: 700;
  transition: color 0.3s ease;
}
.nts-counter-style2 .counter-title {
  font-size: 1.15rem;
  color: #1B325D;
  font-weight: 700;
  margin-top: 0.6rem;
}
.nts-counter-style2 .counter-desc {
  margin-top: 0.4rem;
  color: rgba(27, 50, 93, .6);
  font-size: .92rem;
}

.nts-counter-style3 {
  text-align: center;
  padding: 5rem 0;
}
.nts-counter-style3 .nts-counter-header::after {
  background: rgba(255, 255, 255, 0.3);
}
.nts-counter-style3 .nts-counter-title,
.nts-counter-style3 .nts-counter-subtitle {
  color: inherit;
}
.nts-counter-style3 .nts-counter-item {
  padding: 2rem 1rem;
  position: relative;
  transition: transform 0.3s ease;
}
.nts-counter-style3 .nts-counter-item:hover {
  transform: translateY(-5px);
}
.nts-counter-style3 .nts-counter-item:hover .counter-icon {
  transform: scale(1.1);
}
.nts-counter-style3 .nts-counter-item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.2);
  right: 0;
  top: 20%;
}
.nts-counter-style3 .nts-counter-item:last-child::before {
  display: none;
}
.nts-counter-style3 .counter-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  opacity: 0.9;
}
.nts-counter-style3 .counter-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}
.nts-counter-style3 .counter-suffix {
  font-size: 2.5rem;
  font-weight: 600;
}
.nts-counter-style3 .counter-title {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  font-weight: 500;
  opacity: 0.9;
}
.nts-counter-style3 .counter-desc {
  opacity: 0.8;
  margin-top: 0.5rem;
}

.nts-animation-fade-in {
  opacity: 0;
  animation: fadeInAnimation 0.8s ease forwards;
}

.nts-animation-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpAnimation 0.8s ease forwards;
}

.nts-animation-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomInAnimation 0.8s ease forwards;
}

.nts-animation-flip {
  opacity: 0;
  transform: perspective(400px) rotateY(90deg);
  animation: flipAnimation 0.8s ease forwards;
}

@keyframes fadeInAnimation {
  to {
    opacity: 1;
  }
}
@keyframes slideUpAnimation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomInAnimation {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes flipAnimation {
  from {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
    opacity: 1;
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  to {
    transform: perspective(400px) rotateY(0);
    opacity: 1;
  }
}
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

@media (max-width: 768px) {
  .nts-counter-section .nts-counter-title {
    font-size: 2rem;
  }
  .nts-counter-section .counter-number {
    font-size: 2.5rem;
  }
  .nts-counter-section .counter-suffix {
    font-size: 1.5rem;
  }
  .nts-counter-style3 .nts-counter-item::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .nts-counter-style1 .counter-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .nts-counter-style2 .counter-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  .nts-counter-style3 .counter-number {
    font-size: 3rem;
  }
  .nts-counter-style3 .counter-suffix {
    font-size: 2rem;
  }
}

.water-effect-header {
  position: relative;
  background: var(--gradient-water);
  color: #fff;
  padding: 100px 0 60px;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.water-effect-header .page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.water-effect-header .page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #fff;
}

.water-effect-header .page-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  z-index: 10;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.animated-droplet-icon {
  margin: 0 auto 20px;
  height: 90px;
  display: flex;
  justify-content: center;
  color: #fff;
}

.water-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.water-pattern {
  color: #fff;
}

.chemical-container {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: 2;
  opacity: 0.6;
}

.chemical-molecules-svg {
  color: #fff;
  width: 120px;
  height: 120px;
}

.ripple-container {
  position: absolute;
  z-index: 2;
}

.water-ripple-svg {
  color: #fff;
  position: absolute;
  top: 20%;
  left: 15%;
}

.ripple-2 {
  top: 60%;
  left: 75%;
}

.splash-container {
  position: absolute;
  bottom: 25%;
  left: 45%;
  z-index: 3;
  transform: scale(0.8);
}

.water-splash-svg {
  color: #fff;
  opacity: 0.7;
}

.water-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}

.water-particles-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 2;
}

.particle-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.wave-container, .wave, .wave-1, .wave-2, .wave-inner, .wave-path {
  display: none;
}

.bubbles-container {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 3;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  animation: bubble-float var(--duration) ease-in-out infinite;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.8);
}

.bubble-1 {
  width: 30px;
  height: 30px;
  bottom: 20px;
  left: 10%;
  --duration: 8s;
}

.bubble-2 {
  width: 50px;
  height: 50px;
  bottom: 40px;
  left: 20%;
  --duration: 10s;
}

.bubble-3 {
  width: 25px;
  height: 25px;
  bottom: 30px;
  left: 40%;
  --duration: 7s;
}

.bubble-4 {
  width: 40px;
  height: 40px;
  bottom: 10px;
  left: 60%;
  --duration: 11s;
}

.bubble-5 {
  width: 35px;
  height: 35px;
  bottom: 25px;
  left: 80%;
  --duration: 9s;
}

.bubble-6 {
  width: 20px;
  height: 20px;
  bottom: 50px;
  left: 85%;
  --duration: 6s;
}

.bubble-7 {
  width: 30px;
  height: 30px;
  bottom: 30px;
  left: 15%;
  --duration: 9s;
}

.bubble-8 {
  width: 45px;
  height: 45px;
  bottom: 10px;
  left: 35%;
  --duration: 7s;
}

.bubble-9 {
  width: 25px;
  height: 25px;
  bottom: 25px;
  left: 65%;
  --duration: 10s;
}

.bubble-10 {
  width: 15px;
  height: 15px;
  bottom: 50px;
  left: 85%;
  --duration: 8s;
}

.water-effect-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent);
  z-index: 1;
}

.water-droplets-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}

.water-droplet {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 15px rgba(0, 164, 228, 0.5);
  z-index: 5;
}

.water-droplet.droplet-animate {
  animation: droplet-animation 3s ease-in-out;
  animation-fill-mode: forwards;
}

.service-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  background: #fff;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}

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

.service-item-thumbnail {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-item-thumbnail img {
  transform: scale(1.1);
}

.no-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--primary-light);
}

.water-icon {
  width: 60px;
  height: 60px;
  color: var(--primary);
}

.service-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-item-overlay {
  opacity: 1;
}

.hexagon-pattern {
  width: 100%;
  height: 100%;
  color: var(--primary);
  opacity: 0.1;
}

.service-item-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
}

.service-item-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.service-item-title:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.service-card:hover .service-item-title:after {
  width: 60px;
}

.service-item-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-item-title a:hover {
  color: var(--primary);
}

.service-item-excerpt {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.service-item-readmore {
  margin-top: auto;
  text-align: right;
}

.btn-water-ripple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-water-ripple:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 50px;
}

.btn-water-ripple:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-water-ripple:hover:before {
  transform: scale(2);
}

.service-pagination {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.service-pagination .page-numbers {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 5px;
  background: #f5f5f5;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-pagination .page-numbers.current,
.service-pagination .page-numbers:hover {
  background: var(--primary);
  color: #fff;
}

.water-particle {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 3;
  pointer-events: none;
}

.particle-animate {
  animation: particle-animate 8s ease-out forwards;
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s ease, all 0.3s ease;
}

.service-card.animated-in {
  opacity: 1;
  transform: translateY(0);
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.service-item-thumbnail::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  pointer-events: none;
  transition: transform 0.7s ease-in-out;
}

.service-card:hover .service-item-thumbnail::after {
  transform: translateX(500%) rotate(30deg);
}

.btn-water-ripple {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.btn-water-ripple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

.water-effect-header .page-title {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  position: relative;
}

.water-effect-header .page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #fff;
}

.project-archive-page {
  position: relative;
}
.project-archive-page .project-archive-header {
  position: relative;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.9) 0%, rgba(var(--primary-dark), 0.95) 100%);
  overflow: hidden;
}
.project-archive-page .project-archive-header.water-effect-header {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.project-archive-page .project-archive-header.water-effect-header .water-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-dark), 0.4));
  z-index: -1;
  backdrop-filter: blur(10px);
}
.project-archive-page .project-archive-header.water-effect-header .water-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: -1;
  animation: water-bg-animate 120s linear infinite;
}
.project-archive-page .project-archive-header.water-effect-header .chemical-container {
  position: absolute;
  top: 15%;
  right: 8%;
  animation: float 8s infinite ease-in-out;
  z-index: 1;
  transform-origin: center center;
}
.project-archive-page .project-archive-header.water-effect-header .chemical-container .chemical-molecules-svg {
  opacity: 0.4;
  filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.5));
  transition: all 0.5s ease;
}
.project-archive-page .project-archive-header.water-effect-header .chemical-container .chemical-molecules-svg:hover {
  opacity: 0.6;
  filter: drop-shadow(0 0 25px rgba(var(--primary-rgb), 0.7));
  transform: scale(1.05);
}
.project-archive-page .project-archive-header.water-effect-header .water-particles-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: bubble-anim linear infinite;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-1 {
  width: 30px;
  height: 30px;
  left: 10%;
  bottom: -30px;
  animation-duration: 12s;
  animation-delay: 0.1s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-2 {
  width: 15px;
  height: 15px;
  left: 20%;
  bottom: -15px;
  animation-duration: 10s;
  animation-delay: 1s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-3 {
  width: 25px;
  height: 25px;
  left: 30%;
  bottom: -25px;
  animation-duration: 14s;
  animation-delay: 2s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-4 {
  width: 20px;
  height: 20px;
  left: 40%;
  bottom: -20px;
  animation-duration: 8s;
  animation-delay: 0.5s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-5 {
  width: 35px;
  height: 35px;
  left: 50%;
  bottom: -35px;
  animation-duration: 12s;
  animation-delay: 1.5s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-6 {
  width: 22px;
  height: 22px;
  left: 60%;
  bottom: -22px;
  animation-duration: 10s;
  animation-delay: 3s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-7 {
  width: 18px;
  height: 18px;
  left: 70%;
  bottom: -18px;
  animation-duration: 16s;
  animation-delay: 2s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-8 {
  width: 28px;
  height: 28px;
  left: 80%;
  bottom: -28px;
  animation-duration: 9s;
  animation-delay: 1s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-9 {
  width: 15px;
  height: 15px;
  left: 90%;
  bottom: -15px;
  animation-duration: 11s;
  animation-delay: 0.5s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .bubble-10 {
  width: 20px;
  height: 20px;
  left: 95%;
  bottom: -20px;
  animation-duration: 13s;
  animation-delay: 1.5s;
}
.project-archive-page .project-archive-header.water-effect-header .bubbles-container .splash-container {
  position: absolute;
  bottom: 20px;
  left: 30%;
  animation: splash-anim 15s infinite ease-in-out;
  z-index: 1;
  opacity: 0.4;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}
.project-archive-page .project-archive-header .wave-decoration {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
  filter: drop-shadow(0 -5px 5px rgba(0, 0, 0, 0.05));
}
.project-archive-page .project-archive-header .wave-decoration svg {
  display: block;
  width: 100%;
  height: auto;
}
.project-archive-page .project-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.project-archive-page .project-header-content.float-animation {
  animation: floating 4s ease-in-out infinite;
}
.project-archive-page .project-header-content .animated-droplet-icon {
  margin: 0 auto 1.5rem;
  width: 70px;
  height: 100px;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  animation: dropletPulse 3s infinite ease-in-out;
}
.project-archive-page .project-header-content .page-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.project-archive-page .project-header-content .page-title::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, rgba(var(--primary-light), 0.7), rgba(var(--white), 0.9));
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.project-archive-page .project-header-content .page-description {
  color: var(--white);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.project-archive-page .project-header-content .project-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.project-archive-page .project-header-content .project-stats .stat-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.project-archive-page .project-header-content .project-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.2);
}
.project-archive-page .project-header-content .project-stats .stat-item .stat-icon {
  font-size: 1.8rem;
  color: var(--white);
  margin-right: 1rem;
  opacity: 0.9;
}
.project-archive-page .project-header-content .project-stats .stat-item .stat-content {
  text-align: left;
}
.project-archive-page .project-header-content .project-stats .stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.project-archive-page .project-header-content .project-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.project-archive-page .project-header-content .scroll-down-indicator {
  margin-top: 3rem;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}
.project-archive-page .project-header-content .scroll-down-indicator:hover {
  transform: translateY(5px);
}
.project-archive-page .project-header-content .scroll-down-indicator .mouse-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  margin: 0 auto;
  position: relative;
}
.project-archive-page .project-header-content .scroll-down-indicator .mouse-icon .wheel {
  width: 4px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: bobbing 1.5s infinite;
}
.project-archive-page .project-header-content .scroll-down-indicator .scroll-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.project-archive-page .water-particle {
  position: absolute;
  background-color: rgba(var(--primary-rgb), 0.4);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.project-archive-page .water-particle.particle-animate {
  animation: rise 8s ease-in forwards;
}

.project-categories-section {
  padding: 4rem 0;
  position: relative;
}
.project-categories-section .section-title {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
}
.project-categories-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  border-radius: 3px;
}
.project-categories-section .project-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-categories-section .project-categories-grid .category-card {
  display: block;
  text-decoration: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  background-color: white;
}
.project-categories-section .project-categories-grid .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
}
.project-categories-section .project-categories-grid .category-card:hover .category-card-image img {
  transform: scale(1.05);
}
.project-categories-section .project-categories-grid .category-card:hover .category-overlay {
  opacity: 0.3;
}
.project-categories-section .project-categories-grid .category-card:hover .category-card-content {
  background-color: var(--primary);
}
.project-categories-section .project-categories-grid .category-card:hover .category-card-content h3, .project-categories-section .project-categories-grid .category-card:hover .category-card-content .category-count {
  color: white;
}
.project-categories-section .project-categories-grid .category-card .category-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.project-categories-section .project-categories-grid .category-card .category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-categories-section .project-categories-grid .category-card .category-card-image .category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.1));
}
.project-categories-section .project-categories-grid .category-card .category-card-image .category-icon i {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.6;
}
.project-categories-section .project-categories-grid .category-card .category-card-image .category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-categories-section .project-categories-grid .category-card .category-card-content {
  height: 100%;
  padding: 1.2rem;
  background-color: white;
  transition: all 0.3s ease;
  position: relative;
}
.project-categories-section .project-categories-grid .category-card .category-card-content h3 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}
.project-categories-section .project-categories-grid .category-card .category-card-content .category-count {
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.project-filter-section {
  padding: 2rem 0 4rem;
}
.project-filter-section .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.project-filter-section .filter-header .section-title {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
.project-filter-section .filter-header .filter-controls {
  display: flex;
  gap: 1rem;
}
.project-filter-section .filter-header .filter-controls .filter-dropdown {
  position: relative;
}
.project-filter-section .filter-header .filter-controls .filter-dropdown .filter-button {
  display: flex;
  align-items: center;
  gap: 0 rem;
  padding: 0.6rem rem;
  background-color: white;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 8px;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.project-filter-section .filter-header .filter-controls .filter-dropdown .filter-button:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
}
.project-filter-section .filter-header .filter-controls .filter-dropdown .filter-button i {
  font-size: 0.9rem;
}
.project-filter-section .filter-header .filter-controls .filter-dropdown .filter-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
  z-index: 10;
  display: none;
}
.project-filter-section .filter-header .filter-controls .filter-dropdown .filter-dropdown-content.show {
  display: block;
  animation: fadeInDown 0.3s ease-out forwards;
}
.project-filter-section .filter-header .filter-controls .filter-dropdown .filter-dropdown-content .filter-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.project-filter-section .filter-header .filter-controls .filter-dropdown .filter-dropdown-content .filter-item:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
  color: var(--primary);
}
.project-filter-section .filter-header .filter-controls .filter-dropdown .filter-dropdown-content .filter-item.active {
  background-color: var(--primary);
  color: white;
}
.project-filter-section .filter-header .filter-controls .view-toggle {
  display: flex;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.project-filter-section .filter-header .filter-controls .view-toggle .view-button {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  border-radius: 8px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-filter-section .filter-header .filter-controls .view-toggle .view-button:hover:not(.active) {
  background-color: rgba(var(--primary-rgb), 0.05);
}
.project-filter-section .filter-header .filter-controls .view-toggle .view-button.active {
  background-color: var(--primary);
  color: white;
}
.project-filter-section .filter-header .filter-controls .view-toggle .view-button i {
  font-size: 1rem;
}

.project-archive {
  padding: 1rem 0 3rem;
}

.project-card {
  height: 100%;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(var(--primary-rgb), 0.05);
}
.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
}
.project-card:hover .project-item-thumbnail img {
  transform: scale(1.08);
}
.project-card:hover .project-item-title a {
  color: var(--primary);
}
.project-card:hover .project-item-readmore a {
  background-color: var(--primary);
  color: white;
}
.project-card:hover .project-item-readmore a i {
  transform: translateX(3px);
}
.project-card:hover .project-item-overlay {
  opacity: 1;
}
.project-card:hover .project-item-overlay .overlay-content {
  opacity: 1;
  transform: translateY(0);
}
.project-card.animated-in {
  animation: fadeInUp 0.5s ease-out forwards;
}
.project-card .project-item-thumbnail {
  position: relative;
  overflow: hidden;
}
.project-card .project-item-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.6s ease;
}
.project-card .project-item-thumbnail .no-thumbnail {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
.project-card .project-item-thumbnail .no-thumbnail .water-icon {
  width: 60px;
  height: 60px;
  fill: var(--primary);
  opacity: 0.5;
  animation: floating 6s infinite ease-in-out;
}
.project-card .project-item-thumbnail .project-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 6px;
}
.project-card .project-item-thumbnail .project-item-overlay .hexagon-pattern {
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.project-card .project-item-thumbnail .project-item-overlay .overlay-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}
.project-card .project-item-thumbnail .project-item-overlay .overlay-content .view-project-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background-color: white;
  color: var(--primary);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.project-card .project-item-thumbnail .project-item-overlay .overlay-content .view-project-btn:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.project-card .project-item-content {
  padding: 1.5rem;
  position: relative;
  border-top: 1px solid rgba(var(--primary-rgb), 0.05);
}
.project-card .project-item-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.project-card .project-item-title a {
  color: var(--gray-800);
  text-decoration: none;
  transition: color 0.3s ease;
}
.project-card .project-item-title a:hover {
  color: var(--primary);
}
.project-card .project-item-excerpt {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.project-card .project-item-readmore {
  margin-top: 1rem;
  text-align: right;
}
.project-card .project-item-readmore a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.project-card .project-item-readmore a span {
  margin-right: 0.5rem;
}
.project-card .project-item-readmore a i {
  transition: transform 0.3s ease;
}
.project-card .project-item-readmore a:hover {
  background-color: var(--primary);
  color: white;
}
.project-card .project-item-readmore a:hover i {
  transform: translateX(3px);
}

.project-pagination {
  text-align: center;
  margin: 3rem 0 4rem;
}
.project-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
  border-radius: 8px;
  background-color: white;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
.project-pagination .page-numbers.current {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.project-pagination .page-numbers:hover:not(.current) {
  background-color: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.project-pagination .page-numbers.prev, .project-pagination .page-numbers.next {
  padding: 0.5rem 1.2rem;
}
.project-pagination .page-numbers.prev:hover, .project-pagination .page-numbers.next:hover {
  background-color: var(--primary);
  color: white;
}

.project-list-view {
  margin-bottom: 2rem;
}
.project-list-view .project-list-item {
  display: flex;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--primary-rgb), 0.05);
}
.project-list-view .project-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
}
.project-list-view .project-list-item:hover .project-list-thumbnail img {
  transform: scale(1.05);
}
.project-list-view .project-list-item:hover .project-list-title a {
  color: var(--primary);
}
.project-list-view .project-list-item:hover .btn-water-ripple {
  background-color: var(--primary);
  color: white;
}
.project-list-view .project-list-item:hover .btn-water-ripple i {
  transform: translateX(3px);
}
.project-list-view .project-list-item .project-list-thumbnail {
  flex: 0 0 280px;
  position: relative;
  overflow: hidden;
}
.project-list-view .project-list-item .project-list-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-list-view .project-list-item .project-list-thumbnail .no-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.1));
}
.project-list-view .project-list-item .project-list-thumbnail .no-thumbnail .water-icon {
  width: 60px;
  height: 60px;
  fill: var(--primary);
  opacity: 0.5;
}
.project-list-view .project-list-item .project-list-thumbnail .project-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(var(--primary-rgb), 0.8);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 2;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.project-list-view .project-list-item .project-list-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.project-list-view .project-list-item .project-list-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.project-list-view .project-list-item .project-list-title a {
  color: var(--gray-800);
  text-decoration: none;
  transition: color 0.3s ease;
}
.project-list-view .project-list-item .project-list-title a:hover {
  color: var(--primary);
}
.project-list-view .project-list-item .project-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.project-list-view .project-list-item .project-list-meta .meta-item {
  display: flex;
  align-items: center;
}
.project-list-view .project-list-item .project-list-meta .meta-item i {
  margin-right: 0.4rem;
  color: var(--primary);
}
.project-list-view .project-list-item .project-list-excerpt {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: auto;
}
.project-list-view .project-list-item .project-list-action {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(var(--primary-rgb), 0.05);
}
.project-list-view .project-list-item .project-list-action .btn-water-ripple {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.project-list-view .project-list-item .project-list-action .btn-water-ripple span {
  color: var(--white);
  margin-right: 0.5rem;
}
.project-list-view .project-list-item .project-list-action .btn-water-ripple i {
  transition: transform 0.3s ease;
}
.project-list-view .project-list-item .project-list-action .btn-water-ripple:hover {
  background-color: var(--primary);
  color: white;
}
.project-list-view .project-list-item .project-list-action .btn-water-ripple:hover i {
  transform: translateX(3px);
}

.featured-projects-section {
  padding: 4rem 0;
  background-color: rgba(var(--primary-rgb), 0.03);
  border-radius: 24px;
  margin: 2rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.featured-projects-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233a569e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.featured-projects-section .section-title {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
}
.featured-projects-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  border-radius: 3px;
}
.featured-projects-section .featured-projects-slider {
  position: relative;
}
.featured-projects-section .featured-projects-slider .featured-project-slide {
  display: flex !important;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin: 1rem;
  height: 350px;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-image .no-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.1));
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-image .no-thumbnail .water-icon {
  width: 80px;
  height: 80px;
  fill: var(--primary);
  opacity: 0.5;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content {
  flex: 0 0 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content .featured-project-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content .featured-project-title a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content .featured-project-title a:hover {
  color: var(--primary-light);
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content .featured-project-excerpt {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content .featured-project-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content .featured-project-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content .featured-project-link:hover {
  color: var(--primary-light);
}
.featured-projects-section .featured-projects-slider .featured-project-slide .featured-project-content .featured-project-link:hover i {
  transform: translateX(5px);
}
.featured-projects-section .featured-projects-slider .slick-dots {
  bottom: -40px;
}
.featured-projects-section .featured-projects-slider .slick-dots li button:before {
  font-size: 12px;
  color: rgba(var(--primary-rgb), 0.3);
  opacity: 1;
}
.featured-projects-section .featured-projects-slider .slick-dots li.slick-active button:before {
  color: var(--primary);
}
.featured-projects-section .featured-projects-slider .slick-prev, .featured-projects-section .featured-projects-slider .slick-next {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: all 0.3s ease;
}
.featured-projects-section .featured-projects-slider .slick-prev:before, .featured-projects-section .featured-projects-slider .slick-next:before {
  color: var(--primary);
  font-family: "FontAwesome";
  opacity: 1;
}
.featured-projects-section .featured-projects-slider .slick-prev:hover, .featured-projects-section .featured-projects-slider .slick-next:hover {
  background-color: var(--primary);
}
.featured-projects-section .featured-projects-slider .slick-prev:hover:before, .featured-projects-section .featured-projects-slider .slick-next:hover:before {
  color: white;
}
.featured-projects-section .featured-projects-slider .slick-prev {
  left: -20px;
}
.featured-projects-section .featured-projects-slider .slick-prev:before {
  content: "\f104";
}
.featured-projects-section .featured-projects-slider .slick-next {
  right: -20px;
}
.featured-projects-section .featured-projects-slider .slick-next:before {
  content: "\f105";
}

.nts-project-overview .nts-project-breadcrumb {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.nts-project-overview .nts-project-title {
  font-size: 2.4rem;
  font-weight: 500;
}

.nts-project-challenge {
  display: flex;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.nts-project-challenge .col {
  position: relative;
}
.nts-project-challenge .challenge-image {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  transform: translate(25%, -25%);
  top: 0;
  right: 0;
}
.nts-project-challenge .challenge-image img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.nts-project-challenge .challenge-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.nts-project-challenge .challenge-item {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 15px;
  background: var(--primary);
  color: var(--white);
}
.nts-project-challenge .challenge-item i {
  font-size: 1.5rem;
}
.nts-project-challenge .challenge-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--primary);
}

.nts-technology-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nts-technology-card .technology-image {
  width: 240px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.nts-technology-card .technology-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.nts-technology-card .technology-title {
  border-left: 2px solid var(--primary);
  line-height: 1;
  padding-left: 1rem;
  color: var(--primary);
}
.nts-technology-card p:last-child {
  margin-bottom: 0;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.6s linear;
  z-index: 1;
}

.project-category-page .category-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1rem;
}
.project-category-page .category-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.project-category-page .category-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.project-category-page .category-breadcrumb i {
  margin: 0 0.5rem;
  font-size: 0.8rem;
}
.project-category-page .category-breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}
.project-category-page .category-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.project-category-page .category-stats .stat-item {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 0.8rem 1.8rem;
  text-align: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.project-category-page .category-stats .stat-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.project-category-page .category-stats .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.project-category-page .category-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.project-category-page .project-category-filter {
  margin: 2rem 0;
  padding: 1.2rem;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.project-category-page .project-category-filter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  border-radius: 15px 0 0 15px;
}
.project-category-page .project-category-filter .filter-title {
  font-weight: 600;
  color: var(--primary);
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  padding-left: 1rem;
}
.project-category-page .project-category-filter .filter-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.project-category-page .project-category-filter .filter-item {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  background-color: rgba(var(--primary-rgb), 0.05);
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
}
.project-category-page .project-category-filter .filter-item:hover, .project-category-page .project-category-filter .filter-item.filter-hover {
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.1);
}
.project-category-page .project-category-filter .filter-item.active {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.project-category-page .project-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(var(--primary-rgb), 0.8);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}
.project-category-page .project-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.project-category-page .project-item-meta .meta-item {
  display: flex;
  align-items: center;
}
.project-category-page .project-item-meta .meta-item i {
  margin-right: 0.4rem;
  color: var(--primary);
}

@media (max-width: 1199px) {
  .project-archive-page .project-header-content .page-title {
    font-size: 2.2rem;
  }
  .project-archive-page .project-header-content .page-description {
    font-size: 1.1rem;
  }
  .project-archive-page .project-header-content .project-stats {
    gap: 1.5rem;
  }
  .project-archive-page .project-header-content .project-stats .stat-item {
    padding: 0.8rem 1.2rem;
  }
  .project-archive-page .project-header-content .project-stats .stat-item .stat-number {
    font-size: 1.6rem;
  }
  .featured-projects-section .featured-project-slide {
    height: auto;
    flex-direction: column;
  }
  .featured-projects-section .featured-project-slide .featured-project-image {
    flex: 0 0 200px;
  }
  .featured-projects-section .featured-project-slide .featured-project-content {
    flex: 1;
    padding: 1.5rem;
  }
  .featured-projects-section .featured-project-slide .featured-project-content .featured-project-title {
    font-size: 1.4rem;
  }
}
@media (max-width: 991px) {
  .project-archive-page .project-archive-header {
    padding: 5rem 0 3rem;
  }
  .project-archive-page .project-header-content {
    max-width: 90%;
  }
  .project-archive-page .project-header-content .animated-droplet-icon {
    width: 60px;
    height: 90px;
  }
  .project-archive-page .project-header-content .page-title {
    font-size: 2rem;
  }
  .project-archive-page .project-header-content .project-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .project-archive-page .project-header-content .project-stats .stat-item {
    flex: 0 0 calc(50% - 1rem);
  }
  .project-list-view .project-list-item {
    flex-direction: column;
  }
  .project-list-view .project-list-item .project-list-thumbnail {
    flex: 0 0 200px;
  }
  .project-list-view .project-list-item .project-list-action {
    border-left: none;
    border-top: 1px solid rgba(var(--primary-rgb), 0.05);
    padding: 1rem;
  }
  .featured-projects-section .slick-prev {
    left: 10px;
  }
  .featured-projects-section .slick-next {
    right: 10px;
  }
}
@media (max-width: 767px) {
  .project-archive-page .project-archive-header {
    padding: 4rem 0 2rem;
  }
  .project-archive-page .project-archive-header .chemical-container {
    top: 10%;
    right: 5%;
  }
  .project-archive-page .project-archive-header .chemical-container .chemical-molecules-svg {
    width: 80px;
    height: 80px;
  }
  .project-archive-page .project-header-content .page-title {
    font-size: 1.8rem;
  }
  .project-archive-page .project-header-content .page-description {
    font-size: 1rem;
  }
  .project-archive-page .project-header-content .project-stats .stat-item {
    flex: 0 0 100%;
    margin-bottom: 1rem;
  }
  .project-categories-section {
    padding: 3rem 0;
  }
  .project-categories-section .section-title {
    font-size: 1.8rem;
  }
  .project-filter-section .filter-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .project-filter-section .filter-header .section-title {
    margin-bottom: 1rem;
  }
  .project-filter-section .filter-header .filter-controls {
    width: 100%;
    justify-content: space-between;
  }
  .project-category-page .project-category-filter {
    flex-direction: column;
    align-items: flex-start;
  }
  .project-category-page .project-category-filter .filter-title {
    margin-bottom: 0.8rem;
  }
  .project-category-page .category-stats {
    flex-wrap: wrap;
  }
  .project-category-page .category-stats .stat-item {
    flex: 0 0 100%;
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
  }
  .project-category-page .category-stats .stat-item .stat-number {
    font-size: 1.5rem;
  }
  .project-category-page .category-stats .stat-item .stat-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 575px) {
  .project-archive-page .project-header-content .animated-droplet-icon {
    width: 50px;
    height: 75px;
  }
  .project-archive-page .project-header-content .page-title {
    font-size: 1.6rem;
  }
  .project-card .project-item-title {
    font-size: 1.1rem;
  }
  .project-card .project-item-excerpt {
    font-size: 0.9rem;
  }
  .project-card .project-item-readmore a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .project-list-view .project-list-item .project-list-title {
    font-size: 1.2rem;
  }
  .project-list-view .project-list-item .project-list-excerpt {
    font-size: 0.9rem;
  }
  .featured-projects-section {
    padding: 3rem 0;
  }
  .featured-projects-section .section-title {
    font-size: 1.6rem;
  }
}

.partners-hero {
  position: relative;
  padding: 80px 0 40px;
  background: var(--gradient-primary);
  color: var(--white);
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave-path {
  fill: var(--white);
  opacity: 0.6;
}

.bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: bubble-float var(--duration) ease-in-out infinite;
}

.bubble-1 {
  width: 30px;
  height: 30px;
  top: 20%;
  left: 10%;
  --duration: 8s;
}

.bubble-2 {
  width: 50px;
  height: 50px;
  top: 40%;
  left: 20%;
  --duration: 10s;
}

.bubble-3 {
  width: 25px;
  height: 25px;
  top: 30%;
  left: 40%;
  --duration: 7s;
}

.bubble-4 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 60%;
  --duration: 11s;
}

.bubble-5 {
  width: 35px;
  height: 35px;
  top: 20%;
  left: 80%;
  --duration: 9s;
}

.bubble-6 {
  width: 20px;
  height: 20px;
  top: 70%;
  left: 85%;
  --duration: 6s;
}

@keyframes bubble-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: fade-in-up 1s ease;
  color: var(--white);
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fade-in-up 1s ease 0.2s both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.partners-section {
  position: relative;
  padding: 20px 0 60px;
  overflow: hidden;
}

.decorative-icon {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
  color: var(--primary);
}

.icon-top-left {
  top: 20px;
  left: 20px;
  animation: float-animation 8s ease-in-out infinite;
}

.icon-top-right {
  top: 20px;
  right: 20px;
  animation: float-animation 10s ease-in-out infinite;
}

.decorative-pattern {
  position: absolute;
  z-index: 1;
  opacity: 0.05;
  color: var(--primary);
}

.pattern-left {
  top: 100px;
  left: -30px;
  animation: rotate-slow 30s linear infinite;
}

.pattern-right {
  bottom: 100px;
  right: -30px;
  animation: rotate-slow-reverse 30s linear infinite;
}

@keyframes float-animation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-slow-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.title-decoration .line {
  height: 2px;
  width: 60px;
  background: var(--secondary);
  display: block;
}

.title-decoration .icon {
  color: var(--secondary);
}

.filter-tabs {
  position: relative;
  margin-bottom: 50px;
  z-index: 2;
}

.tab-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.tab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: #f5f5f5;
  color: var(--primary-dark);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.tab-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.tab-item:hover::before,
.tab-item.active::before {
  opacity: 1;
}

.tab-item:hover,
.tab-item.active {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.tab-indicator {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-full);
}

.tab-indicator::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
  }
}

.partners-grid-container {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
}

.flow-pattern {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 20px;
  color: rgba(var(--primary-rgb), 0.1);
}

.flow-path {
  stroke-dasharray: 10;
  animation: flow-animation 20s linear infinite;
}

@keyframes flow-animation {
  to {
    stroke-dashoffset: 100;
  }
}

.partner-card {
  perspective: 1000px;
  height: 350px;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: calc(0.1s * var(--animation-order, 0));
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.partner-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card-front {
  background-color: var(--white);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  display: flex;
  flex-direction: column;
}

.card-back {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotateY(180deg);
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.partner-logo {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(var(--primary-lighter-rgb), 0.03);
  position: relative;
  overflow: hidden;
}

.partner-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-slow);
  opacity: 0;
}

.partner-card:hover .partner-logo::after {
  width: 200%;
  height: 200%;
  opacity: 1;
}

.partner-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: all var(--transition-normal);
  filter: saturate(0.9);
}

.partner-card:hover .partner-logo img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.partner-header {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-back .partner-name {
  color: var(--white);
}

.partner-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 10px;
  transition: color var(--transition-normal);
}

.partner-type {
  margin-top: auto;
}

.partner-type-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background-color: rgba(var(--secondary-rgb), 0.1);
  color: var(--secondary);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-normal);
}

.type-icon {
  color: currentColor;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--primary-dark-rgb), 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: var(--radius-lg);
  gap: 10px;
}

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

.overlay-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

.back-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.back-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.back-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.partner-description p {
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
  opacity: 0.9;
  color: var(--white);
}

.partner-website {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-website a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  word-break: break-all;
  white-space: normal;
  gap: 8px;
  transition: all var(--transition-normal);
  font-size: 14px;
}

.partner-website a:hover {
  opacity: 0.8;
}

.website-icon {
  color: var(--yellow);
}

.back-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.1;
  color: var(--white);
  transform: rotate(-15deg);
}

.no-partners {
  text-align: center;
  padding: 60px 30px;
  background: rgba(var(--primary-lighter-rgb), 0.03);
  border-radius: var(--radius-lg);
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.no-partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.no-data-icon {
  color: var(--primary);
  opacity: 0.5;
  animation: float-animation 4s ease-in-out infinite;
}

.no-partners p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

.water-drops {
  position: relative;
  width: 100px;
  height: 30px;
  margin-top: 10px;
}

.drop {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary);
  transform: rotate(-45deg);
  opacity: 0;
  animation: drop-fall 2s ease-in infinite;
}

.drop-1 {
  left: 20px;
  animation-delay: 0s;
}

.drop-2 {
  left: 50px;
  animation-delay: 0.5s;
}

.drop-3 {
  left: 80px;
  animation-delay: 1s;
}

@keyframes drop-fall {
  0% {
    top: -20px;
    opacity: 0;
    transform: rotate(-45deg) scale(0.5);
  }
  50% {
    opacity: 0.5;
    transform: rotate(-45deg) scale(1);
  }
  100% {
    top: 20px;
    opacity: 0;
    transform: rotate(-45deg) scale(0.5);
  }
}

@media (max-width: 992px) {
  .partners-hero {
    padding: 60px 0 30px;
  }
  .hero-title {
    font-size: 36px;
  }
  .section-title {
    font-size: 28px;
  }
  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .pattern-left,
  .pattern-right {
    display: none;
  }
}
@media (max-width: 768px) {
  .partners-hero {
    padding: 50px 0 25px;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-description {
    font-size: 16px;
  }
  .section-title {
    font-size: 24px;
  }
  .tab-item {
    padding: 10px 15px;
    font-size: 14px;
  }
  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .partner-card {
    height: 320px;
  }
}
@media (max-width: 576px) {
  .partners-hero {
    padding: 40px 0 20px;
  }
  .hero-title {
    font-size: 26px;
  }
  .section-title {
    font-size: 22px;
  }
  .tab-container {
    flex-direction: column;
    width: 100%;
  }
  .tab-item {
    width: 100%;
    justify-content: center;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.water-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.water-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 86, 158, 0.05) 0%, rgba(0, 164, 228, 0.03) 100%);
  z-index: 0;
  overflow: hidden;
}

@keyframes water-bg-animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wave-divider, .wave-divider-top {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
.wave-divider::before, .wave-divider-top::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  background-repeat: repeat-x;
}

.wave-divider::before {
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8fbff' fill-opacity='1' d='M0,128L48,122.7C96,117,192,107,288,101.3C384,96,480,96,576,122.7C672,149,768,203,864,202.7C960,203,1056,149,1152,133.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 100% 60px;
}

.water-droplets-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.water-droplet {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 15px rgba(0, 164, 228, 0.5);
  z-index: 5;
}
.water-droplet.droplet-animate {
  animation: droplet-animation 3s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes droplet-animation {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  20% {
    transform: scale(1);
    opacity: 0.7;
  }
  80% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.product-hero {
  position: relative;
  background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 0;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.1;
}
.product-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.product-hero-content {
  flex: 1;
  max-width: 600px;
}
.product-hero-image {
  flex: 1;
  max-width: 500px;
  position: relative;
  transition: all 0.5s ease;
}
.product-hero-image .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-8deg);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: all 0.5s ease;
}
.product-hero-image .image-overlay {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(145deg, rgba(0, 164, 228, 0.2) 0%, rgba(58, 86, 158, 0.2) 100%);
  border-radius: 20px;
  filter: blur(10px);
  z-index: -1;
  opacity: 0.8;
  animation: pulse-overlay 3s infinite alternate;
}
.product-hero-image .image-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.product-hero-image .image-badge::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--primary-dark) transparent transparent var(--primary-dark);
}
.product-hero-image:hover .image-container {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.product-hero-image:hover img {
  transform: scale(1.05);
}

@keyframes pulse-overlay {
  0% {
    opacity: 0.6;
    transform: scale(0.98);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}
.product-type {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}
.product-type svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.product-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.product-title .title-first {
  position: relative;
  display: inline-block;
}
.product-title .title-first.animated::after {
  animation: blink-cursor 0.8s step-end infinite;
}
.product-title .title-highlight {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 10px;
  transition-delay: 0.4s;
}

@keyframes blink-cursor {
  from, to {
    border-right-color: transparent;
  }
  50% {
    border-right-color: var(--white);
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  transition-delay: 0.6s;
}
.product-features .product-feature-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
}
.product-features .product-feature-item svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: var(--secondary);
}

.product-cta-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 0.8s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.product-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 164, 228, 0.9);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-cta-btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.product-cta-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.product-cta-btn svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.product-short-desc {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.product-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--white);
}
.product-section:nth-child(even) {
  background-color: var(--background);
}
.product-section-inner {
  position: relative;
}

.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(145deg, var(--primary-light), var(--primary-medium));
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(58, 86, 158, 0.15);
}
.section-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
}
.section-icon.cta-section-icon {
  background: linear-gradient(145deg, var(--primary-light), var(--primary));
}
.section-icon.cta-section-icon svg {
  color: var(--primary-dark);
}
.section-icon.tech-icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.section-icon.tech-icon svg {
  color: var(--white);
}

.section-title {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--primary);
  padding-bottom: 15px;
  overflow: hidden;

}
.section-title span {
  position: relative;
  display: inline-block;
  padding: 0 0px;
}
.section-title span::before, .section-title span::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-medium));
}
.section-title span::before {
  right: 100%;
}
.section-title span::after {
  left: 100%;
}
.section-title::after {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  border-radius: 3px;
}
.section-title.with-icon {
  margin-top: 30px;
}
.section-title.with-icon .section-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
  background: linear-gradient(145deg, var(--primary-light), var(--primary-medium));
  box-shadow: 0 5px 15px rgba(58, 86, 158, 0.2);
  transition: all 0.3s ease;
}
.section-title.with-icon .section-icon:hover {
  transform: translateX(-50%) rotate(10deg);
}
.section-title.tech-title {
  color: var(--white);
}
.section-title.tech-title span::before, .section-title.tech-title span::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
}
.section-title.tech-title::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}
.section-title.reviews-title span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title.reviews-title span::before, .section-title.reviews-title span::after {
  background: linear-gradient(90deg, transparent, var(--secondary-light));
}
.section-title.cta-title {
  color: var(--primary-dark);
}
.section-title.faq-title::after {
  background: linear-gradient(90deg, var(--secondary-light), var(--secondary), var(--secondary-light));
}

.section-title-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.section-title-anim.animate {
  opacity: 1;
  transform: translateY(0);
}

.product-section-inner {
  position: relative;
}
.product-section-inner .section-background-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.2;
  filter: blur(50px);
  z-index: 0;
}
.product-section-inner .section-background-shape.top-right {
  top: -50px;
  right: -50px;
}
.product-section-inner .section-background-shape.bottom-left {
  bottom: -50px;
  left: -50px;
  background: var(--secondary-light);
}

.product-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.product-overview .overview-main {
    flex: 1 1 100%;
    width: 100%;
    min-width: auto;

    @media (min-width: 768px) {
        flex: 2;
        min-width: 380px;
    }
}

.product-overview .overview-main.fade-in-right {
  opacity: 1;
  transform: translateX(0);
}
.product-overview .overview-main-content {
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 35px;
  height: 100%;
}
.product-overview .overview-main-content h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.product-overview .overview-main-content h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}
.product-overview .overview-main-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 15px;
}
.product-overview .overview-sidebar {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-overview .overview-sidebar .overview-box {
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.product-overview .overview-sidebar .overview-box.fade-in-up {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease-out;
}
.product-overview .overview-sidebar .overview-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.product-overview .overview-sidebar .overview-box h3 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 600;
}
.product-overview .overview-sidebar .overview-box p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}
.product-overview .overview-sidebar .overview-box-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  margin-bottom: 18px;
}
.product-overview .overview-sidebar .overview-box-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}
.product-overview .overview-sidebar .overview-box-icon.icon-pulse {
  animation: iconPulse 0.8s ease-in-out;
}
.product-overview .overview-sidebar .overview-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-overview .overview-sidebar .overview-box ul li {
	font-size: 15px;
    margin: 0 0 12px 0;
    padding-left: 0;
    position: relative;
}
.product-overview .overview-sidebar .overview-box ul li:last-child {
  margin-bottom: 0;
}

.product-overview .overview-sidebar .overview-box ul li::before {
    display: none !important;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.product-technology {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.product-technology .technology-item {
  flex: 1;
  min-width: 300px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  transition: all 0.3s ease;
}
.product-technology .technology-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.product-technology .technology-item h3 {
  margin-bottom: 20px;
  color: var(--primary);
}
.product-technology .technology-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: 50%;
  margin-bottom: 20px;
}
.product-technology .technology-icon svg {
  width: 25px;
  height: 25px;
  color: var(--primary);
}

.applications-content {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
}

.certificates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.certificates-list .certificate-item {
  display: flex;
  align-items: center;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 10px 20px;
}
.certificates-list .certificate-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-right: 10px;
}

.product-reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.product-reviews .review-item {
  flex: 1;
  min-width: 280px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 25px;
  position: relative;
}
.product-reviews .review-item::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 60px;
  line-height: 1;
  color: var(--primary-light);
  font-family: serif;
}
.product-reviews .review-content {
  margin-bottom: 20px;
  position: relative;
  padding-left: 10px;
  font-style: italic;
  color: var(--text-light);
}
.product-reviews .reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.product-reviews .reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
}
.product-reviews .reviewer-details {
  flex: 1;
}
.product-reviews .reviewer-name {
  font-weight: bold;
  color: var(--text-dark);
}
.product-reviews .reviewer-position {
  font-size: 14px;
  color: var(--text-light);
}
.product-reviews .review-rating {
  color: #ffc107;
  font-size: 18px;
}

.product-faq {
  max-width: 800px;
  margin: 0 auto;
}
.product-faq .faq-item {
  margin-bottom: 15px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-faq .faq-question {
  padding: 20px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  color: var(--text-dark);
}
.product-faq .faq-question:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--primary);
  transition: all 0.3s ease;
}
.product-faq .faq-question.active:after {
  transform: translateY(-50%) rotate(45deg);
}
.product-faq .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-faq .faq-answer.active {
  padding: 0 20px 20px;
  max-height: 1000px;
}
.product-faq .faq-answer p {
  margin-top: 0;
}
.product-faq .faq-more-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.product-faq .faq-more-link svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.product-cta-section {
  background-color: var(--primary-light);
}
.product-cta-section .contact-info {
  text-align: center;
  margin-bottom: 30px;
}
.product-cta-section .contact-info .contact-phone {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}
.product-cta-section .contact-info .contact-phone svg {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  color: var(--primary);
}
.product-cta-section .contact-info .contact-phone a {
  color: var(--primary);
  text-decoration: none;
}
.product-cta-section .contact-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 30px;
}
.product-cta-section .contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.product-cta-section .contact-form .form-row .form-group {
  flex: 1;
}
.product-cta-section .contact-form .form-group {
  margin-bottom: 20px;
}
.product-cta-section .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.product-cta-section .contact-form .form-group label .required {
  color: #f44336;
}
.product-cta-section .contact-form .form-group input, .product-cta-section .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
}
.product-cta-section .contact-form .form-group input:focus, .product-cta-section .contact-form .form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.product-cta-section .contact-form .submit-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-cta-section .contact-form .submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}
.product-cta-section .contact-form .submit-btn svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.product-cta-section .response-time {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
}
.product-cta-section .response-time svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  color: var(--primary);
}

.related-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.related-content .related-item {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}
.related-content .related-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.related-content .related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.related-content .related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.related-content .related-image:hover img {
  transform: scale(1.05);
}
.related-content .related-content-inner {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-content .related-title {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
}
.related-content .related-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}
.related-content .related-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  align-self: flex-start;
}
.related-content .related-link svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

@media (max-width: 992px) {
  .product-hero-inner {
    flex-direction: column;
  }
  .product-hero-content, .product-hero-image {
    max-width: 100%;
  }
  .product-title {
    font-size: 36px;
  }
  .product-overview .overview-sidebar {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-hero {
    padding: 50px 0;
  }
  .product-section {
    padding: 50px 0;
  }
  .product-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 26px;
  }
  .product-cta-section .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  .product-overview {
    flex-direction: column;
  }
  .product-overview .overview-main {
    min-width: 100%;
  }
  .product-overview .overview-sidebar {
    min-width: 100%;
  }
}
@media (max-width: 576px) {
  .product-title {
    font-size: 24px;
  }
  .product-short-desc {
    font-size: 16px;
  }
  .section-title {
    font-size: 22px;
  }
}

.product-archive {
  position: relative;
  padding: 3rem 0;
}
.product-archive::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 800'%3E%3Cg fill-opacity='0.05'%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='600'/%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='500'/%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='300'/%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='200'/%3E%3Ccircle fill='%233A569E' cx='400' cy='400' r='100'/%3E%3C/g%3E%3C/svg%3E");
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: -1;
}
.product-archive .product-archive-header {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='300' viewBox='0 0 1600 800' preserveAspectRatio='xMidYMid slice'%3E%3Cg %3E%3Cpath fill='%233A569E' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23344C8A' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%232E4277' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23283964' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23233051' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
  padding: 4rem 2rem;
  border-radius: 24px 0 24px 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.product-archive .product-archive-header::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: var(--secondary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}
.product-archive .product-archive-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 30%;
  width: 100px;
  height: 100px;
  background-color: var(--yellow);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite 1s;
}
.product-archive .product-archive-header .page-title {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 1rem;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
}
.product-archive .product-archive-header .page-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}
.product-archive .product-archive-header .page-description {
  max-width: 700px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  font-size: 1.1rem;
}
.product-archive .product-filter {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.product-archive .product-filter .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-archive .product-filter .filter-header .filter-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0;
  animation: fadeInLeft 0.5s ease-out;
}
.product-archive .product-filter .filter-header .filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
  animation: fadeInRight 0.5s ease-out;
}
.product-archive .product-filter .filter-header .filter-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}
.product-archive .product-filter .filter-header .filter-toggle i {
  font-size: 1rem;
}
.product-archive .product-filter .filter-form {
  display: grid;
  gap: 1.5rem;
  animation: fadeInUp 0.5s ease-out 0.2s both;
}
.product-archive .product-filter .filter-form .filter-group {
  position: relative;
}
.product-archive .product-filter .filter-form .filter-input-wrapper,
.product-archive .product-filter .filter-form .filter-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.product-archive .product-filter .filter-form .filter-input-wrapper i,
.product-archive .product-filter .filter-form .filter-select-wrapper i {
  position: absolute;
  left: 1rem;
  color: var(--primary);
  font-size: 1rem;
}
.product-archive .product-filter .filter-form .filter-input-wrapper input,
.product-archive .product-filter .filter-form .filter-input-wrapper select,
.product-archive .product-filter .filter-form .filter-select-wrapper input,
.product-archive .product-filter .filter-form .filter-select-wrapper select {
  width: 100%;
  padding-left: 2rem;
  min-height: unset;
  box-shadow: none;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.product-archive .product-filter .filter-form .filter-input-wrapper input:focus,
.product-archive .product-filter .filter-form .filter-input-wrapper select:focus,
.product-archive .product-filter .filter-form .filter-select-wrapper input:focus,
.product-archive .product-filter .filter-form .filter-select-wrapper select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
}
.product-archive .product-filter .filter-form .filter-input-wrapper select,
.product-archive .product-filter .filter-form .filter-select-wrapper select {
  appearance: none;
  cursor: pointer;
}
.product-archive .product-filter .filter-form .filter-input-wrapper::after,
.product-archive .product-filter .filter-form .filter-select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  color: var(--primary);
  pointer-events: none;
}
.product-archive .product-filter .filter-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  animation: fadeInUp 0.5s ease-out 0.3s both;
}
.product-archive .product-filter .filter-actions button,
.product-archive .product-filter .filter-actions a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.product-archive .product-filter .filter-actions button:hover,
.product-archive .product-filter .filter-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.product-archive .product-filter .filter-actions button i,
.product-archive .product-filter .filter-actions a i {
  font-size: 1rem;
}
.product-archive .product-filter .filter-actions .filter-submit {
  background: var(--primary);
  color: #fff;
  margin: 0;
}
.product-archive .product-filter .filter-actions .filter-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.product-archive .product-filter .filter-actions .filter-reset {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
}
.product-archive .product-filter .filter-actions .filter-reset:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.product-archive .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.product-archive .product-grid .product-card {
  background: var(--white);
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 0px solid var(--primary);
  animation: fadeInUp 0.5s ease-out;
  animation-fill-mode: both;
}
.product-archive .product-grid .product-card:nth-child(1) {
  animation-delay: 0.1s;
}
.product-archive .product-grid .product-card:nth-child(2) {
  animation-delay: 0.2s;
}
.product-archive .product-grid .product-card:nth-child(3) {
  animation-delay: 0.3s;
}
.product-archive .product-grid .product-card:nth-child(4) {
  animation-delay: 0.4s;
}
.product-archive .product-grid .product-card:nth-child(5) {
  animation-delay: 0.5s;
}
.product-archive .product-grid .product-card:nth-child(6) {
  animation-delay: 0.6s;
}
.product-archive .product-grid .product-card:nth-child(7) {
  animation-delay: 0.7s;
}
.product-archive .product-grid .product-card:nth-child(8) {
  animation-delay: 0.8s;
}
.product-archive .product-grid .product-card:nth-child(9) {
  animation-delay: 0.9s;
}
.product-archive .product-grid .product-card:nth-child(10) {
  animation-delay: 1s;
}
.product-archive .product-grid .product-card:nth-child(11) {
  animation-delay: 1.1s;
}
.product-archive .product-grid .product-card:nth-child(12) {
  animation-delay: 1.2s;
}
.product-archive .product-grid .product-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
}
.product-archive .product-grid .product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-archive .product-grid .product-card:hover .product-detail-link {
  transform: translateY(0);
  opacity: 1;
}
.product-archive .product-grid .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1;
}
.product-archive .product-grid .product-card .product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-archive .product-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-archive .product-grid .product-card .product-image .product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 1;
}
.product-archive .product-grid .product-card .product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-archive .product-grid .product-card .product-image:hover::after {
  opacity: 1;
}
.product-archive .product-grid .product-card .product-content {
  padding: 1.5rem;
  position: relative;
}
.product-archive .product-grid .product-card .product-content .product-category {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}
.product-archive .product-grid .product-card .product-content .product-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  height: 3.6rem;
}
.product-archive .product-grid .product-card .product-content .product-title a {
  color: inherit;
  text-decoration: none;
}
.product-archive .product-grid .product-card .product-content .product-title a:hover {
  color: var(--secondary);
}
.product-archive .product-grid .product-card .product-content .product-description {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 3rem;
  margin: 0 auto;
  font-size: 1.5;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
  color: #686868;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-archive .product-grid .product-card .product-content .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-archive .product-grid .product-card .product-content .product-meta .product-price {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
}
.product-archive .product-grid .product-card .product-content .product-meta .product-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.product-archive .product-grid .product-card .product-content .product-meta .product-rating i {
  color: var(--primary-medium);
  font-size: 0.9rem;
}
.product-archive .product-grid .product-card .product-content .product-meta .product-rating span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
}
.product-archive .product-grid .product-card .product-detail-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-archive .product-grid .product-card .product-detail-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.product-archive .product-grid .product-card .product-detail-link:hover::before {
  transform: translateX(100%);
}
.product-archive .product-grid .product-card .product-detail-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.product-archive .pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.product-archive .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0.3rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--primary);
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.product-archive .pagination .page-numbers:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
}
.product-archive .pagination .page-numbers.current {
  animation: pulse 2s infinite;
}
.product-archive .pagination .page-numbers.prev, .product-archive .pagination .page-numbers.next {
  width: auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .product-filter {
    padding: 1rem;
  }
  .product-filter .filter-form {
    gap: 1rem;
  }
  .product-filter .filter-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
@media (max-width: 576px) {
  .product-archive .product-archive-header {
    padding: 3rem 1.5rem;
  }
  .product-archive .product-archive-header .page-title {
    font-size: 2rem;
  }
  .product-archive .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-category-archive {
  position: relative;
  padding-bottom: 4rem;

}
.product-category-archive .product-category-hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px 0 16px 0;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.product-category-archive .product-category-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%233A569E' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23344C8A' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%232E4277' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23283964' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23233051' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.2;
  z-index: 0;
}
.product-category-archive .product-category-hero .category-hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
  padding-right: 2rem;
  animation: fadeInLeft 0.8s ease-out;
}
.product-category-archive .product-category-hero .category-hero-content .breadcrumb-trail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.product-category-archive .product-category-hero .category-hero-content .breadcrumb-trail a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-category-archive .product-category-hero .category-hero-content .breadcrumb-trail a:hover {
  color: var(--white);
}
.product-category-archive .product-category-hero .category-hero-content .breadcrumb-trail i {
  margin: 0 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}
.product-category-archive .product-category-hero .category-hero-content .breadcrumb-trail span {
  color: rgba(255, 255, 255, 0.7);
}
.product-category-archive .product-category-hero .category-hero-content .category-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  color: var(--white);
}
.product-category-archive .product-category-hero .category-hero-content .category-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.5s forwards;
  transform-origin: left;
  width: 0;
}
.product-category-archive .product-category-hero .category-hero-content .category-description {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}
.product-category-archive .product-category-hero .category-hero-content .category-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.product-category-archive .product-category-hero .category-hero-content .category-stats .stat-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.product-category-archive .product-category-hero .category-hero-content .category-stats .stat-item .stat-icon {
  font-size: 1.8rem;
  margin-right: 1rem;
  color: var(--secondary);
}
.product-category-archive .product-category-hero .category-hero-content .category-stats .stat-item .stat-content .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.product-category-archive .product-category-hero .category-hero-content .category-stats .stat-item .stat-content .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.product-category-archive .product-category-hero .category-hero-image {
  flex: 0 0 40%;
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease-out;
}
.product-category-archive .product-category-hero .category-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 5px solid rgba(255, 255, 255, 0.1);
}
.product-category-archive .product-category-hero .category-hero-image .category-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(255, 255, 255, 0.1);
}
.product-category-archive .product-category-hero .category-hero-image .category-placeholder i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.5);
}
.product-category-archive .product-category-hero .category-hero-image .water-drops {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: bubble-float 5s ease-in-out infinite;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(1.3);
  filter: blur(5px);
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop.drop-1 {
  top: 20%;
  left: 10%;
  width: 15px;
  height: 15px;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop.drop-2 {
  top: 40%;
  left: 20%;
  width: 10px;
  height: 10px;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop.drop-3 {
  top: 60%;
  left: 15%;
  width: 12px;
  height: 12px;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop.drop-4 {
  top: 30%;
  left: 40%;
  width: 8px;
  height: 8px;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop.drop-5 {
  top: 70%;
  left: 35%;
  width: 14px;
  height: 14px;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop.drop-6 {
  top: 50%;
  left: 60%;
  width: 10px;
  height: 10px;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop.drop-7 {
  top: 20%;
  left: 70%;
  width: 12px;
  height: 12px;
}
.product-category-archive .product-category-hero .category-hero-image .water-drops .water-drop.drop-8 {
  top: 80%;
  left: 80%;
  width: 15px;
  height: 15px;
}
.product-category-archive .product-category-hero .wave-decoration {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
}
.product-category-archive .product-category-hero .wave-decoration svg {
  width: 100%;
  height: auto;
}
.product-category-archive .category-navigation {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.5s ease-out;
}
.product-category-archive .category-navigation .nav-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.product-category-archive .category-navigation .category-nav-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.product-category-archive .category-navigation .category-nav-items .nav-item {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.product-category-archive .category-navigation .category-nav-items .nav-item i {
  margin-right: 0.5rem;
  color: var(--primary);
  font-size: 0.9rem;
}
.product-category-archive .category-navigation .category-nav-items .nav-item .count {
  margin-left: 0.5rem;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
}
.product-category-archive .category-navigation .category-nav-items .nav-item:hover {
  background: rgba(var(--primary-rgb), 0.1);
  transform: translateY(-2px);
}
.product-category-archive .category-navigation .category-nav-items .nav-item.active {
  background: var(--primary);
  color: var(--white);
}
.product-category-archive .category-navigation .category-nav-items .nav-item.active i, .product-category-archive .category-navigation .category-nav-items .nav-item.active .count {
  color: var(--white);
}
.product-category-archive .category-navigation .category-nav-items .nav-item.active .count {
  background: rgba(255, 255, 255, 0.2);
}
.product-category-archive .product-card {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-category-archive .product-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.product-category-archive .product-card .water-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.product-category-archive .product-card .water-ripple.active {
  animation: ripple 0.8s ease-out forwards;
}
.product-category-archive .product-card .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--primary-rgb), 0.2);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.product-category-archive .product-card .product-overlay .overlay-icons {
  display: flex;
  gap: 1rem;
}
.product-category-archive .product-card .product-overlay .overlay-icons .icon-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}
.product-category-archive .product-card .product-overlay .overlay-icons .icon-btn:hover {
  background: var(--primary);
  color: var(--white);
}
.product-category-archive .product-card .product-overlay .overlay-icons .icon-btn:nth-child(1) {
  transition-delay: 0.1s;
}
.product-category-archive .product-card .product-overlay .overlay-icons .icon-btn:nth-child(2) {
  transition-delay: 0.2s;
}
.product-category-archive .product-card .product-overlay .overlay-icons .icon-btn:nth-child(3) {
  transition-delay: 0.3s;
}
.product-category-archive .product-card:hover .product-overlay {
  opacity: 1;
}
.product-category-archive .product-card:hover .product-overlay .icon-btn {
  transform: translateY(0);
  opacity: 1;
}
.product-category-archive .no-products {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.product-category-archive .no-products .no-products-icon {
  font-size: 4rem;
  color: rgba(var(--primary-rgb), 0.2);
  margin-bottom: 1rem;
}
.product-category-archive .no-products h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.product-category-archive .no-products p {
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.product-category-archive .no-products .back-to-products {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.product-category-archive .no-products .back-to-products i {
  margin-right: 0.5rem;
}
.product-category-archive .no-products .back-to-products:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.product-category-archive .related-categories {
  margin-top: 3rem;
}
.product-category-archive .related-categories .section-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}
.product-category-archive .related-categories .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.product-category-archive .related-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.product-category-archive .related-categories .categories-grid .category-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-category-archive .related-categories .categories-grid .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.product-category-archive .related-categories .categories-grid .category-card:hover .category-card-image img, .product-category-archive .related-categories .categories-grid .category-card:hover .category-card-image .category-icon {
  transform: scale(1.1);
}
.product-category-archive .related-categories .categories-grid .category-card .category-card-image {
  height: 150px;
  overflow: hidden;
}
.product-category-archive .related-categories .categories-grid .category-card .category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-category-archive .related-categories .categories-grid .category-card .category-card-image .category-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transition: transform 0.5s ease;
}
.product-category-archive .related-categories .categories-grid .category-card .category-card-image .category-icon i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.7);
}
.product-category-archive .related-categories .categories-grid .category-card .category-card-content {
  padding: 1.2rem;
}
.product-category-archive .related-categories .categories-grid .category-card .category-card-content h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.product-category-archive .related-categories .categories-grid .category-card .category-card-content .category-count {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .product-category-archive .product-category-hero .category-hero-content {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .product-category-archive .product-category-hero .category-hero-image {
    flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .product-category-archive .product-category-hero {
    padding: 2rem 1.5rem;
  }
  .product-category-archive .product-category-hero .category-hero-content .category-title {
    font-size: 2rem;
  }
  .product-category-archive .product-category-hero .category-hero-content .category-description {
    font-size: 1rem;
  }
  .product-category-archive .product-category-hero .category-hero-content .category-stats {
    flex-wrap: wrap;
  }
  .product-category-archive .category-navigation .category-nav-items .nav-item {
    flex: 1 0 calc(50% - 0.8rem);
  }
  .product-category-archive .related-categories .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
@media (max-width: 576px) {
  .product-category-archive .product-category-hero {
    padding: 2rem 1rem;
  }
  .product-category-archive .product-category-hero .category-hero-content .category-title {
    font-size: 1.8rem;
  }
  .product-category-archive .product-category-hero .category-hero-content .category-stats .stat-item {
    flex: 1 0 100%;
  }
  .product-category-archive .category-navigation .category-nav-items .nav-item {
    flex: 1 0 100%;
  }
  .product-category-archive .related-categories .categories-grid {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  position: relative;
}
.contact-page__wave-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.contact-page__wave-decoration svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.contact-page__wave-decoration .contact-page__wave-path {
  animation: waveMove1 20s linear infinite alternate;
}
.contact-page__wave-decoration .contact-page__wave-second {
  opacity: 0.8;
}
.contact-page__wave-decoration .contact-page__wave-path-second {
  animation: waveMove2 15s linear infinite alternate;
}
.contact-page__header {
  background-color: rgba(var(--primary-rgb), 0.02);
  padding: 6rem 0 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-page__header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 72%);
}
.contact-page__header::after {
  content: none;
}
.contact-page__header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}
.contact-page__title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.contact-page__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  animation: expandWidth 1s ease-out forwards;
}
.contact-page__subtitle {
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0.8;
  margin-top: 1.5rem;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}
.contact-page__water-drop-animation {
  position: absolute;
  top: 0;
  right: 5%;
  height: 100%;
  z-index: 2;
}
.contact-page__drop {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-light);
  opacity: 0.7;
  animation-name: dropFall;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  filter: drop-shadow(0 5px 5px rgba(var(--primary-rgb), 0.3));
}
.contact-page__drop--1 {
  right: 20px;
  animation-duration: 3s;
  animation-delay: 0s;
}
.contact-page__drop--2 {
  right: 60px;
  animation-duration: 4s;
  animation-delay: 1s;
}
.contact-page__drop--3 {
  right: 100px;
  animation-duration: 5s;
  animation-delay: 0.5s;
}
.contact-page__drop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 2s infinite;
}
.contact-page__content {
  padding-bottom: 4rem;
}
.contact-page__section-heading {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.contact-page__water-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 1rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: pulseIcon 2s infinite;
}
.contact-page__water-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.3) 0%, transparent 70%);
  transform: scale(0);
  animation: iconRadial 3s infinite;
}
.contact-page__section-heading h2 {
  color: var(--primary-dark);
  margin-bottom: 0;
  font-weight: 600;
  position: relative;
  transform: translateY(5px);
  animation: fadeInLeft 0.5s ease-out forwards;
}
.contact-page__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-page__grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}
.contact-page__grid > section {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}
.contact-page__grid > section:first-child {
  animation-delay: 0.3s;
}
.contact-page__grid > section:last-child {
  animation-delay: 0.6s;
}
.contact-page__info-card {
  background-color: rgb(255, 255, 255);
  border-radius: 2rem 0 2rem 0;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.contact-page__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
}
.contact-page__info-card:hover::before {
  opacity: 1;
  transform: rotate(3deg) scale(1.02);
}
.contact-page__info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem 0 2rem 0;
  background: linear-gradient(45deg, rgba(var(--primary-rgb), 0.05), transparent);
  z-index: -1;
  opacity: 0;
  transform: rotate(0) scale(1);
  transition: all 0.5s ease;
}
.contact-page__info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
  transition: all 0.3s ease;
}
.contact-page__info-item:last-child {
  margin-bottom: 0;
}
.contact-page__info-item:hover {
  transform: translateX(5px);
}
.contact-page__info-item:hover i,
.contact-page__info-item:hover .nts-icon {
  transform: scale(1.2);
  background-color: rgba(var(--primary-rgb), 0.1);
}
.contact-page__info-item i,
.contact-page__info-item .nts-icon {
  color: var(--primary);
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.contact-page__info-item span {
  flex: 1;
  color: var(--black);
}
.contact-page__info-item a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.contact-page__info-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-dark);
  transition: width 0.3s ease;
}
.contact-page__info-item a:hover {
  color: var(--primary-dark);
}
.contact-page__info-item a:hover::after {
  width: 100%;
}
.contact-page__services {
  background-color: rgba(var(--primary-rgb), 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-page__services:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.contact-page__services:hover::after {
  transform: translateY(0);
  opacity: 0.07;
}
.contact-page__services::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  width: 150px;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZD0iTTEwIDIuNzVDNC42MSAyLjc1IDAgMTAuNTEgMCAxMC41MXM0LjYxIDcuNzYgMTAgNy43NiAxMC03Ljc2IDEwLTcuNzYtNC42MS03Ljc2LTEwLTcuNzZ6TTEwIDE1LjVhNSA1IDAgMTEwLTEwIDUgNSAwIDAxMCAxMHoiIGZpbGw9IiMzYTU2OWUiIGZpbGwtb3BhY2l0eT0iMC4xNSIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  z-index: 0;
}
.contact-page__services-title {
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.contact-page__services-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.contact-page__services:hover .contact-page__services-title::after {
  width: 100px;
}
.contact-page__services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.contact-page__services-item {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.contact-page__services-item:hover {
  transform: translateX(5px);
}
.contact-page__services-item:hover i,
.contact-page__services-item:hover .nts-icon {
  transform: scale(1.2);
  color: rgb(29.9507389163, 122.0492610837, 55.4088669951);
}
.contact-page__services-item i,
.contact-page__services-item .nts-icon {
  color: var(--secondary);
  margin-right: 0.8rem;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.contact-page__services-item span {
  font-weight: 500;
}
.contact-page__form-container {
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.contact-page__form-container:hover {
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
  transform: translateY(-5px);
}
.contact-page__form-container:hover .contact-page__form-decoration .contact-page__water-drop {
  animation: waterPulse 3s infinite;
}
.contact-page__form-container-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  opacity: 0.1;
  z-index: 0;
}
.contact-page__form-container .contact-page__water-drop {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary);
}
.contact-page__form {
  position: relative;
  z-index: 1;
}
.contact-page__form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem 0;
}
.contact-page__form-group {
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.contact-page__form-group--half {
  width: 100%;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .contact-page__form-group--half {
    width: 50%;
  }
}
.contact-page__form-group:focus-within .contact-page__input-icon {
  background-color: var(--primary);
  color: white;
  transform: translateY(0);
}
.contact-page__form-group:focus-within .contact-page__form-label {
  color: var(--primary);
  transform: translateY(-3px);
}
.contact-page__form-group:focus-within::after {
  width: 100%;
}
.contact-page__form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
  z-index: 2;
}
.contact-page__form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-dark);
  transition: transform 0.3s ease, color 0.3s ease;
}
.contact-page__form-label:hover {
  color: var(--primary);
}
.contact-page__form-submit {
  margin-top: 2rem;
  text-align: right;
}
.contact-page__required {
  color: #f44336;
  margin-left: 0.25rem;
}
.contact-page__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-page__input-icon {
  position: absolute;
  left: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary-rgb), 0.05);
  border-radius: 8px 0 0 8px;
  color: var(--primary);
  transition: all 0.3s ease;
}
.contact-page__input-icon--textarea {
  height: 42px;
  align-items: flex-start;
  padding-top: 10px;
  border-radius: 8px 0 0 0;
}
.contact-page__input, .contact-page__select, .contact-page__textarea {
  width: 100% !important;
  padding: 0.8rem 1rem 0.8rem 50px !important;
  border: 1px solid rgba(var(--primary-rgb), 0.3) !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  margin-bottom: 0 !important;
  height: unset !important;
  transition: all 0.3s ease !important;
  background-color: rgb(255, 255, 255) !important;
  position: relative !important;
  z-index: 1 !important;
}
.contact-page__input:focus, .contact-page__select:focus, .contact-page__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
  transform: translateY(-2px);
}
.contact-page__input:hover, .contact-page__select:hover, .contact-page__textarea:hover {
  border-color: var(--primary);
}
.contact-page__textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 1rem;
}
.contact-page__select {
  appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMzYTU2OWUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.contact-page__btn {
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.contact-page__btn i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}
.contact-page__btn--primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.contact-page__btn--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.contact-page__btn--primary:hover i {
  transform: translateX(3px);
}
.contact-page__btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.contact-page__btn--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}
.contact-page__btn--primary:hover::after {
  animation: ripple 1s ease-out;
}
.contact-page__btn--secondary {
  background-color: var(--secondary);
  color: rgb(255, 255, 255);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.contact-page__btn--secondary:hover {
  background-color: rgba(40, 163, 74, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.contact-page__btn--secondary:hover::after {
  transform: translateY(-50%) translateX(-50%) scale(15);
  opacity: 0;
}
.contact-page__btn--secondary:active {
  transform: translateY(0);
}
.contact-page__btn--secondary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1);
  transition: transform 0.5s, opacity 0.5s;
  z-index: -1;
}
.contact-page__map {
  position: relative;
  margin-bottom: 3rem;
}
.contact-page__map-title-container {
  background-color: var(--primary);
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
}
.contact-page__map-title-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(25deg);
  animation: lightSweep 5s infinite;
}
.contact-page__map-title {
  color: rgb(255, 255, 255);
  margin: 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contact-page__map-title i,
.contact-page__map-title .nts-icon {
  margin-right: 0.5rem;
  animation: bounceMap 2s infinite;
}
.contact-page__map-wrapper {
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-page__map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
}
.contact-page__map-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 15px rgba(var(--primary-rgb), 0.1);
  pointer-events: none;
}
.contact-page__map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  vertical-align: bottom;
}
.contact-page__cta {
  background-color: rgba(var(--primary-rgb), 0.05);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.contact-page__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iNDkiIHZpZXdCb3g9IjAgMCAyOCA0OSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQgMHM0LjcyNyA1LjQzMyA4IDEyYzMuODQgNy43MDcgNiAxNSA2IDIyIDAgOC4yODQtNi43MTYgMTUtMTUgMTVTMCA0Mi4yODQgMCAzNGMwLTcgMi4xNi0xNC4yOTMgNi0yMkM5LjI3MyA1LjQzMyAxNCAwIDE0IDB6IiBmaWxsPSIjMmI0ZjkzIiBmaWxsLW9wYWNpdHk9IjAuMDM1IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=");
  background-repeat: repeat;
  background-size: 40px;
  opacity: 0.5;
  z-index: 0;
}
.contact-page__cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.contact-page__cta-title {
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: floatText 3s ease-in-out infinite;
}
.contact-page__cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(var(--black-rgb), 0.7);
}

@keyframes waveMove1 {
  0% {
    transform: translateX(0%) scaleY(1);
  }
  50% {
    transform: translateX(-1%) scaleY(0.95);
  }
  100% {
    transform: translateX(1%) scaleY(1.05);
  }
}
@keyframes waveMove2 {
  0% {
    transform: translateX(1%) scaleY(1.05);
  }
  50% {
    transform: translateX(0%) scaleY(1);
  }
  100% {
    transform: translateX(-1%) scaleY(0.95);
  }
}
@keyframes dropFall {
  0% {
    transform: translateY(-100px) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translateY(100px) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(300px) scale(0.5);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.7;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulseIcon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes iconRadial {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes waterPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 0.7;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes bubbleFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}
@keyframes lightSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes bounceMap {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes floatText {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.contact-page__services-item.green .contact-method-icon {
  background-color: rgba(40, 163, 74, 0.8);
}
.contact-page__services-item.green .contact-method-title {
  color: #28A34A;
}

.project-single {
  overflow-x: hidden;
}
.project-single .project-header {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.project-single .project-header .water-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(58, 86, 158, 0.9) 0%, rgba(0, 51, 102, 0.95) 100%);
  z-index: -2;
}
.project-single .project-header .water-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
}
.project-single .project-header .water-pattern-bg .water-pattern {
  stroke: rgb(255, 255, 255);
  stroke-width: 0.5;
  fill: none;
}
.project-single .project-header .chemical-container {
  position: absolute;
  top: 15%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
  opacity: 0.15;
}
.project-single .project-header .chemical-container .chemical-molecules-svg {
  fill: rgb(255, 255, 255);
}
.project-single .project-header .water-particles-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.project-single .project-header .water-particles-effect .particle-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.project-single .project-header .water-particles-effect .water-particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: scale(0);
}
.project-single .project-header .water-particles-effect .water-particle.particle-animate {
  animation: particleRise 8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.project-single .project-header .bubbles-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.project-single .project-header .bubbles-container .bubble {
  position: absolute;
  bottom: -20px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.project-single .project-header .bubbles-container .bubble.bubble-1 {
  left: 10%;
  width: 25px;
  height: 25px;
  animation: bubbleRise 8s ease-in-out 1s infinite;
  opacity: 0.4;
}
.project-single .project-header .bubbles-container .bubble.bubble-2 {
  left: 20%;
  width: 15px;
  height: 15px;
  animation: bubbleRise 10s ease-in-out 0s infinite;
  opacity: 0.3;
}
.project-single .project-header .bubbles-container .bubble.bubble-3 {
  left: 35%;
  width: 30px;
  height: 30px;
  animation: bubbleRise 7s ease-in-out 2s infinite;
  opacity: 0.5;
}
.project-single .project-header .bubbles-container .bubble.bubble-4 {
  left: 50%;
  width: 20px;
  height: 20px;
  animation: bubbleRise 9s ease-in-out 3s infinite;
  opacity: 0.2;
}
.project-single .project-header .bubbles-container .bubble.bubble-5 {
  left: 65%;
  width: 35px;
  height: 35px;
  animation: bubbleRise 11s ease-in-out 1s infinite;
  opacity: 0.6;
}
.project-single .project-header .bubbles-container .bubble.bubble-6 {
  left: 75%;
  width: 22px;
  height: 22px;
  animation: bubbleRise 8s ease-in-out 4s infinite;
  opacity: 0.3;
}
.project-single .project-header .bubbles-container .bubble.bubble-7 {
  left: 85%;
  width: 18px;
  height: 18px;
  animation: bubbleRise 12s ease-in-out 2s infinite;
  opacity: 0.4;
}
.project-single .project-header .bubbles-container .bubble.bubble-8 {
  left: 90%;
  width: 26px;
  height: 26px;
  animation: bubbleRise 9s ease-in-out 0s infinite;
  opacity: 0.5;
}
.project-single .project-header .bubbles-container .bubble.bubble-9 {
  left: 40%;
  width: 32px;
  height: 32px;
  animation: bubbleRise 10s ease-in-out 3s infinite;
  opacity: 0.3;
}
.project-single .project-header .bubbles-container .bubble.bubble-10 {
  left: 5%;
  width: 28px;
  height: 28px;
  animation: bubbleRise 7s ease-in-out 1s infinite;
  opacity: 0.4;
}
.project-single .project-header .bubbles-container .splash-container {
  position: absolute;
  bottom: 10%;
  left: 30%;
  animation: splash 12s ease-in-out infinite;
  opacity: 0.2;
}
.project-single .project-header .bubbles-container .splash-container .water-splash-svg {
  fill: rgb(255, 255, 255);
}
.project-single .project-header .project-title-section {
  position: relative;
  margin-bottom: 30px;
}
.project-single .project-header .project-title-section .animated-droplet-icon {
  margin-bottom: 15px;
  animation: dropletPulse 4s ease-in-out infinite;
}
.project-single .project-header .project-title-section .animated-droplet-icon svg {
  fill: rgba(255, 255, 255, 0.9);
}
.project-single .project-header .project-title-section .project-title {
  color: rgb(255, 255, 255);
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}
.project-single .project-header .project-title-section .project-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: #28A34A;
  border-radius: 2px;
}
.project-single .project-header .project-thumb {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
  transition: transform 0.3s ease;
}
.project-single .project-header .project-thumb:hover {
  transform: translateY(-5px);
}
.project-single .project-header .project-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.project-single .project-header .project-thumb:hover img {
  transform: scale(1.05);
}
.project-single .project-header .project-thumb .no-thumbnail {
  background: rgba(53, 74, 144, 0.2);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-single .project-header .project-thumb .no-thumbnail .water-icon {
  width: 80px;
  height: 80px;
  fill: #3a569e;
  opacity: 0.5;
}
.project-single .project-header .project-thumb .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(58, 86, 158, 0) 50%, rgba(0, 51, 102, 0.5) 100%);
  pointer-events: none;
}
.project-single .project-header .project-thumb .project-overlay .hexagon-pattern {
  opacity: 0.1;
  stroke: rgb(255, 255, 255);
  stroke-width: 0.5;
  fill: none;
}
.project-single .project-content-container {
  position: relative;
  padding: 60px 0;
}
.project-single .project-content-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0,0 L100,0 L100,100 L0,100 Z' fill='none' stroke='%233a569e' stroke-width='0.1' stroke-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: -1;
}
.project-single .project-content {
  padding: 30px;
  background: rgb(255, 255, 255);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
.project-single .project-content .section-title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(58, 86, 158, 0.1);
  position: relative;
}
.project-single .project-content .section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: #3a569e;
}
.project-single .project-content .section-title .section-icon {
  margin-right: 12px;
  fill: #3a569e;
}
.project-single .project-content .project-overview {
  margin-bottom: 40px;
}
.project-single .project-content .project-overview .process-illustration {
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.project-single .project-content .project-overview .process-illustration .process-img {
  width: 100%;
  height: auto;
  display: block;
}
.project-single .project-content .project-overview .project-description {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}
.project-single .project-content .project-overview .project-description p {
  margin-bottom: 15px;
}
.project-single .project-content .project-challenges {
  margin-bottom: 40px;
}
.project-single .project-content .project-challenges .challenge-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.project-single .project-content .project-challenges .challenge-content .challenge-image {
  flex: 0 0 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.project-single .project-content .project-challenges .challenge-content .challenge-image img {
  width: 100%;
  height: auto;
  display: block;
}
.project-single .project-content .project-challenges .challenge-content .challenge-text {
  flex: 1;
}
.project-single .project-content .project-challenges .challenge-content .challenge-text p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}
.project-single .project-content .project-solutions {
  margin-bottom: 40px;
}
.project-single .project-content .project-solutions p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}
.project-single .project-content .project-solutions .solution-diagram {
  margin: 30px 0;
  padding: 30px;
  background: rgba(58, 86, 158, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(58, 86, 158, 0.1);
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps .solution-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps .solution-step:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M8.59,16.59L13.17,12L8.59,7.41L10,6l6,6l-6,6L8.59,16.59z' fill='%233a569e' fill-opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps .solution-step:last-child:after {
  display: none;
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps .solution-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps .solution-step .step-icon {
  margin-bottom: 15px;
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps .solution-step .step-icon svg {
  fill: #3a569e;
  color: var(--primary);
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps .solution-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.project-single .project-content .project-solutions .solution-diagram .solution-steps .solution-step p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.project-single .project-content .project-results {
  margin-bottom: 40px;
}
.project-single .project-content .project-results .results-content .results-text {
  margin-bottom: 30px;
}
.project-single .project-content .project-results .results-content .results-text p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.7;
}
.project-single .project-content .project-results .results-content .results-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.project-single .project-content .project-results .results-content .results-highlights .result-highlight {
  flex: 1;
  min-width: 200px;
  padding: 25px;
  background: rgba(58, 86, 158, 0.03);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(58, 86, 158, 0.1);
}
.project-single .project-content .project-results .results-content .results-highlights .result-highlight:hover {
  background: rgba(58, 86, 158, 0.08);
  transform: translateY(-5px);
}
.project-single .project-content .project-results .results-content .results-highlights .result-highlight .result-icon {
  margin-bottom: 15px;
}
.project-single .project-content .project-results .results-content .results-highlights .result-highlight .result-icon svg {
  fill: #3a569e;
}
.project-single .project-content .project-results .results-content .results-highlights .result-highlight .result-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
}
.project-single .project-content .project-results .results-content .results-highlights .result-highlight .result-label {
  color: #666;
  font-size: 0.95rem;
}
.project-single .project-content .project-results .before-after-comparison {
  margin-top: 40px;
}
.project-single .project-content .project-results .before-after-comparison .comparison-title {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.project-single .project-content .project-results .before-after-comparison .comparison-container {
  display: flex;
  gap: 30px;
}
.project-single .project-content .project-results .before-after-comparison .comparison-container .comparison-item {
  flex: 1;
}
.project-single .project-content .project-results .before-after-comparison .comparison-container .comparison-item .comparison-label {
  text-align: center;
  font-weight: 600;
  color: #3a569e;
  margin-bottom: 10px;
  padding: 5px;
  background: rgba(58, 86, 158, 0.05);
  border-radius: 8px;
}
.project-single .project-content .project-results .before-after-comparison .comparison-container .comparison-item .comparison-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.project-single .project-content .project-results .before-after-comparison .comparison-container .comparison-item .comparison-image img {
  width: 100%;
  height: auto;
  display: block;
}
.project-single .project-content .project-gallery {
  margin-bottom: 20px;
}
.project-single .project-content .project-gallery .gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-single .project-content .project-gallery .gallery-container .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.project-single .project-content .project-gallery .gallery-container .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.project-single .project-content .project-gallery .gallery-container .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.project-single .project-content .project-gallery .gallery-container .gallery-item:hover img {
  transform: scale(1.1);
}
.project-single .project-sidebar .project-info-card,
.project-single .project-sidebar .project-stats-card,
.project-single .project-sidebar .related-projects-card,
.project-single .project-sidebar .contact-card {
  background: rgb(255, 255, 255);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 30px;
}
.project-single .project-sidebar .project-info-card .card-title,
.project-single .project-sidebar .project-stats-card .card-title,
.project-single .project-sidebar .related-projects-card .card-title,
.project-single .project-sidebar .contact-card .card-title {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(58, 86, 158, 0.1);
  position: relative;
}
.project-single .project-sidebar .project-info-card .card-title:after,
.project-single .project-sidebar .project-stats-card .card-title:after,
.project-single .project-sidebar .related-projects-card .card-title:after,
.project-single .project-sidebar .contact-card .card-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: 2px;
  background: #3a569e;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item {
  display: flex;
  margin-bottom: 15px;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item:last-child {
  margin-bottom: 0;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item .meta-icon {
  flex: 0 0 36px;
  height: 36px;
  background: rgba(58, 86, 158, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item .meta-icon svg {
  fill: #3a569e;
  color: #686868;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item .meta-content {
  flex: 1;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item .meta-content .meta-label {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item .meta-content .meta-value {
  color: var(--primary-dark);
  font-weight: 500;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item .meta-content .meta-value a {
  color: #3a569e;
  text-decoration: none;
  transition: all 0.3s ease;
}
.project-single .project-sidebar .project-info-card .project-meta .meta-item .meta-content .meta-value a:hover {
  color: #28A34A;
}
.project-single .project-sidebar .project-stats-card .stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.project-single .project-sidebar .project-stats-card .stats-container .stat-item {
  text-align: center;
  padding: 15px 10px;
  background: rgba(58, 86, 158, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(58, 86, 158, 0.08);
  transition: all 0.3s ease;
}
.project-single .project-sidebar .project-stats-card .stats-container .stat-item:hover {
  background: rgba(58, 86, 158, 0.08);
}
.project-single .project-sidebar .project-stats-card .stats-container .stat-item .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3a569e;
  line-height: 1.2;
}
.project-single .project-sidebar .project-stats-card .stats-container .stat-item .stat-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}
.project-single .project-sidebar .project-stats-card .stats-container .stat-item .stat-desc {
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 500;
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item {
  margin-bottom: 20px;
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item:last-child {
  margin-bottom: 0;
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item .related-project-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item .related-project-link:hover {
  transform: translateX(5px);
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item .related-project-link .related-project-thumb {
  flex: 0 0 80px;
  height: 60px;
  margin-right: 15px;
  border-radius: 8px;
  overflow: hidden;
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item .related-project-link .related-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item .related-project-link .related-project-content {
  flex: 1;
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item .related-project-link .related-project-content .related-project-title {
  font-size: 1rem;
  color: var(--primary-dark);
  margin: 0;
  transition: all 0.3s ease;
}
.project-single .project-sidebar .related-projects-card .related-projects-list .related-project-item .related-project-link .related-project-content:hover .related-project-title {
  color: #28A34A;
}
.project-single .project-sidebar .contact-card {
  text-align: center;
}
.project-single .project-sidebar .contact-card .contact-image {
  margin: -25px -25px 20px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}
.project-single .project-sidebar .contact-card .contact-image img {
  width: 100%;
  height: auto;
  display: block;
}
.project-single .project-sidebar .contact-card p {
  color: #666;
  margin-bottom: 20px;
}
.project-single .project-sidebar .contact-card .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: #28A34A;
  color: rgb(255, 255, 255);
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.project-single .project-sidebar .contact-card .btn-contact .btn-icon {
  margin-right: 8px;
  fill: rgb(255, 255, 255);
}
.project-single .project-sidebar .contact-card .btn-contact:hover {
  background: rgb(34.96, 142.462, 64.676);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(40, 163, 74, 0.3);
}

@media screen and (max-width: 992px) {
  .project-single .project-header {
    padding: 80px 0 50px;
  }
  .project-single .project-header .project-title {
    font-size: 2.2rem;
  }
  .project-single .project-content .solution-diagram .solution-steps .solution-step:after {
    display: none;
  }
  .project-single .project-content .project-gallery .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .project-single .project-header {
    padding: 60px 0 40px;
  }
  .project-single .project-header .project-title {
    font-size: 2rem;
  }
  .project-single .project-content {
    padding: 20px;
  }
  .project-single .project-content .section-title {
    font-size: 1.5rem;
  }
  .project-single .project-content .project-challenges .challenge-content {
    flex-direction: column;
  }
  .project-single .project-content .project-challenges .challenge-content .challenge-image {
    flex: 0 0 auto;
    max-width: 100%;
  }
  .project-single .project-content .project-results .before-after-comparison .comparison-container {
    flex-direction: column;
  }
  .project-single .project-sidebar .project-stats-card .stats-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .project-single .project-content .project-gallery .gallery-container {
    grid-template-columns: 1fr;
  }
}
.water-treatment-single {
  position: relative;
  overflow: hidden;
}
.water-treatment-single .post-hero {
  position: relative;
  padding: 4rem 0 6rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  overflow: hidden;
}

.water-treatment-single .post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at 20% 15%, #000 0%, transparent 65%);
  mask-image: radial-gradient(ellipse at 20% 15%, #000 0%, transparent 65%);
}
@media (max-width: 768px) {
  .water-treatment-single .post-hero {
    padding: 3rem 0 4rem;
  }
}
.water-treatment-single .post-hero .water-effect-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.water-treatment-single .post-hero .water-effect-overlay .floating-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
}
.water-treatment-single .post-hero .water-effect-overlay .floating-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.3);
  animation: float 8s ease-in-out infinite;
}
.water-treatment-single .post-hero .water-effect-overlay .floating-bubbles .bubble.bubble-1 {
  width: 30px;
  height: 30px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}
.water-treatment-single .post-hero .water-effect-overlay .floating-bubbles .bubble.bubble-2 {
  width: 20px;
  height: 20px;
  left: 20%;
  top: 70%;
  animation-delay: 1s;
}
.water-treatment-single .post-hero .water-effect-overlay .floating-bubbles .bubble.bubble-3 {
  width: 40px;
  height: 40px;
  right: 15%;
  top: 30%;
  animation-delay: 2s;
}
.water-treatment-single .post-hero .water-effect-overlay .floating-bubbles .bubble.bubble-4 {
  width: 25px;
  height: 25px;
  right: 30%;
  top: 60%;
  animation-delay: 3s;
}
.water-treatment-single .post-hero .water-effect-overlay .floating-bubbles .bubble.bubble-5 {
  width: 15px;
  height: 15px;
  left: 40%;
  top: 40%;
  animation-delay: 4s;
}
.water-treatment-single .post-hero .water-effect-overlay .wave-bottom {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
}
.water-treatment-single .post-hero .container {
  position: relative;
  z-index: 2;
}
.water-treatment-single .post-hero .breadcrumb-container {
  margin-bottom: 1rem;
}
.water-treatment-single .post-hero .breadcrumb-container .breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.water-treatment-single .post-hero .breadcrumb-container .breadcrumbs a:hover {
  color: var(--white);
}
.water-treatment-single .post-hero .breadcrumb-container .breadcrumbs .separator {
  color: rgba(255, 255, 255, 0.6);
}
.water-treatment-single .post-hero .breadcrumb-container .breadcrumbs .current {
  color: rgba(255, 255, 255, 0.9);
}
.water-treatment-single .post-hero .post-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .water-treatment-single .post-hero .post-title {
    font-size: 2rem;
  }
}
.water-treatment-single .post-hero .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.water-treatment-single .post-hero .post-meta .post-date,
.water-treatment-single .post-hero .post-meta .post-updated,
.water-treatment-single .post-hero .post-meta .post-author,
.water-treatment-single .post-hero .post-meta .post-categories {
  display: flex;
  align-items: center;
}
.water-treatment-single .post-hero .post-meta .post-date .meta-icon,
.water-treatment-single .post-hero .post-meta .post-updated .meta-icon,
.water-treatment-single .post-hero .post-meta .post-author .meta-icon,
.water-treatment-single .post-hero .post-meta .post-categories .meta-icon {
  margin-right: 0.5rem;
  fill: var(--white);
  opacity: 0.7;
}
.water-treatment-single .post-hero .post-meta .post-updated {
  gap: 0.35rem;
}
.water-treatment-single .post-hero .post-meta .post-date a,
.water-treatment-single .post-hero .post-meta .post-updated a,
.water-treatment-single .post-hero .post-meta .post-author a,
.water-treatment-single .post-hero .post-meta .post-categories a {
  color: var(--white);
  transition: all 0.3s ease;
}
.water-treatment-single .post-hero .post-meta .post-date a:hover,
.water-treatment-single .post-hero .post-meta .post-author a:hover,
.water-treatment-single .post-hero .post-meta .post-categories a:hover {
  color: var(--secondary);
}
.water-treatment-single .post-hero .featured-image-container {
  position: relative;
  margin-top: 1.5rem;
}
@media (min-width: 992px) {
  .water-treatment-single .post-hero .featured-image-container {
    margin-top: 0;
  }
}
.water-treatment-single .post-hero .featured-image-container .featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 2rem 0 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 350px;
}
.water-treatment-single .post-hero .featured-image-container .featured-image:hover {
  transform: translateY(-5px);
}
.water-treatment-single .post-hero .featured-image-container .featured-image:hover .water-drop-effect {
  opacity: 1;
}
.water-treatment-single .post-hero .featured-image-container .featured-image:hover .image-overlay {
  opacity: 0.4;
}
.water-treatment-single .post-hero .featured-image-container .featured-image img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}
.water-treatment-single .post-hero .featured-image-container .featured-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.5));
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.water-treatment-single .post-hero .featured-image-container .featured-image .water-drop-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  opacity: 0.4;
  transition: opacity 0.5s ease;
  animation: dropsFall 20s linear infinite;
}
.water-treatment-single .post-content-section {
  position: relative;
  padding: 3rem 0;
  background-color: #f8faff;
}
.water-treatment-single .post-content-section .water-card {
  position: relative;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.water-treatment-single .post-content-section .water-card:hover {
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
}
.water-treatment-single .post-content-section .water-card .droplet-decoration {
  position: absolute;
  z-index: 1;
}
.water-treatment-single .post-content-section .water-card .droplet-decoration svg {
  fill: var(--primary);
}
.water-treatment-single .post-content-section .water-card .droplet-decoration.droplet-top-right {
  top: -15px;
  right: -15px;
}
.water-treatment-single .post-content-section .water-card .droplet-decoration.droplet-bottom-left {
  bottom: -12px;
  left: -12px;
}
.water-treatment-single .post-content-section .post-content {
  position: relative;
}
.water-treatment-single .post-content-section .post-content article {
  position: relative;
  z-index: 2;
}
.water-treatment-single .post-content-section .post-content article .entry-content {
  margin-bottom: 1.5rem;
}
.water-treatment-single .post-content-section .post-content article .entry-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.water-treatment-single .post-content-section .post-content article .entry-content h2, .water-treatment-single .post-content-section .post-content article .entry-content h3, .water-treatment-single .post-content-section .post-content article .entry-content h4, .water-treatment-single .post-content-section .post-content article .entry-content h5, .water-treatment-single .post-content-section .post-content article .entry-content h6 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}
.water-treatment-single .post-content-section .post-content article .entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 100%;
  margin: 0 auto;
  display: block;
}
.water-treatment-single .post-content-section .post-content article .entry-content blockquote {
  position: relative;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(var(--primary-rgb), 0.03);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.water-treatment-single .post-content-section .post-content article .entry-content blockquote:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 15px;
  width: 30px;
  height: 30px;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  z-index: 1;
}
.water-treatment-single .post-content-section .post-content article .entry-content blockquote p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.water-treatment-single .post-content-section .post-content article .entry-content ul, .water-treatment-single .post-content-section .post-content article .entry-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}
.water-treatment-single .post-content-section .post-content article .entry-content ul li, .water-treatment-single .post-content-section .post-content article .entry-content ol li {
  margin-bottom: 0.5rem;
  position: relative;
}
.water-treatment-single .post-content-section .post-content article .entry-content .wp-caption {
  max-width: 100%;
  margin-bottom: 1.25rem;
}
.water-treatment-single .post-content-section .post-content article .entry-content .wp-caption img {
  border-radius: 8px;
}
.water-treatment-single .post-content-section .post-content article .entry-content .wp-caption .wp-caption-text {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: #666;
  text-align: center;
}
.water-treatment-single .post-content-section .post-content article .post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.25rem;
}
.water-treatment-single .post-content-section .post-content article .post-tags .tag-label {
  margin-right: 0.5rem;
  font-weight: 500;
}
.water-treatment-single .post-content-section .post-content article .post-tags a {
  color: var(--primary);
  transition: all 0.3s ease;
}
.water-treatment-single .post-content-section .post-content article .post-tags a:hover {
  color: var(--secondary);
}
.water-treatment-single .post-content-section .post-navigation .navigation-title {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item {
  display: block;
  height: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item:hover {
  background-color: rgba(var(--primary-rgb), 0.03);
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item:hover .related-thumb .ripple-effect {
  opacity: 1;
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item:hover h4 {
  color: var(--primary);
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item .related-thumb {
  position: relative;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  overflow: hidden;
  height: 140px;
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item .related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item .related-thumb .ripple-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.3) 0%, rgba(var(--primary-rgb), 0) 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--black);
  transition: color 0.3s ease;
  line-height: 1.3;
  max-height: 2.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.water-treatment-single .post-content-section .post-navigation .related-posts .related-post-item time {
  font-size: 0.8rem;
  color: #777;
}
.water-treatment-single .post-content-section .comments-section {
  position: relative;
}
.water-treatment-single .post-content-section .comments-section .wave-decoration {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  z-index: 1;
}
.water-treatment-single .post-content-section .comments-section .wave-decoration .wave-top {
  width: 100%;
  height: 100%;
}
.water-treatment-single .post-content-section .comments-section .comment-respond,
.water-treatment-single .post-content-section .comments-section .comments-title,
.water-treatment-single .post-content-section .comments-section .comment-list {
  position: relative;
  z-index: 2;
}
.water-treatment-single .post-content-section .comments-section .comments-title {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}
.water-treatment-single .post-content-section .comments-section .comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment {
  margin-bottom: 1.25rem;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body {
  background-color: rgba(var(--primary-rgb), 0.02);
  border-radius: 8px;
  padding: 1.25rem;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-meta {
  margin-bottom: 0.8rem;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-meta .comment-author {
  display: flex;
  align-items: center;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-meta .comment-author img {
  border-radius: 50%;
  margin-right: 0.75rem;
  max-width: 40px;
  height: auto;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-meta .comment-author .fn {
  font-weight: 600;
  color: var(--primary-dark);
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-meta .comment-metadata {
  font-size: 0.8rem;
  margin-top: 0.25rem;
  color: #777;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-meta .comment-metadata a {
  color: inherit;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-meta .comment-metadata a:hover {
  color: var(--primary);
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-content p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .comment-content p:last-child {
  margin-bottom: 0;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .reply {
  margin-top: 0.8rem;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .reply a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-dark);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .comment-body .reply a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.water-treatment-single .post-content-section .comments-section .comment-list .comment .children {
  list-style: none;
  padding-left: 2.5rem;
  margin-top: 1.25rem;
}
.water-treatment-single .post-content-section .comments-section .comment-respond {
  margin-top: 1.5rem;
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-reply-title {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form .form-group {
  margin-bottom: 1.25rem;
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form input[type=text],
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form input[type=email],
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form input[type=url],
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form textarea {
  display: block;
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form input[type=text]:focus,
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form input[type=email]:focus,
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form input[type=url]:focus,
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form textarea:focus {
  border-color: var(--primary-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form textarea {
  min-height: 120px;
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form .form-submit {
  margin-top: 0.8rem;
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form .form-submit .submit {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.water-treatment-single .post-content-section .comments-section .comment-respond .comment-form .form-submit .submit:hover {
  background-color: var(--primary-dark);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .widget-title {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
  position: relative;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .widget-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .search-form-container .water-search-form .search-input-wrapper {
  position: relative;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .search-form-container .water-search-form .search-input-wrapper input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  padding-right: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .search-form-container .water-search-form .search-input-wrapper input:focus {
  border-color: var(--primary-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .search-form-container .water-search-form .search-input-wrapper input:focus ~ .search-ripple {
  transform: scale(1);
  opacity: 1;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .search-form-container .water-search-form .search-input-wrapper .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .search-form-container .water-search-form .search-input-wrapper .search-submit svg {
  fill: var(--primary);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .search-form-container .water-search-form .search-input-wrapper .search-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0) 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .category-list li {
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .category-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .category-list li a {
  color: #444;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .category-list li a:hover {
  color: var(--primary);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item {
  display: flex;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item:first-child {
  padding-top: 0;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item:hover .post-thumb .thumb-overlay {
  opacity: 1;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item:hover .post-info h4 {
  color: var(--primary);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item .post-thumb {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item .post-thumb .thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--primary-rgb), 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item .post-info {
  flex-grow: 1;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item .post-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: #333;
  transition: color 0.3s ease;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget .popular-posts .popular-post-item .post-info time {
  font-size: 0.75rem;
  color: #777;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .widget-title {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .widget-title:after {
  background-color: var(--white);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .contact-info {
  position: relative;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .contact-info .water-drop-animation {
  margin: 0.8rem auto 1.5rem;
  position: relative;
  width: 60px;
  height: 60px;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .contact-info .water-drop-animation svg {
  fill: rgba(255, 255, 255, 0.8);
  animation: waterDrop 2s ease-in-out infinite;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .contact-info p {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .contact-info .water-button {
  position: relative;
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .contact-info .water-button:hover {
  color: var(--white);
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .contact-info .water-button:hover .button-water-effect {
  transform: translate(-50%, -50%) scale(2);
  opacity: 1;
}
.water-treatment-single .post-content-section .sidebar .sidebar-widget.contact-widget .contact-info .water-button .button-water-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
}

@keyframes rippleEffect {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes dropsFall {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 500px;
  }
}
@keyframes waterDrop {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.service-single-content {
  overflow-x: hidden;
}
.service-single-content section {
  margin-bottom: 5rem;
  position: relative;
}
.service-single-content .section-header {
  margin-bottom: 3rem;
}
.service-single-content .section-header .section-icon {
  margin-bottom: 1rem;
  color: var(--primary);
}
.service-single-content .section-header .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}
.service-single-content .section-header .section-divider {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.service-single-content .section-header .section-divider svg {
  fill: rgba(var(--primary-rgb), 0.15);
}
.service-single-content .water-card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-single-content .water-card:hover {
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
  transform: translateY(-5px);
}
.service-single-content .water-card.special-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white);
}
.service-single-content .droplet-decoration {
  position: absolute;
  z-index: 0;
}
.service-single-content .droplet-decoration.droplet-top-right {
  top: -20px;
  right: -20px;
}
.service-single-content .droplet-decoration.droplet-bottom-left {
  bottom: -20px;
  left: -20px;
}
.service-single-content .btn-water-ripple {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.service-single-content .btn-water-ripple span {
  position: relative;
  z-index: 2;
  margin-right: 0.5rem;
}
.service-single-content .btn-water-ripple i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.service-single-content .btn-water-ripple:hover {
  background-color: var(--primary-dark);
}
.service-single-content .btn-water-ripple:hover i {
  transform: translateX(5px);
}
.service-single-content .btn-water-ripple:hover::after {
  transform: scale(15);
  opacity: 0;
}
.service-single-content .btn-water-ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.8s, opacity 0.8s;
  z-index: 1;
}
.service-single-content .btn-water-ripple:active::after {
  transform: scale(15);
  opacity: 0;
}
.service-single-content .btn-water-ripple.primary-btn {
  background-color: var(--secondary);
}
.service-single-content .btn-water-ripple.primary-btn:hover {
  background-color: rgb(29.96, 122.087, 55.426);
}
.service-single-content .water-drop-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-single-content .water-drop-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.service-single-content .water-drop-list li .drop-icon {
  margin-right: 1rem;
  flex-shrink: 0;
  fill: var(--primary);
  animation: bobbing 3s ease-in-out infinite;
  animation-delay: calc(var(--delay, 0) * 0.5s);
}
.service-single-content .water-drop-list li .drop-content {
  flex-grow: 1;
}

.service-hero {
  position: relative;
  padding: 6rem 0 8rem;
  background-color: var(--primary-light);
  color: var(--white);
  overflow: hidden;
}
.service-hero .water-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  opacity: 0.9;
  z-index: 0;
}
.service-hero .water-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.07;
  z-index: 1;
}
.service-hero .container {
  position: relative;
  z-index: 5;
}
.service-hero .service-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.service-hero .service-short-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 90%;
  line-height: 1.6;
}
.service-hero .service-cta {
  margin-top: 2rem;
}
.service-hero .service-featured-image-container {
  position: relative;
  z-index: 2;
}
.service-hero .service-featured-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(58, 86, 158, 0.15);
}
.service-hero .service-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-hero .service-featured-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.5));
}
.service-hero .service-featured-image .floating-droplets {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.service-hero .service-featured-image .floating-droplets .droplet {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: float 6s ease-in-out infinite;
}
.service-hero .service-featured-image .floating-droplets .droplet.droplet-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.service-hero .service-featured-image .floating-droplets .droplet.droplet-2 {
  top: 60%;
  left: 70%;
  width: 10px;
  height: 10px;
  animation-delay: 1s;
}
.service-hero .service-featured-image .floating-droplets .droplet.droplet-3 {
  top: 80%;
  left: 30%;
  width: 8px;
  height: 8px;
  animation-delay: 2s;
}
.service-hero .service-featured-image:hover img {
  transform: scale(1.05);
}
.service-hero .service-placeholder-image {
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 24px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hero .service-placeholder-image svg {
  width: 80px;
  height: 80px;
  fill: var(--primary);
}

.service-hero .chemical-container {
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: 2;
  animation: float 10s ease-in-out infinite;
  opacity: 0.6;
}
.service-hero .bubbles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.service-hero .bubbles-container .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: bubbleRise 15s linear infinite;
  opacity: 0;
}
.service-hero .bubbles-container .bubble-1 {
  width: 35px;
  height: 35px;
  left: 10%;
  bottom: -30px;
  animation-delay: 0s;
}
.service-hero .bubbles-container .bubble-2 {
  width: 20px;
  height: 20px;
  left: 20%;
  bottom: -30px;
  animation-delay: 2s;
}
.service-hero .bubbles-container .bubble-3 {
  width: 15px;
  height: 15px;
  left: 30%;
  bottom: -30px;
  animation-delay: 4s;
}
.service-hero .bubbles-container .bubble-4 {
  width: 25px;
  height: 25px;
  left: 40%;
  bottom: -30px;
  animation-delay: 6s;
}
.service-hero .bubbles-container .bubble-5 {
  width: 30px;
  height: 30px;
  left: 50%;
  bottom: -30px;
  animation-delay: 8s;
}
.service-hero .bubbles-container .bubble-6 {
  width: 18px;
  height: 18px;
  left: 60%;
  bottom: -30px;
  animation-delay: 10s;
}
.service-hero .bubbles-container .bubble-7 {
  width: 22px;
  height: 22px;
  left: 70%;
  bottom: -30px;
  animation-delay: 12s;
}
.service-hero .bubbles-container .bubble-8 {
  width: 28px;
  height: 28px;
  left: 80%;
  bottom: -30px;
  animation-delay: 14s;
}
.service-hero .bubbles-container .bubble-9 {
  width: 12px;
  height: 12px;
  left: 90%;
  bottom: -30px;
  animation-delay: 1s;
}
.service-hero .bubbles-container .bubble-10 {
  width: 16px;
  height: 16px;
  left: 95%;
  bottom: -30px;
  animation-delay: 3s;
}
.service-hero .water-particles-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
}

.service-overview-section {
  padding: 4rem 0;
}
.service-overview-section .service-description {
  margin-bottom: 3rem;
  line-height: 1.7;
  position: relative;
}
.service-overview-section .service-overview-cards .overview-card {
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.service-overview-section .service-overview-cards .overview-card .card-icon {
  margin-bottom: 1.5rem;
  fill: var(--primary);
}
.service-overview-section .service-overview-cards .overview-card .card-title {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.service-overview-section .service-overview-cards .overview-card .card-content {
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-overview-section .service-overview-cards .overview-card .card-water-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary);
  opacity: 0.3;
  transition: height 0.3s ease;
  z-index: -1;
  border-radius: 0 0 15px 15px;
}
.service-overview-section .service-overview-cards .overview-card:hover .card-water-effect {
  height: 100px;
}
.service-overview-section .service-overview-cards .overview-card.highlight-card {
  border-top: 5px solid var(--secondary);
}
.service-overview-section .service-overview-cards .overview-card.highlight-card .card-icon {
  fill: var(--secondary);
}
.service-overview-section .service-overview-cards .overview-card.highlight-card .card-water-effect {
  background: var(--secondary);
}

.service-process-section {
  padding: 4rem 0;
}
.service-process-section .service-process-timeline {
  position: relative;
  padding: 2rem 0;
}
.service-process-section .service-process-timeline .timeline-water-effect {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 10px;
  z-index: 0;
}
.service-process-section .service-process-timeline .timeline-item {
  position: relative;
  margin-bottom: 4rem;
}
.service-process-section .service-process-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.service-process-section .service-process-timeline .timeline-item .timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.service-process-section .service-process-timeline .timeline-item .timeline-marker .marker-content {
  position: absolute;
  z-index: 2;
}
.service-process-section .service-process-timeline .timeline-item .timeline-marker .marker-ripple {
  position: center;
  top: 0;
  left: 0;
  width: 20%;
  height: 20%;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  animation: ripple 3s linear infinite;
}
.service-process-section .service-process-timeline .timeline-item .timeline-content {
  width: 45%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}
.service-process-section .service-process-timeline .timeline-item .timeline-content .timeline-title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}
.service-process-section .service-process-timeline .timeline-item .timeline-content .timeline-body {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}
.service-process-section .service-process-timeline .timeline-item .timeline-content .timeline-time {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--primary);
}
.service-process-section .service-process-timeline .timeline-item .timeline-content .timeline-time svg {
  margin-right: 0.5rem;
  fill: currentColor;
}
.service-process-section .service-process-timeline .timeline-item.left .timeline-content {
  margin-left: auto;
}
.service-process-section .service-process-timeline .timeline-item.right .timeline-content {
  margin-right: auto;
}

.service-highlights-section {
  padding: 4rem 0;
}
.service-highlights-section .highlights-list, .service-highlights-section .team-info, .service-highlights-section .tech-card, .service-highlights-section .cert-card {
  height: 100%;
}
.service-highlights-section .highlights-list h3, .service-highlights-section .team-info h3, .service-highlights-section .tech-card h3, .service-highlights-section .cert-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.service-highlights-section .tech-card, .service-highlights-section .cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-highlights-section .tech-card .tech-icon, .service-highlights-section .tech-card .cert-icon, .service-highlights-section .cert-card .tech-icon, .service-highlights-section .cert-card .cert-icon {
  margin-bottom: 1.5rem;
  fill: var(--white);
}
.service-highlights-section .tech-card .tech-title, .service-highlights-section .tech-card .cert-title, .service-highlights-section .cert-card .tech-title, .service-highlights-section .cert-card .cert-title {
  color: var(--white);
}
.service-highlights-section .tech-card .tech-content, .service-highlights-section .tech-card .cert-content, .service-highlights-section .cert-card .tech-content, .service-highlights-section .cert-card .cert-content {
  color: var(--white);
  line-height: 1.6;
}
.service-highlights-section .tech-card .hexagon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.service-highlights-section .cert-card {
  background: linear-gradient(135deg, var(--secondary) 0%, rgb(29.96, 122.087, 55.426) 100%);
}

.service-testimonials-section {
  display: none;
  padding: 4rem 0;
}

.service-testimonials-section .testimonials-slider {
  position: relative;
  padding: 2rem 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.service-testimonials-section .testimonials-slider .testimonial-item {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin: 0.5rem;
  transition: all 0.3s ease;
}

.service-testimonials-section .testimonials-slider .testimonial-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-rating {
  display: flex;
  margin-bottom: 1rem;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-rating svg {
  margin-right: 0.25rem;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-rating svg.star-filled {
  fill: #FFD700;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-rating svg.star-empty {
  fill: #D3D3D3;
}

.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-content {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 0.5rem;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-content::before,
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-content::after {
  content: '"';
  font-size: 1.5rem;
  color: rgba(var(--primary-rgb), 0.3);
  line-height: 0;
  position: relative;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-content::before {
  top: 0.5rem;
  left: -0.5rem;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-content::after {
  bottom: 0;
  right: -0.5rem;
}

.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-author .author-avatar svg {
  fill: var(--primary);
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-author .author-info .author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.service-testimonials-section .testimonials-slider .testimonial-item .testimonial-author .author-info .author-role {
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.6);
}

.service-testimonials-section .testimonials-slider .swiper-button-next,
.service-testimonials-section .testimonials-slider .swiper-button-prev {
  color: var(--primary);
}
.service-testimonials-section .testimonials-slider .swiper-button-next::after,
.service-testimonials-section .testimonials-slider .swiper-button-prev::after {
  font-size: 1.5rem;
}

.service-testimonials-section .testimonials-slider .swiper-pagination-bullet-active {
  background: var(--primary);
}

@media (max-width: 767px) {
  .service-testimonials-section .swiper-slide {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-testimonials-section .swiper-wrapper {
    justify-content: unset !important;
  }
}

.service-faq-section {
  padding: 4rem 0;
}
.service-faq-section .faq-accordion .faq-item {
  border-bottom: 1px solid rgba(var(--black-rgb), 0.1);
}
.service-faq-section .faq-accordion .faq-item:last-child {
  border-bottom: none;
}
.service-faq-section .faq-accordion .faq-item .faq-question {
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-faq-section .faq-accordion .faq-item .faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  flex-grow: 1;
  padding-right: 1rem;
}
.service-faq-section .faq-accordion .faq-item .faq-question .faq-toggle {
  flex-shrink: 0;
}
.service-faq-section .faq-accordion .faq-item .faq-question .faq-toggle svg {
  fill: var(--primary);
}
.service-faq-section .faq-accordion .faq-item .faq-question .faq-toggle .minus-icon {
  display: none;
}
.service-faq-section .faq-accordion .faq-item .faq-answer {
  padding: 0 0 1.5rem;
  display: none;
  line-height: 1.6;
  color: rgba(var(--black-rgb), 0.8);
}
.service-faq-section .faq-accordion .faq-item.active .faq-question .faq-toggle .plus-icon {
  display: none;
}
.service-faq-section .faq-accordion .faq-item.active .faq-question .faq-toggle .minus-icon {
  display: block;
}

.service-cta-section {
  padding: 4rem 0;
}
.service-cta-section .cta-card {
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.service-cta-section .cta-card .water-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 0;
}
.service-cta-section .cta-card .cta-content {
  position: relative;
  z-index: 2;
}
.service-cta-section .cta-card .cta-content .cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.service-cta-section .cta-card .cta-content .cta-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.service-cta-section .cta-card .cta-content .response-time {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}
.service-cta-section .cta-card .cta-content .response-time svg {
  margin-right: 0.5rem;
  fill: var(--white);
}
.service-cta-section .cta-card .cta-content .cta-actions {
  margin-top: 1rem;
}
.service-cta-section .cta-card .cta-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.service-cta-section .cta-card .cta-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
}
.service-cta-section .cta-card .cta-bubbles .bubble.bubble-1 {
  width: 100px;
  height: 100px;
  top: -30px;
  left: 10%;
  animation-delay: 0s;
}
.service-cta-section .cta-card .cta-bubbles .bubble.bubble-2 {
  width: 70px;
  height: 70px;
  bottom: -20px;
  right: 15%;
  animation-delay: 1s;
}
.service-cta-section .cta-card .cta-bubbles .bubble.bubble-3 {
  width: 50px;
  height: 50px;
  bottom: 30%;
  left: 5%;
  animation-delay: 2s;
}
.service-cta-section .related-services-section {
  margin-top: 5rem;
}
.service-cta-section .related-services-section .related-service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.service-cta-section .related-services-section .related-service-card .related-service-image {
  position: relative;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  height: 200px;
}
.service-cta-section .related-services-section .related-service-card .related-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-cta-section .related-services-section .related-service-card .related-service-image .no-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary-rgb), 0.1);
}
.service-cta-section .related-services-section .related-service-card .related-service-image .no-thumbnail svg {
  width: 60px;
  height: 60px;
  fill: var(--primary);
}
.service-cta-section .related-services-section .related-service-card .related-service-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-cta-section .related-services-section .related-service-card .related-service-content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-cta-section .related-services-section .related-service-card .related-service-content .related-service-title {
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}
.service-cta-section .related-services-section .related-service-card .related-service-content .related-service-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.service-cta-section .related-services-section .related-service-card .related-service-content .related-service-arrow svg {
  fill: var(--primary);
}
.service-cta-section .related-services-section .related-service-card:hover .related-service-image img {
  transform: scale(1.1);
}
.service-cta-section .related-services-section .related-service-card:hover .related-service-image .image-overlay {
  opacity: 1;
}
.service-cta-section .related-services-section .related-service-card:hover .related-service-content .related-service-title {
  color: var(--primary);
}
.service-cta-section .related-services-section .related-service-card:hover .related-service-content .related-service-arrow {
  opacity: 1;
  transform: translateX(0);
}
.service-cta-section .resources-section {
  margin-top: 5rem;
}
.service-cta-section .resources-section .resources-list .resource-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-cta-section .resources-section .resources-list .resource-links li {
  margin-bottom: 0.5rem;
}
.service-cta-section .resources-section .resources-list .resource-links li:last-child {
  margin-bottom: 0;
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link:hover .resource-arrow {
  opacity: 1;
  transform: translateX(0);
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link .resource-icon {
  margin-right: 1rem;
  flex-shrink: 0;
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link .resource-icon svg {
  fill: var(--primary);
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link .resource-info {
  flex-grow: 1;
}
.resource-info {
  min-width: 0;
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link .resource-info .resource-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link .resource-info .resource-url {
  display: block;
  font-size: 0.85rem;
  color: rgba(var(--black-rgb), 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link .resource-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.service-cta-section .resources-section .resources-list .resource-links li .resource-link .resource-arrow svg {
  fill: var(--primary);
}

.water-particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.particle-animate {
  animation: particleRise 8s ease-in-out;
}

@media (max-width: 992px) {
  .service-single-content .service-hero {
    padding: 4rem 0 6rem;
  }
  .service-single-content .service-hero .service-title {
    font-size: 2.4rem;
  }
  .service-single-content .service-hero .service-featured-image-container {
    margin-top: 2rem;
  }
  .service-single-content .service-process-section .service-process-timeline .timeline-item .timeline-marker {
    left: 0;
    transform: none;
  }
  .service-single-content .service-process-section .service-process-timeline .timeline-item .timeline-content {
    width: calc(100% - 70px);
    margin-left: 70px !important;
  }
}
@media (max-width: 768px) {
  .service-single-content section {
    margin-bottom: 3rem;
  }
  .service-single-content .section-header {
    margin-bottom: 2rem;
  }
  .service-single-content .section-header .section-title {
    font-size: 1.8rem;
  }
  .service-single-content .service-hero {
    padding: 3rem 0 5rem;
  }
  .service-single-content .service-hero .service-title {
    font-size: 2rem;
  }
  .service-single-content .service-highlights-section .tech-card, .service-single-content .service-highlights-section .cert-card, .service-single-content .service-highlights-section .team-info {
    margin-top: 1.5rem;
  }
}

.blog-archive {
  font-family: var(--font-primary);
  color: var(--gray-800);
  line-height: 1.6;

}
.blog-archive section {
  margin-bottom: var(--space-xxl);
}

.blog-archive .archive-banner,
.technical-article-archive .archive-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: var(--space-xxl) 0 0;
  position: relative;
  margin-bottom: var(--space-xl);
}

.blog-archive .archive-banner::before,
.technical-article-archive .archive-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 72%);
}
.blog-archive .archive-banner .container,
.technical-article-archive .archive-banner .container {
  position: relative;
  z-index: 1;
}
.blog-archive .archive-banner .archive-title,
.technical-article-archive .archive-banner .archive-title {
  font-size: var(--font-size-xxxl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
}
.blog-archive .archive-banner .archive-description,
.technical-article-archive .archive-banner .archive-description {
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-lg);
  max-width: 800px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out;
}
.blog-archive .archive-banner .wave-separator,
.technical-article-archive .archive-banner .wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.blog-archive .archive-banner .wave-separator svg,
.technical-article-archive .archive-banner .wave-separator svg {
  width: 100%;
  height: 100px;
  animation: wavyMotion 15s linear infinite;
}
.blog-archive .archive-banner .wave-separator.bottom,
.technical-article-archive .archive-banner .wave-separator.bottom {
  top: 0;
  transform: rotate(180deg);
}
.blog-archive .featured-posts-section {
  margin-bottom: var(--space-xxl);
}
.blog-archive .featured-posts-section .section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.8s ease-out;
}
.blog-archive .featured-posts-section .section-title {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
  padding: 0 var(--space-md);
}
.blog-archive .featured-posts-section .section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: var(--radius-sm);
  animation: expandWidth 1s ease-out forwards;
}
.blog-archive .featured-posts-section .featured-post-item {
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out;
}
.blog-archive .featured-posts-section .featured-post-item:nth-child(2) {
  animation-delay: 0.2s;
}
.blog-archive .featured-posts-section .featured-post-item .post-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
  background-color: var(--white);
}
.blog-archive .featured-posts-section .featured-post-item .post-inner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-archive .featured-posts-section .featured-post-item .post-inner:hover .post-image {
  transform: scale(1.05);
}
.blog-archive .featured-posts-section .featured-post-item .post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.blog-archive .featured-posts-section .featured-post-item .post-thumbnail .post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-archive .featured-posts-section .featured-post-item .post-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  opacity: 0;
  transition: all 0.7s ease;
}
.blog-archive .featured-posts-section .featured-post-item:hover .post-thumbnail::before {
  animation: shine 1.2s ease;
}
.blog-archive .featured-posts-section .featured-post-item .post-content {
  padding: var(--space-lg);
}
.blog-archive .featured-posts-section .featured-post-item .post-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.4;
}
.blog-archive .featured-posts-section .featured-post-item .post-excerpt {
  margin-bottom: var(--space-lg);
  color: var(--gray-700);
}
.blog-archive .main-content-section {
  margin-bottom: var(--space-xxl);

}
.blog-archive .main-content-section .main-column {
  margin-bottom: var(--space-lg);
}
.blog-archive .main-content-section .posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  position: relative;
  min-height: 300px;
}
.blog-archive .main-content-section .posts-grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 5;
  pointer-events: none;
}
.blog-archive .main-content-section .posts-grid.loading::after {
  opacity: 1;
  visibility: visible;
}
.blog-archive .main-content-section .posts-grid.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 6;
}
.blog-archive .main-content-section .grid-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.blog-archive .main-content-section .grid-item:nth-child(1) {
  animation-delay: 0.1s;
}
.blog-archive .main-content-section .grid-item:nth-child(2) {
  animation-delay: 0.2s;
}
.blog-archive .main-content-section .grid-item:nth-child(3) {
  animation-delay: 0.3s;
}
.blog-archive .main-content-section .grid-item:nth-child(4) {
  animation-delay: 0.4s;
}
.blog-archive .main-content-section .grid-item:nth-child(5) {
  animation-delay: 0.5s;
}
.blog-archive .main-content-section .grid-item:nth-child(6) {
  animation-delay: 0.6s;
}
.blog-archive .main-content-section .grid-item:nth-child(7) {
  animation-delay: 0.7s;
}
.blog-archive .main-content-section .grid-item:nth-child(8) {
  animation-delay: 0.8s;
}
.blog-archive .main-content-section .grid-item:nth-child(9) {
  animation-delay: 0.9s;
}
.blog-archive .main-content-section .grid-item:nth-child(10) {
  animation-delay: 1s;
}
.blog-archive .main-content-section .grid-item:nth-child(11) {
  animation-delay: 1.1s;
}
.blog-archive .main-content-section .grid-item:nth-child(12) {
  animation-delay: 1.2s;
}
.blog-archive .main-content-section .archive-post-item {
  margin-bottom: var(--space-lg);
}
.blog-archive .post-inner {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog-archive .post-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blog-archive .post-inner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-archive .post-inner:hover::after {
  transform: scaleX(1);
}
.blog-archive .post-inner:hover .post-image {
  transform: scale(1.05);
}
.blog-archive .post-thumbnail {
  position: relative;
  overflow: hidden;
}
.blog-archive .post-thumbnail .post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-archive .post-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  opacity: 0;
  transition: all 0.7s ease;
}
.blog-archive .grid-item:hover .post-thumbnail::before {
  animation: shine 1.2s ease;
}

.blog-archive .post-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 45%, rgba(15, 23, 42, .72) 100%);
  pointer-events: none;
}
.blog-archive .post-thumbnail-categories {
  position: absolute;
  left: var(--space-sm);
  bottom: var(--space-sm);
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.blog-archive .post-date {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background-color: var(--primary);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.blog-archive .post-date .day {
  font-size: var(--font-size-lg);
  display: block;
}
.blog-archive .post-date .month {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}
.blog-archive .post-date:hover {
  transform: scale(1.05);
  background-color: var(--secondary);
}
.blog-archive .post-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-archive .post-meta {
  margin-bottom: var(--space-sm);
}
.blog-archive .post-meta .post-categories,
.blog-archive .post-thumbnail-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.blog-archive .post-meta .post-category,
.blog-archive .post-thumbnail-categories .post-category {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.blog-archive .post-meta .post-category::before,
.blog-archive .post-thumbnail-categories .post-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.blog-archive .post-meta .post-category:hover,
.blog-archive .post-thumbnail-categories .post-category:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.blog-archive .post-meta .post-category:hover::before,
.blog-archive .post-thumbnail-categories .post-category:hover::before {
  transform: translateX(0);
  animation: sweep 0.5s ease forwards;
}
.blog-archive .post-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  line-height: 1.4;
}
.blog-archive .post-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  background-image: linear-gradient(transparent 0%, transparent calc(100% - 2px), rgba(58, 86, 158, 0.3) calc(100% - 2px), rgba(58, 86, 158, 0.3) 100%);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s ease, color 0.3s ease;
}
.blog-archive .post-title a:hover {
  color: var(--primary);
  background-size: 100% 100%;
}
.blog-archive .post-excerpt {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  flex-grow: 1;
  transition: color 0.3s ease;
}
.blog-archive .post-inner:hover .post-excerpt {
  color: var(--gray-800);
}
.blog-archive .post-footer {
  margin-top: auto;
}
.blog-archive .post-footer .read-more-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  padding: var(--space-xs) 0;
}
.blog-archive .post-footer .read-more-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.blog-archive .post-footer .read-more-link i {
  margin-left: var(--space-xs);
  transition: transform var(--transition-base);
}
.blog-archive .post-footer .read-more-link:hover {
  color: var(--primary-dark);
}
.blog-archive .post-footer .read-more-link:hover i {
  transform: translateX(5px);
}
.blog-archive .post-footer .read-more-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.blog-archive .sidebar-column {
  position: relative;
}
.blog-archive .sidebar-column .sidebar-inner {
  position: sticky;
  top: var(--space-xl);
}
.blog-archive .sidebar-widget {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.blog-archive .sidebar-widget .widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-lg);
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--primary-light);
  position: relative;
}
.blog-archive .sidebar-widget .widget-title:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

.blog-archive .sidebar-widget .widget-title-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  color: var(--white);
}
.blog-archive .sidebar-widget .widget-title-icon .nts-icon { width: 15px; height: 15px; }
.blog-archive .sidebar-widget .filter-section {
  margin-bottom: var(--space-lg);
}
.blog-archive .sidebar-widget .filter-section .filter-title {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-sm);
  color: var(--gray-700);
  font-weight: 600;
}
.blog-archive .sidebar-widget .category-list,
.blog-archive .sidebar-widget .date-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-archive .sidebar-widget .date-list li {
  margin-bottom: var(--space-xs);
}

.blog-archive .sidebar-widget .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-archive .sidebar-widget .category-item {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background-color: var(--gray-100, #f3f4f6);
  color: var(--gray-700);
  border-radius: var(--radius-lg, 999px);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}
.blog-archive .sidebar-widget .category-item:hover,
.blog-archive .sidebar-widget .category-item.active {
  background-color: var(--secondary);
  color: var(--white);
}
.blog-archive .sidebar-widget .filter-search .search-form {
  position: relative;
  margin-bottom: 0;
}
.blog-archive .sidebar-widget .filter-search .search-form .search-field {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  padding-right: 40px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}
.blog-archive .sidebar-widget .filter-search .search-form .search-field:focus {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-inset);
  outline: none;
}
.blog-archive .sidebar-widget .filter-search .search-form .search-submit {
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: var(--space-xs);
  transition: color var(--transition-base);
}
.blog-archive .sidebar-widget .filter-search .search-form .search-submit:hover {
  color: var(--primary-dark);
}
.blog-archive .recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-archive .recent-posts-list .recent-post-item {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--gray-200);
}
.blog-archive .recent-posts-list .recent-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-archive .recent-posts-list .recent-post-item .post-thumbnail {
  flex: 0 0 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.blog-archive .recent-posts-list .recent-post-item .post-info {
  flex: 1;
}
.blog-archive .recent-posts-list .recent-post-item .post-title {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}
.blog-archive .recent-posts-list .recent-post-item .post-meta {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}
.blog-archive .recent-posts-list .recent-post-item .post-date {
  position: static;
  background: none;
  color: var(--gray-600);
  padding: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
}
.blog-archive .recent-posts-list .recent-post-item .post-date i {
  margin-right: var(--space-xs);
  color: var(--primary);
}
.blog-archive .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.blog-archive .tagcloud .tag-link {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background-color: var(--gray-200);
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: all var(--transition-base);
}
.blog-archive .tagcloud .tag-link:hover {
  background-color: var(--primary-light);
  color: var(--white);
}
.blog-archive .pagination-wrapper {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out;
}
.blog-archive .pagination-wrapper .page-numbers {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--space-xs);
  position: relative;
}
.blog-archive .pagination-wrapper .page-numbers::before, .blog-archive .pagination-wrapper .page-numbers::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300));
}
.blog-archive .pagination-wrapper .page-numbers::before {
  left: -10%;
}
.blog-archive .pagination-wrapper .page-numbers::after {
  right: -10%;
  background: linear-gradient(90deg, var(--gray-300), transparent);
}
.blog-archive .pagination-wrapper .page-numbers li {
  display: inline-block;
  animation: fadeInUp 0.4s ease-out forwards;
  opacity: 0;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(1) {
  animation-delay: 0.05s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(2) {
  animation-delay: 0.1s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(3) {
  animation-delay: 0.15s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(4) {
  animation-delay: 0.2s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(5) {
  animation-delay: 0.25s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(6) {
  animation-delay: 0.3s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(7) {
  animation-delay: 0.35s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(8) {
  animation-delay: 0.4s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(9) {
  animation-delay: 0.45s;
}
.blog-archive .pagination-wrapper .page-numbers li:nth-child(10) {
  animation-delay: 0.5s;
}
.blog-archive .pagination-wrapper .page-numbers a,
.blog-archive .pagination-wrapper .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background-color: var(--gray-100);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.blog-archive .pagination-wrapper .page-numbers a::before,
.blog-archive .pagination-wrapper .page-numbers span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  opacity: 0;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.blog-archive .pagination-wrapper .page-numbers a:hover,
.blog-archive .pagination-wrapper .page-numbers span.current {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3);
}
.blog-archive .pagination-wrapper .page-numbers a:hover::before,
.blog-archive .pagination-wrapper .page-numbers span.current::before {
  animation: ripple 0.6s ease-out;
}
.blog-archive .pagination-wrapper .page-numbers .prev i, .blog-archive .pagination-wrapper .page-numbers .next i {
  transition: transform 0.3s ease;
}
.blog-archive .pagination-wrapper .page-numbers .prev:hover i, .blog-archive .pagination-wrapper .page-numbers .next:hover i {
  animation: horizontal-bounce 0.5s ease infinite;
}
.blog-archive .pagination-wrapper .page-numbers .prev:hover i {
  animation: horizontal-bounce-reverse 0.5s ease infinite;
}
.blog-archive .load-more-button {
  display: block;
  margin: var(--space-xl) auto var(--space-lg);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.blog-archive .load-more-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
}
.blog-archive .load-more-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(var(--primary-rgb), 0.2);
}
.blog-archive .load-more-button:hover::before {
  animation: shimmer 1.5s infinite;
}
.blog-archive .load-more-button.loading {
  pointer-events: none;
  opacity: 0.8;
}
.blog-archive .load-more-button.loading .button-text {
  visibility: hidden;
}
.blog-archive .load-more-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@media (max-width: 1199px) {
  .blog-archive .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-archive .featured-post-item .post-thumbnail {
    height: 250px;
  }
}
@media (max-width: 991px) {
  :root {
    --font-size-xxxl: 2rem;
    --font-size-xxl: 1.75rem;
    --space-xxl: 2.5rem;
  }
  .blog-archive .featured-post-item .post-thumbnail {
    height: 220px;
  }
  .blog-archive .sidebar-inner {
    position: relative;
    top: 0;
  }
  .blog-archive .newsletter-form {
    justify-content: flex-start;
    margin-top: var(--space-lg);
  }
}
@media (max-width: 767px) {
  .blog-archive .posts-grid {
    grid-template-columns: 1fr;
  }
  .blog-archive .archive-banner {
    padding: var(--space-xl) 0 0;
  }
  .blog-archive .archive-title {
    font-size: var(--font-size-xxl);
  }
  .blog-archive .wave-separator svg {
    height: 50px;
  }
  .blog-archive .featured-post-item .post-thumbnail {
    height: 180px;
  }
  .blog-archive .newsletter-content h2 {
    font-size: var(--font-size-xl);
  }
  .blog-archive .section-title {
    font-size: var(--font-size-xl);
  }
  .blog-archive .section-title:after {
    width: 60px;
  }
}
@media (max-width: 575px) {
  :root {
    --space-xxl: 2rem;
  }
  .blog-archive .featured-post-item .post-content,
  .blog-archive .post-content {
    padding: var(--space-md);
  }
  .blog-archive .sidebar-widget {
    padding: var(--space-md);
  }
  .blog-archive .newsletter-form .submit-button {
    position: relative;
    right: auto;
    top: auto;
    margin-top: var(--space-sm);
    width: 100%;
  }
  .blog-archive .newsletter-form input[type=email] {
    padding: var(--space-md);
  }
  .blog-archive .newsletter-form .form-group {
    display: flex;
    flex-direction: column;
  }
}
.nts-breadcrumb {
  color: var(--white);
}
.nts-breadcrumb i {
  color: var(--white);
}
.nts-breadcrumb a {
  color: var(--white);
}
.nts-breadcrumb a:hover {
  color: var(--primary);
}

.nts-contact-info {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.nts-contact-info i {
    margin-right: 8px;
    color: var(--primary-color, #0082CA);
}

.nts-contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nts-contact-info a:hover {
    color: var(--primary-color, #0082CA);
}

.nts-social-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nts-social-links a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nts-social-links a i {
    margin-right: 10px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.nts-social-links a:hover {
    color: var(--primary-color, #0082CA);
}

.nts-social-links a:hover i {
    transform: translateX(3px);
}

.nts-social-links .social-facebook i {
    color: #1877F2;
}

.nts-social-links .social-youtube i {
    color: #FF0000;
}

.nts-social-links .social-instagram i {
    color: #E4405F;
}

.nts-social-links .social-linkedin i {
    color: #0A66C2;
}

.header-contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header-contact-info .nts-contact-info {
    margin-right: 20px;
    font-size: 14px;
}

@media (max-width: 849px) {
    .header-contact-info {
        justify-content: center;
    }
}

.footer-contact-info .nts-contact-info {
    display: block;
    margin-bottom: 15px;
}

header.project-archive-header.water-effect-header {
  background: linear-gradient(170deg, #1c325d, #11233f) !important;
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.project-du-an-xu-ly-nuoc .category-card-image {
  background-color: #1b325d !important;
  background-image: url('https://ntse.vn/wp-content/uploads/2025/06/icon-xu-ly-nuoc.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100px 100px !important;
  border-radius: 10px !important;
  transition: none !important;
}

.project-du-an-tuoi-tu-dong .category-card-image {
  background-color: #1b325d !important;
  background-image: url('https://ntse.vn/wp-content/uploads/2025/06/icon-tuoi-tu-dong.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100px 100px !important;
  border-radius: 10px !important;
  transition: none !important;
}

.project-du-an-thu-gom-tai-su-dung-nuoc .category-card-image {
  background-color: #1b325d !important;
  background-image: url('https://ntse.vn/wp-content/uploads/2025/06/icon-tai-su-dung-nuoc.svg') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100px 100px !important;
  border-radius: 10px !important;
  transition: none !important;
}

.project-category-badge {
  background-color: #f5f5f5;
  color: #333;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

.history-image-wrapper {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
  background-color: #f0f0f0;
}

.history-slide-content .history-slide-image {
    height: 300px !important;
    width: auto !important;
    object-fit: cover !important;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

	.swiper-slide.history-thumb {
  width: fit-content !important;
  max-width: 100%;
}

.product-resources-section {
  background: #fff;
  padding: 2rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.product-resources-section:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.product-resources-section .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary, #0073aa);
  margin-bottom: 1.5rem;
}

.resource-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed #ddd;
}

.resource-title {
  font-weight: 600;
  color: var(--primary, #0073aa);
}

.resource-link {
  color: #666;
  text-decoration: none;
  font-weight: 500;
}

.resource-link:hover {
  text-decoration: underline;
}

.resource-quote {
  background-color: var(--primary, #0073aa);
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.resource-quote:hover {
  background-color: #61ab5a;
}

.product-specs-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.product-specs-features .spec-feature-item {
  flex: 1;
  min-width: 280px;
  max-width: 100%;
  background-color: var(--white, #fff);
  border-radius: 10px;
  box-shadow: var(--shadow, 0 10px 30px rgba(0, 0, 0, 0.05));
  padding: 30px;
  transition: all 0.3s ease;
}

.product-specs-features .spec-feature-item:hover {
  box-shadow: var(--shadow-hover, 0 16px 40px rgba(0, 0, 0, 0.08));
  transform: translateY(-5px);
}

.product-specs-features .spec-feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light, #e3e9ff);
  color: var(--primary, #4a60f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-specs-features .spec-feature-icon svg {
  width: 24px;
  height: 24px;
}

.product-specs-features .spec-feature-item h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.product-specs-features .text-content {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.blog-single,
.post-content-section,
.container,
.row,
.col.large-4,
.sidebar,
.sticky-wrapper-inner {
  overflow: visible !important;
  transform: none !important;
  position: static !important;
}

.nts-admin-chip {
  position: absolute; z-index: 5; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(15,23,42,.06); color: #475569; font-size: 11px; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(15,23,42,.1);
}
.nts-admin-chip .nts-dot { width: 6px; height: 6px; border-radius: 50%; background: #28A34A; }
.nts-edit-section-wrap { position: relative; z-index: 2; display: flex; justify-content: center; }
.nts-edit-section-btn {
  position: relative; z-index: 5; display: inline-flex; align-items: center; gap: 6px; margin: 0 auto 30px;
  background: #fff; color: #1B325D;
  font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 999px; text-decoration: none; width: fit-content;
  border: 1px solid rgba(27,50,93,.15); box-shadow: 0 8px 20px -10px rgba(15,23,42,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nts-edit-section-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(15,23,42,.4); color: #1B325D; }
.nts-edit-section-btn .nts-icon { width: 13px; height: 13px; }
