:root {
  --primary-color: #048c46; /* Smart Agriculture Green */
  --primary-dark: #036b35;
  --secondary-color: #059669; /* Deep Green */
  --accent-color: #f59e0b; /* Technology Orange */
  --light-color: #f3f4f6;
  --dark-color: #1f2937;
  --gray-color: #6b7280;
  --border-color: #e5e7eb;
  --success-color: #8ec83e;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;
  --body-font: "Be Vietnam Pro", sans-serif;
  --heading-font: "Be Vietnam Pro", sans-serif;
  --white: #ffffff;
  --black: #000000;

  --gradient-color: linear-gradient(90deg, #048c46, #10b981, #84cc16);
}
/* global setting */
/* Modern Content Styling for Solar Energy Website */
.hydrosite-content {
  font-family: var(--font-inter);
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 100%;
}

/* Typography - Headers */
.hydrosite-content h1,
.hydrosite-content h2,
.hydrosite-content h3,
.hydrosite-content h4,
.hydrosite-content h5,
.hydrosite-content h6 {
  font-family: var(--font-play);
  font-weight: 700;
  line-height: 1.3;
  margin: 2rem 0 1rem 0;
  color: var(--dark-color);
  position: relative;
}

.hydrosite-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.hydrosite-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  position: relative;
  padding-left: 1rem;
}

.hydrosite-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 2px;
}

.hydrosite-content h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-top: 1.5rem;
  position: relative;
}

.hydrosite-content h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 1px;
}

.hydrosite-content h4 {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 600;
}

.hydrosite-content h5,
.hydrosite-content h6 {
  font-size: 1.1rem;
  color: var(--dark-color);
  font-weight: 600;
}

/* Paragraphs */
.hydrosite-content p {
  margin: 1rem 0;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.8;
}

.hydrosite-content p:first-child {
  margin-top: 0;
}

/* Links */
.hydrosite-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.hydrosite-content a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.hydrosite-content a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: width 0.3s ease;
}

.hydrosite-content a:hover::after {
  width: 100%;
}

/* Unordered Lists */
.hydrosite-content ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.hydrosite-content ul li {
  position: relative;
  margin: 0.45rem 0;
  padding-left: 1.5rem;
  line-height: 1.7;
}

.hydrosite-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  box-shadow: 0 2px 4px var(--shadow);
}

.hydrosite-content ul li:hover::before {
  transform: scale(1.2);
  transition: transform 0.2s ease;
}

/* Ordered Lists */
.hydrosite-content ol {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
  counter-reset: solar-counter;
}

.hydrosite-content ol li {
  position: relative;
  margin: 0.75rem 0;
  padding-left: 3rem;
  line-height: 1.7;
  counter-increment: solar-counter;
}

.hydrosite-content ol li::before {
  content: counter(solar-counter);
  position: absolute;
  left: 0;
  top: 5px;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px var(--shadow);
}

.hydrosite-content ol li:hover::before {
  transform: scale(1.1);
  box-shadow: 0 4px 12px var(--shadow-hover);
  transition: all 0.3s ease;
}

/* Blockquotes */
.hydrosite-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.05),
    rgba(224, 162, 19, 0.05)
  );
  border-left: 5px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
  position: relative;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-color);
  box-shadow: 0 4px 16px var(--shadow);
}

.hydrosite-content blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 3rem;
  color: var(--primary-color);
  font-family: Georgia, serif;
  line-height: 1;
}

.hydrosite-content blockquote p {
  margin: 0;
  text-align: left;
}

.hydrosite-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.hydrosite-content blockquote cite::before {
  content: "— ";
}

/* Tables */
.hydrosite-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.hydrosite-content table th {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-play);
  font-size: 1rem;
}

.hydrosite-content table td {
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.3s ease;
}

.hydrosite-content table tr:nth-child(even) td {
  background-color: rgba(11, 148, 68, 0.02);
}

.hydrosite-content table tr:hover td {
  background-color: rgba(11, 148, 68, 0.05);
}

.hydrosite-content table tr:last-child td {
  border-bottom: none;
}

/* Table Responsive */
@media (max-width: 768px) {
  .hydrosite-content table {
    font-size: 0.9rem;
  }

  .hydrosite-content table th,
  .hydrosite-content table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Strong and Em */
.hydrosite-content strong {
  font-weight: 700;
}

.hydrosite-content em {
  font-style: italic;
  color: var(--secondary-color);
}

/* Code inline */
.hydrosite-content code {
  background: rgba(11, 148, 68, 0.1);
  color: var(--primary-color);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}

/* Preformatted text */
.hydrosite-content pre {
  background: var(--dark-color);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary-color);
}

.hydrosite-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hydrosite-content h1 {
    font-size: 2rem;
  }

  .hydrosite-content h2 {
    font-size: 1.75rem;
  }

  .hydrosite-content h3 {
    font-size: 1.25rem;
  }

  .hydrosite-content ul li,
  .hydrosite-content ol li {
    padding-left: 1.5rem;
  }

  .hydrosite-content ol li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }

  .hydrosite-content blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
  }
}

/* Solar Energy Theme Enhancements */
.hydrosite-content .solar-highlight {
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.1),
    rgba(224, 162, 19, 0.1)
  );
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 4px solid var(--secondary-color);
}

.hydrosite-content .energy-stat {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  margin: 0.25rem;
  box-shadow: 0 2px 8px var(--shadow);
}

/* Code inline */
.hydrosite-content code {
  background: rgba(11, 148, 68, 0.1);
  color: var(--primary-color);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
}

/* Preformatted text */
.hydrosite-content pre {
  background: var(--dark-color);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary-color);
}

.hydrosite-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hydrosite-content h1 {
    font-size: 2rem;
  }

  .hydrosite-content h2 {
    font-size: 1.75rem;
  }

  .hydrosite-content h3 {
    font-size: 1.25rem;
  }

  .hydrosite-content ul li,
  .hydrosite-content ol li {
    padding-left: 1.5rem;
  }

  .hydrosite-content ol li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }

  .hydrosite-content blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
  }
}

/* Solar Energy Theme Enhancements */
.hydrosite-content .solar-highlight {
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.1),
    rgba(224, 162, 19, 0.1)
  );
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border-left: 4px solid var(--secondary-color);
}

.hydrosite-content .energy-stat {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  margin: 0.25rem;
  box-shadow: 0 2px 8px var(--shadow);
}

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  background-color: #f3f3f3;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Top Header */
.techno-farm-top-header {
  background-color: var(--light-color);
  color: #ffffff;
  padding: 10px 0;
  position: relative;
  z-index: 9999;
}

.techno-farm-logo {
  padding: 5px 0;
}

.techno-farm-contact-info a,
.techno-farm-address {
  color: var(--dark-color);
  font-size: clamp(0.8rem, 0.5304rem + 0.4348vw, 0.9rem);
  display: flex;
  align-items: center;
}

.techno-farm-contact-info a i,
.techno-farm-address i {
  margin-right: 8px;
  color: var(--primary-color);
}

.techno-farm-search .input-group {
  border-radius: 30px;
  overflow: hidden;
}

.techno-farm-search .form-control {
  border: none;
  box-shadow: none;
  padding: 10px 15px;
  height: 40px;
}

.techno-farm-search .btn {
  background-color: var(--success-color);
  color: var(--light-color);
  border: none;
  padding: 8px 15px;
}

/* Main Navigation */
.techno-farm-header {
  background-color: var(--primary-color);
  padding: 0;
  position: sticky;
  z-index: 10000;
  top: 0;
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -webkit-transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -moz-transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
  will-change: transform;
}

.techno-farm-header.header-hidden {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}

.techno-farm-header.header-visible {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.techno-farm-header.header-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(4, 140, 70, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.techno-farm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.techno-farm-category-toggle .btn {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.techno-farm-category-toggle .btn i:first-child {
  margin-right: 10px;
}

.techno-farm-category-toggle .btn i:last-child {
  transition: transform 0.3s ease;
}

.techno-farm-category-toggle.active .btn i:last-child {
  transform: rotate(180deg);
}

/* Category Dropdown Menu */
.techno-farm-category-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 800px;
  max-width: 90vw;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--border-color);
}

.techno-farm-category-toggle.active .techno-farm-category-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-dropdown-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px 8px 0 0;
}

.category-dropdown-header h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.category-dropdown-content {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.category-dropdown-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.category-dropdown-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(4, 140, 70, 0.1);
  transform: translateY(-2px);
}

.category-item-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.category-item-image {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

.category-item-info {
  flex: 1;
}

.category-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark-color);
  line-height: 1.3;
}

.category-title a {
  color: inherit;
  text-decoration: none;
}

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

.subcategory-count {
  font-size: 12px;
  color: var(--gray-color);
  font-style: italic;
}

.category-subcategories {
  border-top: 1px solid var(--border-color);
  padding-top: 10px;
  margin-top: 10px;
}

.subcategory-link {
  display: block;
  padding: 6px 0;
  color: var(--gray-color);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.subcategory-link:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.subcategory-link i {
  font-size: 10px;
  opacity: 0.7;
}

.category-dropdown-footer {
  background: var(--light-color);
  padding: 15px 20px;
  border-radius: 0 0 8px 8px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.category-loading {
  padding: 40px 20px;
  text-align: center;
  color: var(--gray-color);
}

.category-dropdown-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--gray-color);
  font-style: italic;
}

.techno-farm-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.techno-farm-menu-item {
  position: relative;
}

.techno-farm-menu-item > a {
  display: flex;
  align-items: center;
  padding: 15px 15px;
  color: var(--light-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 0.1261rem + 1.087vw, 1.05rem);
}

.techno-farm-menu-item > a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.techno-farm-menu-item.has-submenu > a .dropdown-toggle {
  margin-left: 5px;
}
.techno-farm-menu-item.active a {
  background: rgba(255, 255, 255, 0.1);
}

/* Submenu Styles - Pure CSS Hover */
.techno-farm-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.techno-farm-menu-item:hover > .techno-farm-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.techno-farm-submenu-item {
  position: relative;
}

.techno-farm-submenu-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: var(--dark-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.techno-farm-submenu-item > a:hover {
  background-color: #f3f4f6;
  color: var(--primary-color);
}

/* Level 2 Submenu */
.techno-farm-submenu-level-2 {
  position: absolute;
  top: 0;
  left: 100%;
  width: 250px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 101;
}

.techno-farm-submenu-item:hover > .techno-farm-submenu-level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.techno-farm-submenu-level-2 li a {
  display: block;
  padding: 10px 20px;
  color: var(--dark-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.techno-farm-submenu-level-2 li a:hover {
  background-color: #f3f4f6;
  color: var(--primary-color);
}

/* Language Selector */
.techno-farm-language .btn {
  color: var(--light-color);
  background-color: transparent;
  border: none;
  padding: 15px 11px;
  text-transform: uppercase;
}

.techno-farm-language .dropdown-menu {
  min-width: 120px;
  padding: 5px 0;
  margin-top: 0;
  border-radius: 0;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.techno-farm-language .dropdown-item {
  padding: 8px 15px;
  font-size: 14px;
}

/* Mobile Menu Toggle */
.techno-farm-mobile-toggle {
  display: none;
}

.techno-farm-mobile-toggle .btn {
  background-color: transparent;
  color: #ffffff;
  border: none;
  padding: 15px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.techno-farm-mobile-toggle .btn i {
  margin-right: 10px;
  font-size: 18px;
}

/* Mobile Header Layout */
.techno-farm-mobile-logo-center img {
  max-height: 45px;
  width: auto;
}

.techno-farm-mobile-language-toggle .btn {
  background-color: transparent;
  color: #ffffff;
  border: none;
  padding: 15px 8px;
  font-size: 16px;
}

.techno-farm-mobile-language-toggle .btn::after {
  display: none;
}
header .dropdown-toggle::after {
  display: none;
}
.techno-farm-top-header .form-control {
  max-width: 150px;
  background: #e6e6e6;
}
.top-header-content {
  background: rgba(18, 119, 15, 0.08);
}
.menu-icon {
  max-width: 20px;
}
.techno-farm-language .dropdown-menu {
  background: var(--light-color);
}
.techno-farm-language .dropdown-item {
  color: var(--dark-color);
}
.techno-farm-cart {
  align-content: center;
}
.techno-farm-cart-offcanvas {
  z-index: 9999;
}
/* header end */
/* slider start */
/* Hero Section */
.techno-farm-hero {
  padding: 30px 0;
  background-color: #f9fafb;
}

/* Category Sidebar */
.techno-farm-category-sidebar {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  /* overflow: hidden; */
}

.techno-farm-sidebar-title {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 15px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: none;
}

.techno-farm-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.techno-farm-category-item {
  border-bottom: 1px solid var(--border-color);
}

.techno-farm-category-item:last-child {
  border-bottom: none;
}

.techno-farm-category-item a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: var(--dark-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.techno-farm-category-item a i:first-child {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

.techno-farm-category-item a:hover {
  background-color: #f3f4f6;
  color: var(--primary-color);
}

/* Category Sidebar Submenu Styles */
.techno-farm-category-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 220px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 101;
  border-radius: 5px;
}

.techno-farm-category-item.has-submenu {
  position: relative;
}

.techno-farm-category-item.has-submenu:hover > .techno-farm-category-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.techno-farm-category-subitem {
  position: relative;
}

.techno-farm-category-subitem > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: var(--dark-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.techno-farm-category-subitem > a:hover {
  background-color: #f3f4f6;
  color: var(--primary-color);
}

/* Level 2 Submenu */
.techno-farm-category-submenu-level-2 {
  position: absolute;
  top: 0;
  left: 100%;
  width: 220px;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 102;
  border-radius: 5px;
}

.techno-farm-category-subitem.has-submenu:hover
  > .techno-farm-category-submenu-level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.techno-farm-category-submenu-level-2 li a {
  display: block;
  padding: 10px 15px;
  color: var(--dark-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.techno-farm-category-submenu-level-2 li a:hover {
  background-color: #f3f4f6;
  color: var(--primary-color);
}

/* Visual indicators for items with submenus */
.techno-farm-category-item.has-submenu > a::after,
.techno-farm-category-subitem.has-submenu > a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-color);
  transition: all 0.3s ease;
}

.techno-farm-category-item.has-submenu:hover > a::after,
.techno-farm-category-subitem.has-submenu:hover > a::after {
  color: var(--primary-color);
  transform: translateX(3px);
}

/* Mobile Responsive Styles for Category Sidebar */

/* slider start */
/* Main Slider */
.techno-farm-main-slider {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.techno-farm-slide-content {
  padding: 30px;
}

.techno-farm-slide-text {
  padding: 20px 0;
}

.techno-farm-slide-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.techno-farm-slide-description {
  font-size: 16px;
  color: var(--gray-color);
  margin-bottom: 20px;
}

.techno-farm-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.techno-farm-btn:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
}
.techno-farm-slide-content-image {
  overflow: hidden;
}
.techno-farm-slide-content-image a,
.techno-farm-slide-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.techno-farm-swiper-pagination {
  position: absolute;
  bottom: 0;
  z-index: 3;
  text-align: center;
}
.techno-farm-swiper-pagination.swiper-pagination-clickable
  .swiper-pagination-bullet {
  background: var(--light-color);
  opacity: 0.7;
  width: 10px;
  height: 10px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.techno-farm-swiper-pagination.swiper-pagination-clickable
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.menu-icon-sidebar {
  height: 20px;
  width: 20px;
  object-fit: contain;
  margin-right: 10px;
}
.techno-farm-mobile-category-item .dropdown-toggle::after {
  display: none;
}
/* slider end */

/* Featured Products Section */
.techno-farm-featured-products {
  padding: 60px 0;
}

.techno-farm-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.techno-farm-section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.techno-farm-product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.techno-farm-product-description {
  font-size: 14px;
  color: var(--gray-color);
  margin-bottom: 15px;
}

.techno-farm-btn-sm {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
}

.techno-farm-btn-sm:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}

/* Why Choose Us Section */
.techno-farm-why-choose {
  padding: 60px 0;
  background-color: #f9fafb;
}

.techno-farm-feature-box {
  text-align: center;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.techno-farm-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.techno-farm-feature-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.techno-farm-feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.techno-farm-feature-text {
  font-size: 14px;
  color: var(--gray-color);
}

/* Footer */
.techno-farm-footer {
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 60px 0 0;
}

.techno-farm-footer-widget {
  margin-bottom: 30px;
}

.techno-farm-footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.techno-farm-footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.techno-farm-social-links {
  display: flex;
  margin-top: 20px;
}

.techno-farm-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.techno-farm-social-links a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

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

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

.techno-farm-footer-links li a {
  color: #ffffff;
  opacity: 0.8;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.techno-farm-footer-links li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.techno-farm-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.techno-farm-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.techno-farm-contact-info li i {
  margin-right: 10px;
  color: var(--primary-color);
  margin-top: 5px;
}

.techno-farm-copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 30px;
}

.techno-farm-copyright p {
  margin: 0;
  font-size: 14px;
}

.techno-farm-footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.techno-farm-footer-bottom-links li {
  margin-left: 20px;
}

.techno-farm-footer-bottom-links li a {
  color: #ffffff;
  opacity: 0.8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.techno-farm-footer-bottom-links li a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Mobile Menu (Offcanvas) */
.techno-farm-mobile-menu {
  width: 320px;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.techno-farm-mobile-menu .offcanvas-header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: #ffffff;
  border-bottom: 3px solid var(--accent-color);
  padding: 20px;
}

.techno-farm-mobile-menu .offcanvas-title {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.techno-farm-mobile-menu .offcanvas-title::before {
  content: "🌱";
  margin-right: 8px;
  font-size: 20px;
}

.techno-farm-mobile-menu .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.techno-farm-mobile-menu .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Mobile Header Section */
.techno-farm-mobile-header {
  padding: 15px;
  background: rgba(var(--primary-color), 0.05);
  border-radius: 10px;
  margin: 0 15px;
}

.techno-farm-mobile-logo img {
  max-height: 45px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.techno-farm-mobile-language .btn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 25px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.techno-farm-mobile-language .btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(4, 140, 70, 0.3);
}

/* Section Titles */
.techno-farm-mobile-section-title {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 15px;
  padding: 10px 15px;
  background: linear-gradient(
    90deg,
    rgba(4, 140, 70, 0.1) 0%,
    transparent 100%
  );
  border-left: 4px solid var(--primary-color);
  border-radius: 0 8px 8px 0;
}

/* Product Categories in Mobile */
.techno-farm-mobile-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.techno-farm-mobile-category-item {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.techno-farm-mobile-category-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.techno-farm-mobile-category-item .category-label {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.techno-farm-mobile-category-item .category-label:hover {
  color: var(--primary-color);
  background: rgba(4, 140, 70, 0.05);
}

.mobile-cat-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.techno-farm-mobile-category-item .dropdown-toggle {
  cursor: pointer;
  padding: 12px 15px;
  color: var(--gray-color);
  transition: all 0.3s ease;
}

.techno-farm-mobile-category-item .dropdown-toggle:hover {
  color: var(--primary-color);
}

.techno-farm-mobile-category-item .dropdown-toggle i {
  transition: transform 0.3s ease;
}

.techno-farm-mobile-category-item .dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.techno-farm-mobile-category-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
  border-top: 1px solid var(--border-color);
}

.techno-farm-mobile-category-subitem a {
  display: block;
  padding: 10px 20px 10px 45px;
  color: var(--dark-color);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--border-color), 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.techno-farm-mobile-category-subitem a::before {
  content: "▶";
  position: absolute;
  left: 25px;
  color: var(--primary-color);
  font-size: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.techno-farm-mobile-category-subitem a:hover {
  background: rgba(4, 140, 70, 0.05);
  color: var(--primary-color);
  padding-left: 50px;
}

/* Main Navigation in Mobile */
.techno-farm-mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.techno-farm-mobile-item {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.techno-farm-mobile-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.techno-farm-mobile-item > a,
.techno-farm-mobile-item > div {
  display: block;
  padding: 15px;
  color: var(--dark-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.techno-farm-mobile-item > a:hover {
  color: var(--primary-color);
  background: rgba(4, 140, 70, 0.05);
}

.techno-farm-mobile-item.active > a {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: #ffffff;
}

.techno-farm-mobile-item .dropdown-toggle {
  cursor: pointer;
  padding: 15px;
  color: var(--gray-color);
  transition: all 0.3s ease;
}

.techno-farm-mobile-item .dropdown-toggle:hover {
  color: var(--primary-color);
}

.techno-farm-mobile-item .dropdown-toggle i {
  transition: transform 0.3s ease;
}

.techno-farm-mobile-item .dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.techno-farm-mobile-submenu,
.techno-farm-mobile-submenu-level-2 {
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
  border-top: 1px solid var(--border-color);
}

.techno-farm-mobile-subitem {
  border-top: 1px solid rgba(var(--border-color), 0.3);
}

.techno-farm-mobile-subitem > a,
.techno-farm-mobile-subitem > div {
  display: block;
  padding: 12px 15px 12px 35px;
  color: var(--dark-color);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.techno-farm-mobile-subitem > a::before {
  content: "▶";
  position: absolute;
  left: 20px;
  color: var(--primary-color);
  font-size: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.techno-farm-mobile-subitem > a:hover {
  background: rgba(4, 140, 70, 0.05);
  color: var(--primary-color);
  padding-left: 40px;
}

.techno-farm-mobile-submenu-level-2 li a {
  padding: 10px 15px 10px 50px;
  display: block;
  color: var(--dark-color);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.techno-farm-mobile-submenu-level-2 li a::before {
  content: "▪";
  position: absolute;
  left: 35px;
  color: var(--accent-color);
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.techno-farm-mobile-submenu-level-2 li a:hover {
  background: rgba(4, 140, 70, 0.05);
  color: var(--primary-color);
  padding-left: 55px;
}

/* Mobile Menu Button Improvements */
.techno-farm-mobile-toggle .btn {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(4, 140, 70, 0.3);
  transition: all 0.3s ease;
}

.techno-farm-mobile-toggle .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(4, 140, 70, 0.4);
}

.techno-farm-mobile-toggle .btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* GSAP Animation Classes */
.gsap-animating {
  transition: none !important;
}

.fade-in {
  opacity: 1;
}

.slide-up {
  opacity: 1;
  transform: translateY(30px);
}

.slide-right {
  opacity: 1;
  transform: translateX(-30px);
}

.slide-left {
  opacity: 1;
  transform: translateX(30px);
}
.dropdown-menu {
  background: var(--light-color);
  color: var(--dark-color);
}
.dropdown-item {
  color: var(--dark-color);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--primary-color);
  color: var(--light-color);
}
/* Responsive Styles */

/* NEW STYLES FOR ADDITIONAL SECTIONS */

/* 1. Commitment Section - Figma Design Implementation */
.techno-farm-commitment-section {
  padding: 30px 0;
}

.techno-farm-commitment-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid var(--border-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background: var(--white);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 100%;
}

.techno-farm-commitment-item:last-child {
  border-right: none;
}

.techno-farm-commitment-item:hover {
  background-color: rgba(4, 140, 70, 0.02);
}

.techno-farm-commitment-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  object-fit: contain;
}

.techno-farm-commitment-icon i {
  font-size: 20px;
  color: #ffffff;
}

.techno-farm-commitment-content {
  flex: 1;
}

.techno-farm-commitment-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 !important;
  margin-top: 0;
}

.techno-farm-commitment-text {
  font-size: 13px;
  color: var(--gray-color);
  margin-bottom: 0;
  line-height: 1.3;
}
.techno-farm-commitment-text p {
  margin-bottom: 0 !important;
}
/* 2. Product Categories Section */
.techno-farm-product-categories-section {
  padding: 50px 0;
  background-color: #f9fafb;
}

.techno-farm-category-info {
  padding: 10px;
  border-top: 1px solid var(--border-color);
}
.techno-farm-category-card .techno-farm-category-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--dark-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

/* 3. Featured Products Section */
.techno-farm-featured-products-section {
  padding: 50px 0;
  background-color: #ffffff;
}

/* Custom column width for 5 items per row */
.col-md-2-4 {
  width: 20%;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
}

.techno-farm-product-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.techno-farm-product-price {
  margin-bottom: 15px;
}

.techno-farm-old-price {
  text-decoration: line-through;
  color: var(--gray-color);
  font-size: 14px;
}

.techno-farm-current-price {
  color: var(--danger-color);
  font-size: 14px;
  font-weight: 700;
}

.techno-farm-add-to-cart-btn {
  display: block;
  width: 100%;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: all 0.3s ease;
}

.techno-farm-add-to-cart-btn:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}

/* 4. Best Selling Products Section */
.techno-farm-bestselling-products-section {
  padding: 50px 0;
  background-color: #f9fafb;
}

.techno-farm-bestseller-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

/* 5. Partners Section */
.techno-farm-partners-section {
  background-color: var(--primary-dark);
  overflow: hidden;
}

.techno-farm-partner-logo {
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.techno-farm-partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.techno-farm-partner-logo-image {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.techno-farm-partner-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.techno-farm-section-title-box {
  background: var(--primary-color);
  clip-path: url(#partners-clip-path);
  transform: scaleX(1.2) scaleY(1.1);
  -webkit-transform: scaleX(1.2) scaleY(1.1);
  -moz-transform: scaleX(1.2) scaleY(1.1);
  -ms-transform: scaleX(1.2) scaleY(1.1);
  -o-transform: scaleX(1.2) scaleY(1.1);
}
.techno-farm-section-title-col {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 5;
}
.techno-farm-partners-section .techno-farm-section-title {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 1.5846rem + 1.0769vw, 2.5rem);
}
.svg-partners-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
/* Particles Background */
.particles-container {
  overflow: hidden;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Modal Styles */
.partner-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.partner-modal-container {
  position: relative;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-modal-overlay.show .partner-modal-container {
  transform: scale(1) translateY(0);
}

.partner-modal-content {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.partner-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  color: #6b7280;
}

.partner-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #1f2937;
  transform: scale(1.1);
}

.partner-modal-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-bottom: 1px solid #e5e7eb;
}

.partner-modal-logo-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-modal-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.partner-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.partner-modal-body {
  padding: 2rem;
}

.partner-modal-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  text-align: justify;
}

.partner-modal-description p {
  margin-bottom: 1rem;
}

.partner-modal-description p:last-child {
  margin-bottom: 0;
}

/* Enhanced hover effect for partner logos */
.techno-farm-partner-logo {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.techno-farm-partner-logo:hover {
  transform: translateY(-5px);
}

.techno-farm-partner-logo:hover .techno-farm-partner-logo-image {
  box-shadow: rgba(4, 140, 70, 0.3) 0px 25px 50px -12px;
}

/* partners section end */
/* 6. Featured Projects Section */
.techno-farm-featured-projects-section {
  padding: 50px 0;
  background-color: #f9fafb;
}

.techno-farm-project-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  min-height: 100%;
}

.techno-farm-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.techno-farm-project-image:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.techno-farm-project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.28);
  color: var(--text-color);
  /* fill: rgba(255, 255, 255, 0.28); */
  backdrop-filter: blur(4.800000190734863px);
}

.techno-farm-project-overlay h3 {
  font-size: clamp(1rem, 0.9077rem + 0.4615vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 15px;
}

.techno-farm-project-overlay h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.techno-farm-btn-xs {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 11px;
  transition: all 0.3s ease;
}

.techno-farm-btn-xs:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}
.xem-chi-tiet-btn {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  text-align: right;
}
.icon-xem-chi-tiet {
  font-size: 7px;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  padding: 2px;
  margin-left: 5px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: translateY(-1px);
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
}

/* 7. News Section */
.techno-farm-news-section {
  padding: 50px 0;
}

.techno-farm-news-navigation {
  display: flex;
  gap: 10px;
}

.techno-farm-news-prev,
.techno-farm-news-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.techno-farm-news-prev:hover,
.techno-farm-news-next:hover {
  background-color: var(--secondary-color);
}

.techno-farm-news-card {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.techno-farm-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.techno-farm-news-image {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.techno-farm-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.techno-farm-news-card:hover .techno-farm-news-image img {
  transform: scale(1.05);
}
.techno-farm-news-info-box {
  position: relative;
  z-index: 5;
  margin-top: -20px;
}
.techno-farm-news-info-line-bg {
  position: absolute;
  z-index: 1;
  top: -20px;
  height: 100%;
  width: 90%;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  -webkit-transform: translateX(-50%) rotate(-3deg);
  -moz-transform: translateX(-50%) rotate(-3deg);
  -ms-transform: translateX(-50%) rotate(-3deg);
  -o-transform: translateX(-50%) rotate(-3deg);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.techno-farm-news-info {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px,
    rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.techno-farm-news-date {
  font-size: 14px;
  color: var(--gray-color);
  margin-bottom: 10px;
}

.techno-farm-news-title {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.techno-farm-news-title a {
  color: var(--text-color);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.techno-farm-news-title a:hover {
  color: var(--primary-color);
}

.techno-farm-news-excerpt {
  font-size: 14px;
  color: var(--gray-color);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.techno-farm-read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.techno-farm-read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.techno-farm-read-more:hover i {
  transform: translateX(3px);
}

.techno-farm-navigate {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.techno-farm-navigate.swiper-button-disabled {
  opacity: 0.5;
  visibility: hidden;
  pointer-events: none;
}
.techno-farm-navigate-prev {
  left: -25px;
}
.techno-farm-navigate-next {
  position: absolute;
  left: initial;
  right: -25px;
}

/* Enhanced Footer Section - Figma Design Implementation */
.techno-farm-enhanced-footer {
  position: relative;
  color: #ffffff;
  margin-top: 60px;
}

/* Wave Elements */
.techno-farm-footer-wave-yellow {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.techno-farm-footer-wave-green {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.techno-farm-footer-wave-yellow svg,
.techno-farm-footer-wave-green svg {
  width: 100%;
  height: 80px;
}

.techno-farm-footer-main {
  background-color: var(--primary-color);
  padding: 50px 0 40px;
  position: relative;
  z-index: 3;
}

/* Newsletter Section */
.techno-farm-newsletter-section {
}
.techno-farm-footer-logo {
  background: var(--white);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
}
.newsletter-title {
  color: var(--white);
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.1rem);
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  border-left: 5px solid var(--accent-color);
  text-align: left;
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

.techno-farm-footer-logo img {
  max-height: 50px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.techno-farm-footer-subscribe .input-group {
  background-color: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 400px;
}

.techno-farm-footer-subscribe .form-control {
  border: none;
  box-shadow: none;
  padding: 12px 20px;
  height: 45px;
  font-size: 14px;
}

.techno-farm-footer-subscribe .btn {
  background-color: var(--accent-color);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.techno-farm-footer-subscribe .btn:hover {
  background-color: #e97e0b;
  transform: translateY(-1px);
}

.techno-farm-footer-title {
  font-size: clamp(0.9rem, 0.8692rem + 0.1538vw, 1rem);
  font-weight: 600;
  position: relative;
  color: var(--white);
  border-left: 5px solid var(--accent-color);
  padding-left: 10px;
  text-align: left;
  padding-bottom: 0;
  text-transform: uppercase;
}

.techno-farm-footer-title i {
  color: var(--accent-color);
}

.techno-farm-footer-map {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.techno-farm-footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  pointer-events: all !important;
}

.techno-farm-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.techno-farm-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
}

.techno-farm-contact-info li i {
  margin-right: 8px;
  color: var(--accent-color);
  margin-top: 2px;
  width: 16px;
}

.techno-farm-contact-info li span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.techno-farm-copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

.techno-farm-copyright p {
  margin: 0;
  font-size: 14px;
}

.techno-farm-payment-methods {
  display: flex;
  justify-content: flex-end;
}
.zalo-text {
  font-size: 0.7rem;
}
.icon-footer {
  width: 27px;
  height: 27px;
  min-width: 27px;
  min-height: 27px;
  object-fit: contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
.techno-farm-enhanced-footer .techno-farm-contact-info li i {
  color: var(--primary-color);
  font-size: 12px;
}
.techno-farm-copyright {
  background: var(--primary-dark);
  color: var(--white);
  font-size: clamp(0.85rem, 0.8038rem + 0.2308vw, 1rem);
}
.techno-farm-copyright a {
  color: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.techno-farm-copyright a:hover {
  opacity: 0.8;
}
/* PRODUCTS PAGE SPECIFIC STYLES */

/* Products Page Layout */
.techno-farm-products-page {
  padding: 30px 0 60px;
  background-color: #f9fafb;
}

/* Breadcrumb */
.techno-farm-breadcrumb {
  padding: 15px 0;
}

.techno-farm-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.techno-farm-breadcrumb a:hover {
  text-decoration: underline;
}

/* Products Sidebar */
.techno-farm-products-sidebar {
  border-radius: 5px;
  margin-bottom: 30px;
}

/* Sidebar Categories */
.techno-farm-sidebar-categories {
  margin-bottom: 30px;
}

.techno-farm-sidebar-title {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 15px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.techno-farm-category-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.techno-farm-category-menu-item {
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.techno-farm-category-menu-item.has-submenu:hover .techno-farm-category-submenu,
.techno-farm-category-menu-subitem.has-submenu:hover
  .techno-farm-category-submenu-level-2 {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.techno-farm-category-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  text-decoration: none;
  color: var(--dark-color);
  transition: all 0.3s ease;
  background: #ffffff;
}

.techno-farm-category-link:hover {
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
}

.techno-farm-category-link img,
.techno-farm-category-link i {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.techno-farm-category-link span {
  flex: 1;
}

.techno-farm-category-link .fa-chevron-right {
  margin-left: auto;
  margin-right: 0;
  width: auto;
  height: auto;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.techno-farm-category-menu-item.has-submenu:hover
  > .techno-farm-category-link
  .fa-chevron-right {
  transform: rotate(90deg);
}

/* Submenu styles */
.techno-farm-category-submenu,
.techno-farm-category-submenu-level-2 {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 5px 0;
  margin: 0;
}

.techno-farm-category-submenu-level-2 {
  left: 100%;
  top: 0;
}

.techno-farm-category-submenu li,
.techno-farm-category-submenu-level-2 li {
  border-bottom: 1px solid var(--border-color);
}

.techno-farm-category-submenu li:last-child,
.techno-farm-category-submenu-level-2 li:last-child {
  border-bottom: none;
}

.techno-farm-category-submenu .techno-farm-category-link,
.techno-farm-category-submenu-level-2 a {
  padding: 10px 15px;
  display: block;
  color: var(--dark-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  background: transparent;
}

.techno-farm-category-submenu .techno-farm-category-link:hover,
.techno-farm-category-submenu-level-2 a:hover {
  background: var(--primary-color);
  color: #ffffff;
  padding-left: 20px;
}

/* Active states for category menu */
.techno-farm-category-menu-item.active > .techno-farm-category-link,
.techno-farm-category-menu-subitem.active > .techno-farm-category-link {
  background: var(--primary-color);
  color: #ffffff;
}
.techno-farm-category-menu-item.active > .techno-farm-category-link {
  color: var(--white) !important;
}
.techno-farm-category-menu-item.active > .techno-farm-category-link img {
  filter: invert(1) grayscale(100%) brightness(200%);
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
}
.techno-farm-category-menu .active a {
  color: #ffffff;
}
.techno-farm-category-menu .active a.techno-farm-category-link {
  color: var(--dark-color);
}
/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .techno-farm-category-submenu,
  .techno-farm-category-submenu-level-2 {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--primary-color);
    margin-left: 20px;
    display: none;
  }

  .techno-farm-category-menu-item.has-submenu:hover
    .techno-farm-category-submenu,
  .techno-farm-category-menu-subitem.has-submenu:hover
    .techno-farm-category-submenu-level-2 {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* Ensure menu icons are properly sized */
.menu-icon-sidebar {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
}

/* Brand Logos Section */
.techno-farm-brand-logos {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.techno-farm-brand-list {
  padding: 15px;
}

.techno-farm-brand-item {
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.techno-farm-brand-item:last-child {
  margin-bottom: 0;
}

.techno-farm-brand-item:hover {
  transform: translateY(-2px);
}

.techno-farm-brand-logo {
  max-height: 40px;
  width: auto;
}

/* Brand Specific Styles */
.techno-farm-brand-duran {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066cc;
  font-weight: 600;
  font-size: 16px;
}

.techno-farm-brand-duran i {
  margin-right: 5px;
  font-size: 18px;
}

.techno-farm-brand-navis {
  color: #333;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

.techno-farm-brand-vwr {
  color: #e31e24;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
}

.techno-farm-brand-alpha {
  text-align: center;
  color: #0066cc;
}

.techno-farm-brand-alpha i {
  display: block;
  font-size: 24px;
  margin-bottom: 5px;
}

.techno-farm-brand-alpha span {
  display: block;
  font-weight: 700;
  font-size: 16px;
}

.techno-farm-brand-alpha small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 2px;
}

.techno-farm-brand-clearsynth {
  text-align: center;
  color: #333;
}

.techno-farm-brand-dots {
  margin-bottom: 5px;
}

.techno-farm-brand-dots .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  margin: 0 2px;
}

.techno-farm-brand-clearsynth span {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #22c55e;
}

.techno-farm-brand-clearsynth small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 2px;
  color: var(--gray-color);
}

/* Products Content */
.techno-farm-products-content {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Product Grid */
.techno-farm-product-grid {
  margin-bottom: 40px;
}

/* Product Card Styles for Products Page */

.techno-farm-products-page .techno-farm-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.techno-farm-product-category {
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
}

.techno-farm-products-page .techno-farm-product-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
  line-height: 1.3;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.techno-farm-products-page .techno-farm-product-price {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.techno-farm-products-page .techno-farm-old-price {
  text-decoration: line-through;
  color: var(--gray-color);
  font-size: 14px;
}

.techno-farm-products-page .techno-farm-current-price {
  color: var(--danger-color);
  font-size: 14px;
  font-weight: 700;
}

.techno-farm-products-page .techno-farm-add-to-cart-btn {
  display: block;
  width: 100%;
  background-color: #e5e7eb;
  color: var(--gray-color);
  padding: 8px 15px;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.techno-farm-products-page .techno-farm-add-to-cart-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Pagination */
.techno-farm-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.techno-farm-pagination-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.techno-farm-pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.techno-farm-pagination-dot:hover {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.techno-farm-pagination-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

/* PRODUCT DETAIL PAGE SPECIFIC STYLES */

/* Product Detail Layout */
.techno-farm-product-detail {
  padding: 30px 0 60px;
  background-color: #f9fafb;
}

/* Breadcrumb for Product Detail */
.techno-farm-product-detail .techno-farm-breadcrumb {
  padding: 15px 0;
  color: var(--gray-color);
}

.techno-farm-product-detail .techno-farm-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.techno-farm-product-detail .techno-farm-breadcrumb a:hover {
  text-decoration: underline;
}

/* Thumbnail Swiper */
.techno-farm-thumb-swiper-container {
  position: relative;
  height: 400px;
  margin-bottom: 20px;
}

.techno-farm-thumb-swiper {
  height: 100%;
  width: 100%;
}

.techno-farm-thumb-swiper .swiper-slide {
  height: auto;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.techno-farm-thumb-swiper .swiper-slide:hover {
  border-color: var(--primary-color);
}

.techno-farm-thumb-swiper .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--primary-color);
  box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
}

.techno-farm-thumb-swiper .swiper-slide img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
}

/* Thumbnail Navigation */
.techno-farm-thumb-nav {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.techno-farm-thumb-prev,
.techno-farm-thumb-next {
  width: 25px;
  height: 25px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
}

.techno-farm-thumb-prev:hover,
.techno-farm-thumb-next:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

/* Main Product Swiper */
.techno-farm-main-swiper-container {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.techno-farm-main-swiper {
  height: 400px;
}

.techno-farm-product-main-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.techno-farm-product-main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Product Overlay */
.techno-farm-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1) 0%,
    rgba(5, 150, 105, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.techno-farm-overlay-content h3 {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.techno-farm-contact-banner {
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
}

/* Main Swiper Pagination */
.techno-farm-main-swiper .swiper-pagination {
  bottom: 15px;
}

.techno-farm-main-swiper .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.7;
  width: 10px;
  height: 10px;
}

.techno-farm-main-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  opacity: 1;
}

/* Product Information Panel */

/* Product Category Badge */
.techno-farm-product-category-badge {
  margin-bottom: 15px;
}

.techno-farm-product-category-badge span {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Product Title */
.techno-farm-product-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Brand Information */
.techno-farm-brand-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.techno-farm-brand-label {
  font-weight: 600;
  margin-right: 15px;
  color: var(--dark-color);
}

.techno-farm-brand-logo img {
  max-height: 30px;
  width: auto;
}

/* Product Details */
.techno-farm-product-details {
  margin-bottom: 25px;
}

.techno-farm-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.techno-farm-detail-label {
  font-weight: 500;
  color: var(--gray-color);
}

.techno-farm-detail-value {
  font-weight: 600;
  color: var(--dark-color);
}

.techno-farm-contact-price {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}

/* Product Options */
.techno-farm-product-options {
  margin-bottom: 25px;
}

.techno-farm-option-group {
  margin-bottom: 15px;
}

.techno-farm-option-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.techno-farm-option-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 14px;
  color: var(--dark-color);
}

.techno-farm-option-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

/* Product Tags */
.techno-farm-product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.techno-farm-tag {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* Quantity Section */
.techno-farm-quantity-section {
  margin-bottom: 25px;
}

.techno-farm-quantity-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.techno-farm-quantity-controls {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.techno-farm-qty-btn {
  width: 35px;
  height: 35px;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.techno-farm-qty-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.techno-farm-qty-input {
  width: 60px;
  height: 35px;
  border: none;
  text-align: center;
  font-weight: 600;
  color: var(--dark-color);
}

.techno-farm-qty-input:focus {
  outline: none;
}

/* Action Buttons */
.techno-farm-action-buttons {
  margin-bottom: 30px;
}

.techno-farm-add-to-cart-btn {
  width: 100%;
  background-color: #e5e7eb;
  color: var(--dark-color);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.techno-farm-add-to-cart-btn:hover {
  background-color: #e97e0b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.techno-farm-contact-btn {
  width: 100%;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.techno-farm-contact-btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Service Promises */
.techno-farm-service-promises {
  margin-bottom: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.techno-farm-promise-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.techno-farm-promise-item:last-child {
  margin-bottom: 0;
}

.techno-farm-promise-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.techno-farm-promise-content p {
  font-size: 12px;
  color: var(--gray-color);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Social Sharing */
.techno-farm-social-sharing {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.techno-farm-share-label {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px;
}

.techno-farm-share-buttons {
  display: flex;
  gap: 8px;
}

.techno-farm-share-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.techno-farm-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.techno-farm-share-btn.linkedin {
  background-color: #0077b5;
}

.techno-farm-share-btn.twitter {
  background-color: #000000;
}

.techno-farm-share-btn.facebook {
  background-color: #1877f2;
}

.techno-farm-share-btn.telegram {
  background-color: #0088cc;
}

/* Product Description Section */
.techno-farm-product-description {
  padding: 60px 0;
  background-color: #ffffff;
}

.techno-farm-description-content {
  margin-bottom: 40px;
}

.techno-farm-description-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.techno-farm-description-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-color);
  margin-bottom: 20px;
}

/* Specifications Table */
.techno-farm-specifications {
  margin-top: 40px;
}

.techno-farm-specifications h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.techno-farm-spec-table {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.techno-farm-spec-table thead th {
  background-color: var(--primary-color);
  color: #ffffff;
  font-weight: 600;
  padding: 15px;
  border: none;
}

.techno-farm-spec-table tbody td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.techno-farm-spec-table tbody tr:last-child td {
  border-bottom: none;
}

.techno-farm-spec-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

/* Related Products Section */
.techno-farm-related-products {
  padding: 60px 0;
  background-color: #f9fafb;
}

/* Custom column for 5 items per row */
.col-xl-2-4 {
  width: 20%;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
}

.techno-farm-product-image {
  overflow: hidden;
  background: var(--white);
}
.techno-farm-product-image a,
.techno-farm-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.techno-farm-product-image:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.techno-farm-product-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.techno-farm-category-image {
  overflow: hidden;
  background: var(--white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.techno-farm-category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.techno-farm-category-image:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.svg-wave-footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.footer-wave-yellow {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 130px;
  background: var(--accent-color);
  clip-path: url(#wave-clip-path);
}
.footer-wave-green {
  position: absolute;
  z-index: 3;
  bottom: -39px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  clip-path: url(#wave-green-clip-path);
  transform: rotate(3deg) scaleX(1.1);
}

.techno-farm-sidebar-title-label {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}
.techno-farm-brand-item img {
  max-width: 250px;
  margin: 0 auto;
}

.techno-farm-breadcrumb-wrapper {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-color: var(--primary-color);
  background-image: var(--background-banner);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-attachment: fixed;
}
.techno-farm-breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.techno-farm-breadcrumb-wrapper .container {
  position: relative;
  z-index: 5;
}

.techno-farm-breadcrumb a,
.techno-farm-breadcrumb {
  color: var(--white);
  font-size: clamp(1rem, 0.9077rem + 0.4615vw, 1.3rem) !important;
}
.techno-farm-breadcrumb a {
  color: var(--white) !important;
}
.techno-farm-breadcrumb span {
  color: var(--primary-color) !important;
  filter: brightness(150%);
  -webkit-filter: brightness(150%);
  font-weight: 700;
}

/* sản phẩm chi tiết start */
/* Product Detail Styles */
.san-pham-detail .techno-farm-product-detail {
  padding: 30px 0;
}

.san-pham-detail .techno-farm-thumb-swiper-container {
  height: 400px;
  position: relative;
}

.san-pham-detail .techno-farm-thumb-swiper {
  height: 100%;
}

.san-pham-detail .techno-farm-thumb-swiper img {
  object-fit: contain;
}
.san-pham-detail .techno-farm-thumb-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.san-pham-detail .techno-farm-thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

.san-pham-detail .techno-farm-thumb-nav {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.san-pham-detail .techno-farm-thumb-prev,
.san-pham-detail .techno-farm-thumb-next {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.san-pham-detail .techno-farm-thumb-prev:hover,
.san-pham-detail .techno-farm-thumb-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.san-pham-detail .techno-farm-main-swiper-container {
  position: relative;
}

.san-pham-detail .techno-farm-main-swiper {
  height: 100%;
}

.san-pham-detail .techno-farm-product-main-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.san-pham-detail .techno-farm-product-main-image img,
.san-pham-detail .techno-farm-product-main-image a {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.san-pham-detail .techno-farm-product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.san-pham-detail .techno-farm-overlay-content h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.san-pham-detail .techno-farm-contact-banner {
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.san-pham-detail .techno-farm-product-info {
  padding-left: 0px;
}

.san-pham-detail .techno-farm-product-category-badge {
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.san-pham-detail .techno-farm-product-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.san-pham-detail .techno-farm-brand-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.san-pham-detail .techno-farm-brand-label {
  font-weight: 600;
  color: var(--dark-color);
}

.san-pham-detail .techno-farm-product-details {
  margin-bottom: 25px;
}

.san-pham-detail .techno-farm-detail-row {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.san-pham-detail .techno-farm-detail-label {
  font-weight: 600;
  color: var(--dark-color);
}

.san-pham-detail .techno-farm-detail-value {
  font-weight: 500;
}

.san-pham-detail .techno-farm-contact-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
  background: transparent;
}

.san-pham-detail .current-price {
  color: var(--primary-color);
  font-weight: 700;
}

.san-pham-detail .original-price {
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
  font-size: 14px;
}

.san-pham-detail .techno-farm-product-options {
  margin-bottom: 25px;
}

.san-pham-detail .techno-farm-option-group {
  margin-bottom: 15px;
}

.san-pham-detail .techno-farm-option-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.san-pham-detail .techno-farm-option-select {
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  background: white;
}

.san-pham-detail .techno-farm-product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.san-pham-detail .techno-farm-tag {
  background: #f8f9fa;
  color: var(--dark-color);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #ddd;
}

.san-pham-detail .techno-farm-quantity-section {
  margin-bottom: 25px;
}

.san-pham-detail .techno-farm-quantity-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.san-pham-detail .techno-farm-quantity-controls {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: none;
}

.san-pham-detail .techno-farm-qty-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.san-pham-detail .techno-farm-qty-minus {
  border-radius: 5px 0 0 5px;
}

.san-pham-detail .techno-farm-qty-plus {
  border-radius: 0 5px 5px 0;
}

.san-pham-detail .techno-farm-qty-btn:hover {
  background: var(--primary-color);
  color: white;
}

.san-pham-detail .techno-farm-qty-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: none;
  border-right: none;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
}

.san-pham-detail .techno-farm-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.san-pham-detail .techno-farm-add-to-cart-btn,
.san-pham-detail .techno-farm-contact-btn {
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.san-pham-detail .techno-farm-add-to-cart-btn {
  background: var(--accent-color);
  color: var(--white);
}

.san-pham-detail .techno-farm-add-to-cart-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.san-pham-detail .techno-farm-contact-btn {
  background: #28a745;
  color: white;
}

.san-pham-detail .techno-farm-contact-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

.san-pham-detail .techno-farm-service-promises {
  margin-bottom: 25px;
}

.san-pham-detail .techno-farm-promise-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.san-pham-detail .techno-farm-promise-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.san-pham-detail .techno-farm-promise-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.san-pham-detail .techno-farm-promise-content h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.san-pham-detail .techno-farm-promise-content p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.san-pham-detail .techno-farm-social-sharing {
  display: flex;
  align-items: center;
  gap: 15px;
}

.san-pham-detail .techno-farm-share-label {
  font-weight: 600;
  color: var(--dark-color);
}

.san-pham-detail .techno-farm-share-buttons {
  display: flex;
  gap: 10px;
}

.san-pham-detail .techno-farm-share-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.san-pham-detail .techno-farm-share-btn:hover {
  transform: translateY(-2px);
}

.san-pham-detail .techno-farm-share-btn.linkedin {
  background: #0077b5;
}
.san-pham-detail .techno-farm-share-btn.twitter {
  background: #1da1f2;
}
.san-pham-detail .techno-farm-share-btn.facebook {
  background: #1877f2;
}
.san-pham-detail .techno-farm-share-btn.telegram {
  background: #0088cc;
}

.san-pham-detail .techno-farm-product-description {
  padding: 50px 0;
  background: #f8f9fa;
}

.san-pham-detail .techno-farm-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 30px;
  text-align: center;
}

.san-pham-detail .techno-farm-description-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.san-pham-detail .techno-farm-specifications {
  margin-top: 40px;
}

.san-pham-detail .techno-farm-specifications h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.san-pham-detail .techno-farm-related-products {
  padding: 50px 0;
}
.techno-farm-thumb-swiper .swiper-slide {
  background: var(--white);
}
.techno-farm-product-description-box {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.san-pham-detail
  .techno-farm-swiper-pagination.swiper-pagination-clickable
  .swiper-pagination-bullet {
  background: #333;
  opacity: 0.8;
}
.san-pham-detail
  .techno-farm-swiper-pagination.swiper-pagination-clickable
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-dark);
  opacity: 1;
}
/* sản phẩm chi tiết end */

/* trang liên hệ start */
/* Contact Page Styles */
.hydrosite-regenmed-contact-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

body.lien-he .hydrosite-regenmed-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* Contact Hero Section */
.hydrosite-regenmed-contact-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0ea5af 100%);
  position: relative;
  overflow: hidden;
}

.hydrosite-regenmed-contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, 20px);
  }
}

.hydrosite-regenmed-contact-hero-content {
  position: relative;
  z-index: 2;
}

.hydrosite-regenmed-hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hydrosite-regenmed-hero-icon i {
  font-size: 2rem;
  color: white;
}

.hydrosite-regenmed-contact-hero-title {
  font-size: 3rem;
  font-weight: initial;
  font-family: lato-black;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hydrosite-regenmed-contact-hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item:nth-child(1) {
  animation-delay: 0.1s;
}
.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item:nth-child(2) {
  animation-delay: 0.2s;
}
.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item:nth-child(3) {
  animation-delay: 0.3s;
}
.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item.animate {
  animation: statPulse 2s ease infinite;
}

.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item i {
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item strong {
  font-size: 1.5rem;
  font-weight: initial;
  font-family: lato-black;
  color: white;
  display: block;
  margin-bottom: 0.25rem;
}

.hydrosite-regenmed-hero-stats .hydrosite-regenmed-stat-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes statPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Contact Content */
.hydrosite-regenmed-contact-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

/* Contact Info */
.hydrosite-regenmed-contact-info-wrapper {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(16, 174, 186, 0.1);
  border: 1px solid rgba(16, 174, 186, 0.1);
  position: relative;
  overflow: hidden;
}

.hydrosite-regenmed-contact-info-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-color);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.hydrosite-regenmed-contact-info-title {
  font-size: 1.5rem;
  font-weight: initial;
  font-family: lato-black;
  color: #2d3748;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hydrosite-regenmed-contact-info-title i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.hydrosite-regenmed-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.hydrosite-regenmed-contact-info-item:last-child {
  border-bottom: none;
}

.hydrosite-regenmed-contact-info-item:hover {
  transform: translateX(10px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(16, 174, 186, 0.05) 100%
  );
  border-radius: 12px;
  margin: 0 -1rem;
  padding: 1.5rem 1rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.25rem;
  color: white;
}

.contact-info-content h5 {
  font-size: 1.1rem;
  font-weight: initial;
  font-family: lato-b;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
}

.contact-info-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: #0ea5af;
  text-decoration: underline;
}

/* Social Links */
.hydrosite-regenmed-contact-social-wrapper {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.hydrosite-regenmed-contact-social-title {
  font-size: 1.1rem;
  font-weight: initial;
  font-family: lato-b;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hydrosite-regenmed-contact-social-title i {
  color: var(--primary-color);
}

.hydrosite-regenmed-contact-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-social-link {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-social-link:hover::before {
  opacity: 1;
}

.contact-social-link i {
  font-size: 1.25rem;
  color: white;
  position: relative;
  z-index: 2;
}

.contact-social-link.facebook {
  background: linear-gradient(135deg, #3b5998, #2d4373);
}

.contact-social-link.instagram {
  background: linear-gradient(135deg, #e4405f, #fd1d1d, #fcb045);
}

.contact-social-link.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.contact-social-link.linkedin {
  background: linear-gradient(135deg, #0077b5, #005582);
}

.contact-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.hydrosite-regenmed-contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(16, 174, 186, 0.1);
  border: 1px solid rgba(16, 174, 186, 0.1);
  position: relative;
  overflow: hidden;
}

.hydrosite-regenmed-contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-color);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

.hydrosite-regenmed-contact-form-header {
  margin-bottom: 2rem;
}

.hydrosite-regenmed-contact-form-title {
  font-size: 1.5rem;
  font-weight: initial;
  font-family: lato-black;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hydrosite-regenmed-contact-form-title i {
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.hydrosite-regenmed-contact-form-description {
  color: #4a5568;
  margin: 0;
  line-height: 1.6;
}

/* Form Groups */
.hydrosite-regenmed-form-group {
  position: relative;
  margin-bottom: 0;
}

.hydrosite-regenmed-form-group.focused .hydrosite-regenmed-form-label {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hydrosite-regenmed-form-group.error .hydrosite-regenmed-form-control {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.hydrosite-regenmed-form-group.error .hydrosite-regenmed-form-label {
  color: #e53e3e;
}

.hydrosite-regenmed-form-label {
  display: block;
  font-weight: initial;
  font-family: lato-b;
  color: #2d3748;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hydrosite-regenmed-form-label i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.hydrosite-regenmed-form-label .required {
  color: #e53e3e;
  font-weight: initial;
  font-family: lato-black;
}

.hydrosite-regenmed-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #2d3748;
}

.hydrosite-regenmed-form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(16, 174, 186, 0.1);
}

.hydrosite-regenmed-form-control::placeholder {
  color: #a0aec0;
}

.hydrosite-regenmed-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Radio Groups */
.hydrosite-regenmed-radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.hydrosite-regenmed-radio-item {
  position: relative;
}

.hydrosite-regenmed-radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.hydrosite-regenmed-radio-item label {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: initial;
  position: relative;
  background: white;
}

.hydrosite-regenmed-radio-item label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hydrosite-regenmed-radio-item input[type="radio"]:checked + label {
  border-color: var(--primary-color);
  background: linear-gradient(
    135deg,
    rgba(16, 174, 186, 0.05),
    rgba(16, 174, 186, 0.1)
  );
  color: var(--primary-color);
}

.hydrosite-regenmed-radio-item input[type="radio"]:checked + label::before {
  border-color: var(--primary-color);
  background: var(--primary-color);
  box-shadow: inset 0 0 0 3px white;
}

.hydrosite-regenmed-radio-item label:hover {
  border-color: var(--primary-color);
  background: rgba(16, 174, 186, 0.05);
}

/* Submit Button */
.hydrosite-regenmed-form-submit {
  text-align: center;
  margin-top: 1rem;
}

.hydrosite-regenmed-submit-btn {
  background: var(--gradient-color);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: initial;
  font-family: lato-b;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.hydrosite-regenmed-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hydrosite-regenmed-submit-btn:hover::before {
  left: 100%;
}

.hydrosite-regenmed-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 174, 186, 0.3);
}

.hydrosite-regenmed-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.hydrosite-regenmed-submit-btn i {
  margin-right: 0.5rem;
}

/* Alert Messages */
.hydrosite-regenmed-contact-message {
  margin-top: 1.5rem;
}

.hydrosite-regenmed-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: initial;
  font-family: var(--title-font);
  animation: slideIn 0.3s ease;
}

.hydrosite-regenmed-alert-success {
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1),
    rgba(34, 197, 94, 0.05)
  );
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #059669;
}

.hydrosite-regenmed-alert-error {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(239, 68, 68, 0.05)
  );
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.hydrosite-regenmed-alert i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.alert-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  color: inherit;
}

.alert-close:hover {
  opacity: 1;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Map Section */
.hydrosite-regenmed-contact-map-section {
  background: white;
}

.hydrosite-regenmed-map-header {
  margin-bottom: 3rem;
}

.hydrosite-regenmed-map-title {
  font-size: 2rem;
  font-weight: initial;
  font-family: lato-black;
  color: #2d3748;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hydrosite-regenmed-map-title i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.hydrosite-regenmed-map-description {
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.hydrosite-regenmed-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 174, 186, 0.1);
  border: 1px solid rgba(16, 174, 186, 0.1);
}

.hydrosite-regenmed-map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* trang liên hệ end */

/* TRANG TIN TỨC START */
/* ===================================
   NEWS PAGE STYLES
   =================================== */

/* News Hero Section */
.hydrosite-encorise-news-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1a1a1a;
}

.hydrosite-encorise-news-hero .hydrosite-encorise-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hydrosite-encorise-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  min-width: 120px;
}

.stat-number {
  font-family: var(--font-play);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.3462rem + 0.7692vw, 2rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

/* News Filter Section */
.hydrosite-encorise-news-filter {
  padding: 30px 0;
  background: rgba(11, 148, 68, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.hydrosite-encorise-filter-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hydrosite-encorise-filter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.hydrosite-encorise-search-box {
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.hydrosite-encorise-search-input {
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
  flex: 1;
}

.hydrosite-encorise-search-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hydrosite-encorise-search-btn:hover {
  background: var(--secondary-color);
}

.hydrosite-encorise-filter-results {
  text-align: center;
  color: var(--dark-color);
  font-size: 14px;
}

/* Featured News Section */
.hydrosite-encorise-featured-news {
  padding: 60px 0;
}

.hydrosite-encorise-featured-article {
  margin-bottom: 20px;
}

.hydrosite-encorise-article-image {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}

.hydrosite-encorise-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hydrosite-encorise-article-category {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.category-tag {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-tag.technology {
  background: var(--gradient-color);
}

.category-tag.projects {
  background: linear-gradient(135deg, var(--primary-color), #27ae60);
}

.category-tag.industry {
  background: linear-gradient(135deg, #e67e22, #d35400);
}

.category-tag.environment {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.hydrosite-encorise-article-content {
  padding: 25px;
}

.hydrosite-encorise-article-title {
  font-family: var(--font-play);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-color);
  line-height: 1.3;
  margin-bottom: 12px;
}

.hydrosite-encorise-article-excerpt {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hydrosite-encorise-article-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}

.meta-item i {
  color: var(--primary-color);
}

/* Trending News */
.hydrosite-encorise-trending-news {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 150px;
}

.trending-title {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  text-align: center;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trending-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.trending-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trending-image {
  flex-shrink: 0;
  width: 70px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
}

.trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trending-content {
  flex: 1;
}

.trending-title-small {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
}

/* News Grid Section */
.hydrosite-encorise-news-grid {
  padding: 50px 0 100px;
}

.hydrosite-encorise-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.hydrosite-encorise-view-toggle {
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 5px;
}
.filter-label i {
  color: var(--primary-color);
  margin-right: 5px;
}
.view-btn {
  background: transparent;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-content: center;
}

.view-btn.active,
.view-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.hydrosite-encorise-news-item {
  margin-bottom: 30px;
}

.hydrosite-encorise-news-card {
  height: 100%;
  background: var(--white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  overflow: hidden;
}

.hydrosite-encorise-news-card:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.hydrosite-encorise-news-image {
  position: relative;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}

.hydrosite-encorise-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hydrosite-encorise-news-card:hover .hydrosite-encorise-news-image img {
  transform: scale(1.05);
}

.hydrosite-encorise-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
  pointer-events: none;
}

.news-category {
  margin-top: auto;
}

.hydrosite-encorise-news-content {
  padding: 25px;
  padding-top: 0;
}

.tin-tuc .hydrosite-encorise-news-title {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark-color);
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tin-tuc .hydrosite-encorise-news-title a {
  color: var(--text-dark);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}
.tin-tuc .hydrosite-encorise-news-title a:hover {
  color: var(--primary-color);
}

.hydrosite-encorise-news-excerpt {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hydrosite-encorise-news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

/* Newsletter Section */
.hydrosite-encorise-newsletter {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.1) 0%,
    rgba(224, 162, 19, 0.1) 100%
  );
}

.tin-tuc .newsletter-title {
  font-family: var(--font-play);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.tin-tuc .newsletter-subtitle {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  margin-bottom: 30px;
}

.tin-tuc .hydrosite-encorise-newsletter-form .form-group {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.tin-tuc .newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.tin-tuc .newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* List View Styles */
.hydrosite-encorise-news-container.list-view .hydrosite-encorise-news-item {
  margin-bottom: 20px;
}

.hydrosite-encorise-news-container.list-view .hydrosite-encorise-news-card {
  display: flex;
  align-items: center;
}

.hydrosite-encorise-news-container.list-view .hydrosite-encorise-glass-frame {
  display: flex;
  padding: 20px;
}

.hydrosite-encorise-news-container.list-view .hydrosite-encorise-news-image {
  width: 200px;
  height: 150px;
  margin-bottom: 0;
  margin-right: 25px;
  flex-shrink: 0;
}

.hydrosite-encorise-news-container.list-view .hydrosite-encorise-news-content {
  flex: 1;
  padding: 0;
}
.tin-tuc .hydrosite-encorise-glass-panel {
  background: var(--white);
}
.tin-tuc .hydrosite-encorise-filter-controls {
  display: flex;
  justify-content: start;
  gap: 20px;
}
.tin-tuc .hydrosite-encorise-filter-select,
.tin-tuc .hydrosite-encorise-sort-select {
  width: 100%;
}
.tin-tuc .news-container.list-view .hydrosite-encorise-glass-frame {
  display: flex;
  flex-wrap: nowrap;
}
.tin-tuc .news-container.list-view .news-category {
  margin-top: 0px;
}
.tin-tuc .news-container.list-view .hydrosite-encorise-news-excerpt {
  color: var(--text-dark);
}
/* Glass Panels */
.hydrosite-encorise-glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hydrosite-encorise-glass-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}

/* Product Overview Section */
.hydrosite-encorise-product-overview {
  padding: 70px 0;
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.05) 0%,
    rgba(224, 162, 19, 0.05) 100%
  );
}

.hydrosite-encorise-features-list {
  margin: 30px 0;
}

.hydrosite-encorise-features-list h3 {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.hydrosite-encorise-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hydrosite-encorise-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hydrosite-encorise-features-list li i {
  color: var(--primary-color);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.hydrosite-encorise-cta-section {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hydrosite-encorise-btn-primary,
.hydrosite-encorise-btn-secondary,
.hydrosite-encorise-btn-outline {
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.hydrosite-encorise-btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}

.hydrosite-encorise-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(11, 148, 68, 0.3);
}

.hydrosite-encorise-btn-secondary {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--dark-color);
}

.hydrosite-encorise-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hydrosite-encorise-btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.hydrosite-encorise-btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Specifications Panel */
.hydrosite-encorise-specs-panel {
  position: sticky;
  top: 80px;
}

.specs-title {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  text-align: center;
}

.hydrosite-encorise-specs-list {
  margin-bottom: 30px;
}
/* Filter Panel with Glassmorphism */
.hydrosite-encorise-products-filter {
  padding: 30px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0px;
  z-index: 100;
}

.hydrosite-encorise-filter-panel {
  /* background: rgba(255, 255, 255, 0.1); */
  background: var(--white);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hydrosite-encorise-filter-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.hydrosite-encorise-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hydrosite-encorise-filter-item label {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px;
  white-space: nowrap;
  margin: 0;
}

.hydrosite-encorise-filter-select,
.hydrosite-encorise-sort-select {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--dark-color);
  font-size: 14px;
  min-width: 140px;
  transition: all 0.3s ease;
  border-color: rgba(0, 0, 0, 0.3);
}

.hydrosite-encorise-filter-select:focus,
.hydrosite-encorise-sort-select:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(11, 148, 68, 0.1);
}

.hydrosite-encorise-sort-group {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

/* Featured Product Spotlight */
.hydrosite-encorise-featured-product {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.05) 0%,
    rgba(224, 162, 19, 0.05) 100%
  );
}

.hydrosite-encorise-featured-spotlight {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hydrosite-encorise-featured-spotlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.hydrosite-encorise-featured-badge {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
}

.hydrosite-encorise-featured-title {
  font-family: var(--font-play);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.hydrosite-encorise-featured-description {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hydrosite-encorise-featured-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.hydrosite-encorise-featured-specs li {
  padding: 8px 0;
  font-size: 16px;
  color: var(--dark-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
/* banner start */
/* Project Hero Section */
.hydrosite-encorise-project-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hydrosite-encorise-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--background-banner);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hydrosite-encorise-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hydrosite-encorise-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hydrosite-encorise-project-hero .hydrosite-encorise-hero-title {
  font-family: var(--font-play);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  background: linear-gradient(45deg, var(--white), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  text-transform: uppercase;
}

/* Breadcrumb Navigation */
.hydrosite-encorise-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.hydrosite-encorise-breadcrumb-item {
  position: relative;
  padding: 12px 30px;
  font-family: var(--font-play);
  font-size: clamp(0.9rem, 0.8385rem + 0.3077vw, 1.1rem);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0;
  color: var(--white);
  text-transform: capitalize;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.hydrosite-encorise-breadcrumb-item:first-child {
  background: var(--primary-color);
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 50%,
    calc(100% - 20px) 100%,
    0 100%
  );
  margin-right: -10px;
  z-index: 2;
}

.hydrosite-encorise-breadcrumb-item.active {
  background: var(--secondary-color);
  clip-path: polygon(0px 0, 100% 0, 100% 100%, 0 100%, 20px 50%);
  margin-left: -10px;
  z-index: 1;
}

.hydrosite-encorise-breadcrumb-separator {
  display: none;
}
a.hydrosite-encorise-breadcrumb-item:hover {
  color: rgba(255, 255, 255, 0.8);
}
/* banner end */

/* Pagination */
.tin-tuc .hydrosite-encorise-pagination {
  background: var(--white);
  padding: 40px 0 80px;
}

.tin-tuc .hydrosite-encorise-pagination-nav {
  display: flex;
  justify-content: center;
}

.tin-tuc .hydrosite-encorise-pagination-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tin-tuc .hydrosite-encorise-pagination-item {
  margin: 0;
}

.tin-tuc .hydrosite-encorise-pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow);
  border: 2px solid transparent;
}

.tin-tuc .hydrosite-encorise-pagination-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 148, 68, 0.3);
  border-color: var(--primary-color);
}

.tin-tuc .hydrosite-encorise-pagination-link.active {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  box-shadow: 0 8px 25px rgba(11, 148, 68, 0.4);
  border-color: var(--primary-color);
}

.tin-tuc .hydrosite-encorise-pagination-link.prev,
.hydrosite-encorise-pagination-link.next {
  background: var(--background-light);
  border-color: rgba(11, 148, 68, 0.2);
}

.tin-tuc .hydrosite-encorise-pagination-link.prev:hover,
.tin-tuc .hydrosite-encorise-pagination-link.next:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.tin-tuc .hydrosite-encorise-pagination-item .pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--dark-color);
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 16px;
}

/* TRANG TIN TỨC END */

/* trang tin tức chi tiết start */
/* TRANG TIN TỨC CHI TIẾT START */
/* ===================================
   NEWS DETAIL PAGE STYLES
   =================================== */

/* News Detail Hero Section */
.hydrosite-encorise-news-detail-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hydrosite-encorise-news-detail-hero .hydrosite-encorise-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
  transform: scale(1.1);
  transition: transform 0.5s ease-out;
  -webkit-transition: transform 0.5s ease-out;
  -moz-transition: transform 0.5s ease-out;
  -ms-transition: transform 0.5s ease-out;
  -o-transition: transform 0.5s ease-out;
}

.hydrosite-encorise-news-detail-hero .hydrosite-encorise-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
}

.hydrosite-encorise-news-detail-hero .hydrosite-encorise-hero-title {
  font-family: var(--font-play);
  font-weight: 700;
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hydrosite-encorise-news-detail-hero .hydrosite-encorise-news-category {
  margin-bottom: 20px;
}

.hydrosite-encorise-news-detail-hero .hydrosite-encorise-news-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hydrosite-encorise-news-detail-hero .meta-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

/* Article Content Section */
.tin-tuc-detail .hydrosite-encorise-article-content {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.02) 0%,
    rgba(224, 162, 19, 0.02) 100%
  );
}

.tin-tuc-detail .hydrosite-encorise-main-article {
  margin-bottom: 40px;
}

.tin-tuc-detail
  .hydrosite-encorise-main-article
  .hydrosite-encorise-article-image {
  overflow: hidden;
  position: relative;
}

.tin-tuc-detail
  .hydrosite-encorise-main-article
  .hydrosite-encorise-article-image
  img,
.tin-tuc-detail
  .hydrosite-encorise-main-article
  .hydrosite-encorise-article-image
  a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.tin-tuc-detail .hydrosite-encorise-article-image {
  height: auto;
}

.tin-tuc-detail .hydrosite-encorise-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 3;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.tin-tuc-detail
  .hydrosite-encorise-main-article
  .hydrosite-encorise-article-image-box:hover
  .hydrosite-encorise-image-overlay {
  opacity: 1;
}

.tin-tuc-detail .hydrosite-encorise-image-zoom {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tin-tuc-detail .hydrosite-encorise-image-zoom:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

/* Article Body Styles */
.tin-tuc-detail .hydrosite-encorise-article-introduction {
  margin-bottom: 40px;
}

.tin-tuc-detail .hydrosite-encorise-article-introduction .lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--dark-color);
  font-weight: 500;
  padding: 30px;
  background: rgba(11, 148, 68, 0.05);
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
}

.tin-tuc-detail .hydrosite-encorise-article-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-color);
}

.tin-tuc-detail .hydrosite-encorise-article-body h2 {
  font-family: var(--font-play);
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark-color);
  margin: 40px 0 20px 0;
  position: relative;
  padding-left: 20px;
}

.tin-tuc-detail .hydrosite-encorise-article-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.tin-tuc-detail .hydrosite-encorise-article-body h3 {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--dark-color);
  margin: 30px 0 15px 0;
}

.tin-tuc-detail .hydrosite-encorise-article-body p {
  margin-bottom: 20px;
  text-align: justify;
}

.tin-tuc-detail .hydrosite-encorise-quote {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  margin: 40px 0;
  border-left: 4px solid var(--secondary-color);
  position: relative;
}

.tin-tuc-detail .hydrosite-encorise-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 3rem;
  color: var(--secondary-color);
  font-family: var(--font-play);
}

.tin-tuc-detail .hydrosite-encorise-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.tin-tuc-detail .hydrosite-encorise-quote cite {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Features Grid */
.tin-tuc-detail .hydrosite-encorise-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.tin-tuc-detail .feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  transition: all 0.3s ease;
}

.tin-tuc-detail .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
}

.tin-tuc-detail .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tin-tuc-detail .feature-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.tin-tuc-detail .feature-content h4 {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.tin-tuc-detail .feature-content p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* Lists Styling */
.tin-tuc-detail .hydrosite-encorise-challenge-list {
  padding-left: 0;
  list-style: none;
}

.tin-tuc-detail .hydrosite-encorise-challenge-list li {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
}

.tin-tuc-detail .hydrosite-encorise-challenge-list li::before {
  content: "⚠️";
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.2rem;
}

.tin-tuc-detail .hydrosite-encorise-future-list {
  padding-left: 0;
  counter-reset: future-counter;
  list-style: none;
  margin-bottom: 0;
}

.tin-tuc-detail .hydrosite-encorise-future-list li {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
  counter-increment: future-counter;
}

.tin-tuc-detail .hydrosite-encorise-future-list li::before {
  content: counter(future-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Image Content */
.tin-tuc-detail .hydrosite-encorise-image-content {
  margin: 40px 0;
  text-align: center;
}

.tin-tuc-detail .hydrosite-encorise-image-content img {
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tin-tuc-detail .hydrosite-encorise-image-content figcaption {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
  padding: 0 20px;
}

/* Impact Stats */
.tin-tuc-detail .hydrosite-encorise-impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.tin-tuc-detail .hydrosite-encorise-impact-stats .stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tin-tuc-detail .hydrosite-encorise-impact-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tin-tuc-detail .hydrosite-encorise-impact-stats .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.tin-tuc-detail .hydrosite-encorise-impact-stats .stat-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.tin-tuc-detail .hydrosite-encorise-impact-stats .stat-content h4 {
  font-family: var(--font-play);
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.tin-tuc-detail .hydrosite-encorise-impact-stats .stat-content p {
  font-size: 14px;
  color: var(--dark-color);
  margin: 0;
}

/* Article Footer */
.tin-tuc-detail .hydrosite-encorise-article-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tin-tuc-detail .hydrosite-encorise-article-tags {
  margin-bottom: 30px;
}

.tin-tuc-detail .hydrosite-encorise-article-tags h4 {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.tin-tuc-detail .tags-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tin-tuc-detail .tag-item {
  background: rgba(11, 148, 68, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tin-tuc-detail .tag-item:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.tin-tuc-detail .hydrosite-encorise-social-share {
  margin-bottom: 30px;
}

.tin-tuc-detail .hydrosite-encorise-social-share h4 {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.tin-tuc-detail .share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tin-tuc-detail .share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.tin-tuc-detail .share-btn:hover {
  transform: translateY(-2px) scale(1.1);
  color: var(--white);
}

.tin-tuc-detail .share-btn.facebook {
  background: #1877f2;
}

.tin-tuc-detail .share-btn.twitter {
  background: #1da1f2;
}

.tin-tuc-detail .share-btn.linkedin {
  background: #0077b5;
}

.tin-tuc-detail .share-btn.whatsapp {
  background: #25d366;
}

.tin-tuc-detail .share-btn.email {
  background: #ea4335;
}

.tin-tuc-detail .share-btn.copy {
  background: #6c757d;
}

.tin-tuc-detail .hydrosite-encorise-back-to-news {
  text-align: center;
}

.tin-tuc-detail .hydrosite-encorise-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--dark-color);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tin-tuc-detail .hydrosite-encorise-btn-back:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sidebar Styles */
.tin-tuc-detail .hydrosite-encorise-sidebar {
  position: sticky;
  top: 80px;
}

.tin-tuc-detail .sidebar-title {
  font-family: var(--font-play);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  text-align: center;
}

.tin-tuc-detail .hydrosite-encorise-related-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tin-tuc-detail .related-article {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tin-tuc-detail .related-article:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.tin-tuc-detail .related-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.tin-tuc-detail .related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tin-tuc-detail .related-content {
  flex: 1;
}

.tin-tuc-detail .related-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tin-tuc-detail .related-meta {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}

.tin-tuc-detail .related-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

/* Newsletter Sidebar */
.tin-tuc-detail.hydrosite-encorise-sidebar-newsletter {
  margin-top: 20px;
}

.tin-tuc-detail .hydrosite-encorise-sidebar-newsletter .form-group {
  margin-bottom: 15px;
}

.tin-tuc-detail .hydrosite-encorise-sidebar-newsletter .form-control {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 14px;
}

.tin-tuc-detail .hydrosite-encorise-sidebar-newsletter .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.9);
}

/* Related News Section */
.tin-tuc-detail .hydrosite-encorise-related-news {
  padding: 100px 0;
  /* background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.05) 0%,
    rgba(224, 162, 19, 0.05) 100%
  ); */
  background: linear-gradient(
    to bottom,
    rgba(11, 148, 68, 0.05) 0%,
    rgba(255, 255, 255, 0.5) 100%
  );
}

.tin-tuc-detail .hydrosite-encorise-related-swiper {
  padding: 0px 0;
}

.hydrosite-encorise-related-swiper .hydrosite-encorise-news-card {
  height: 100%;
}

/* Swiper Navigation for Related News */
.tin-tuc-detail .hydrosite-encorise-related-swiper .swiper-button-next,
.tin-tuc-detail .hydrosite-encorise-related-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--primary-color);
}

.tin-tuc-detail .hydrosite-encorise-related-swiper .swiper-button-next:after,
.tin-tuc-detail .hydrosite-encorise-related-swiper .swiper-button-prev:after {
  font-size: 18px;
}

.tin-tuc-detail .hydrosite-encorise-related-swiper .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.3;
}

.tin-tuc-detail
  .hydrosite-encorise-related-swiper
  .swiper-pagination-bullet-active {
  opacity: 1;
}
.tin-tuc-detail .hydrosite-encorise-news-title a {
  color: var(--text-dark);
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tin-tuc-detail .hydrosite-encorise-news-title a:hover {
  color: var(--primary-color);
}
.tin-tuc-detail .hydrosite-encorise-glass-panel {
  padding: 26px;
}
.tin-tuc-detail .tin-tuc-detail .related-meta {
  font-size: 10px;
}
.tin-tuc-detail .hydrosite-content ul li::before {
  top: 10px;
}
.tin-tuc-detail .hydrosite-content ol li::before {
  top: 5px;
  width: 25px;
  height: 25px;
}
.tin-tuc-detail .hydrosite-content ol li::before {
  top: 1px;
}
.tin-tuc-detail .hydrosite-content ol li {
  padding-left: 35px;
}
/* TRANG TIN TỨC CHI TIẾT END */

/* trang tin tức chi tiết end */

/* trang cố định start */

/* trang dịch vụ start */
/* Service Page Container */
.hydrosite-service-page {
  padding: 4rem 0;
  position: relative;
}

.hydrosite-service-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2e8b57 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: -1;
}

/* Article Container */
.hydrosite-service-page-container {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 60px var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Header Section */
.hydrosite-service-page-header {
  padding: 3rem 3rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.05),
    rgba(224, 162, 19, 0.05)
  );
  position: relative;
}

.hydrosite-service-page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.hydrosite-service-page-title {
  font-family: var(--font-play);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.hydrosite-service-page-description {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Content Section */
.hydrosite-service-page-content {
  padding: 3rem;
}

/* Typography Styles */
.hydrosite-service-page-content h1,
.hydrosite-service-page-content h2,
.hydrosite-service-page-content h3,
.hydrosite-service-page-content h4,
.hydrosite-service-page-content h5,
.hydrosite-service-page-content h6 {
  font-family: var(--font-play);
  font-weight: 700;
  margin: 2.5rem 0 1.5rem 0;
  color: var(--dark-color);
}

.hydrosite-service-page-content h2 {
  font-size: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.hydrosite-service-page-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 3px;
}

.hydrosite-service-page-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  position: relative;
}

.hydrosite-service-page-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 1px;
}

.hydrosite-service-page-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

/* Links */
.hydrosite-service-page-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.hydrosite-service-page-content a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transition: width 0.3s ease;
}

.hydrosite-service-page-content a:hover::after {
  width: 100%;
}

.hydrosite-service-page-content a:hover {
  color: var(--secondary-color);
}

/* Lists */
.hydrosite-service-page-content ul,
.hydrosite-service-page-content ol {
  margin: 1.5rem 0;
  padding-left: 0;
}

.hydrosite-service-page-content ul {
  list-style: none;
}

.hydrosite-service-page-content ul li {
  position: relative;
  margin: 1rem 0;
  padding-left: 2rem;
  line-height: 1.7;
}

.hydrosite-service-page-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 10px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(11, 148, 68, 0.3);
}

.hydrosite-service-page-content ol {
  counter-reset: solar-counter;
  list-style: none;
}

.hydrosite-service-page-content ol li {
  position: relative;
  margin: 1rem 0;
  padding-left: 3rem;
  line-height: 1.7;
  counter-increment: solar-counter;
}

.hydrosite-service-page-content ol li::before {
  content: counter(solar-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(11, 148, 68, 0.3);
}

/* Blockquotes */
.hydrosite-service-page-content blockquote {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.05),
    rgba(224, 162, 19, 0.05)
  );
  border-left: 5px solid var(--primary-color);
  border-radius: 0 12px 12px 0;
  position: relative;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
  box-shadow: 0 8px 32px rgba(11, 148, 68, 0.1);
}

.hydrosite-service-page-content blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.7;
}

.hydrosite-service-page-content blockquote p {
  margin: 0;
  color: var(--dark-color);
}

/* Tables */
.hydrosite-service-page-content table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

.hydrosite-service-page-content table th {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-play);
}

.hydrosite-service-page-content table td {
  padding: 1.2rem;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.3s ease;
}

.hydrosite-service-page-content table tr:nth-child(even) td {
  background-color: rgba(11, 148, 68, 0.02);
}

.hydrosite-service-page-content table tr:hover td {
  background-color: rgba(11, 148, 68, 0.05);
}

.hydrosite-service-page-content table tr:last-child td {
  border-bottom: none;
}

/* Strong and Em */
.hydrosite-service-page-content strong {
  font-weight: 700;
  color: var(--primary-color);
}

.hydrosite-service-page-content em {
  font-style: italic;
  color: var(--secondary-color);
}

/* Solar highlight box */
.hydrosite-service-page-content .solar-highlight {
  background: linear-gradient(
    135deg,
    rgba(11, 148, 68, 0.1),
    rgba(224, 162, 19, 0.1)
  );
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  border-left: 4px solid var(--secondary-color);
  position: relative;
}

.hydrosite-service-page-content .solar-highlight::before {
  content: "\f185";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--secondary-color);
  font-size: 1.2rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hydrosite-service-page {
    padding: 2rem 0;
  }

  .hydrosite-service-page-container {
    margin: 0 1rem;
    border-radius: 16px;
  }

  .hydrosite-service-page-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .hydrosite-service-page-title {
    font-size: 2rem;
  }

  .hydrosite-service-page-description {
    font-size: 1.1rem;
  }

  .hydrosite-service-page-content {
    padding: 2rem 1.5rem;
  }

  .hydrosite-service-page-content h2 {
    font-size: 1.75rem;
  }

  .hydrosite-service-page-content h3 {
    font-size: 1.3rem;
  }

  .hydrosite-service-page-content p {
    font-size: 1rem;
  }

  .hydrosite-service-page-content table {
    font-size: 0.9rem;
  }

  .hydrosite-service-page-content table th,
  .hydrosite-service-page-content table td {
    padding: 0.8rem 0.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll Progress Bar */
.hydrosite-service-page-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: 9999;
  transition: width 0.1s ease;
}

/* trang dịch vụ end */

/* trang cố định end */

/* cho body/người dùng không scroll tí nào */
.no-scroll {
  overflow: hidden !important;
  height: 100vh; /* chặn scroll bar */
  touch-action: none; /* chặn tương tác cuộn trên mobile */
}
