@charset "UTF-8";
:root {
  --primary-green: #009e5f;
  --primary-green-light: #00cc7a;
  --light-green: #e6f7f0;
  --dark-blue: #0a2342;
  --light-gray: #f5f7fa;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --transition-fast: 0.2s;
  --transition-normal: 0.3s;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.01);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 10px 40px rgba(0, 0, 0, 0.2);
}

body {
  font-family: "Microsoft YaHei", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  max-width: 85% !important;
}

@media (max-width: 767px) {
  .container {
    max-width: 95% !important;
  }
}
.navbar {
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
  position: relative;
}
.navbar .navbar-brand img {
  height: 57px;
  margin: 10px 0;
}
.navbar .nav-link {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  padding: 0 25px !important;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: all var(--transition-normal);
  white-space: nowrap;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--primary-green);
}

@media (max-width: 767px) {
  .navbar .navbar-brand img {
    height: 45px;
  }
  .navbar .navbar-toggler {
    padding: 8px 12px;
  }
}
.search-icon {
  color: #666;
  font-size: 18px;
  cursor: pointer;
  transition: color var(--transition-normal);
}
.search-icon:hover {
  color: var(--primary-green);
}

.lang-btn {
  border: 1px solid #d9d9d9;
  border-radius: var(--border-radius-xl);
  background: var(--white);
  font-size: 14px;
  color: #333;
  padding: 6px 16px;
  margin-right: 15px;
}

.lang-dropdown {
  position: relative;
}
.lang-dropdown .lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 130px;
  display: none;
  z-index: 1000;
  overflow: hidden;
  padding: 0;
}
.lang-dropdown .lang-menu.show {
  display: block;
  animation: dropdownFade var(--transition-fast) ease;
}
.lang-dropdown .lang-menu .lang-menu-item {
  padding: 8px 20px;
  cursor: pointer;
  font-size: 15px;
  color: #333;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-dropdown .lang-menu .lang-menu-item a {
  color: var(--text-dark);
}
.lang-dropdown .lang-menu .lang-menu-item:hover {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f5f0 100%);
  color: var(--primary-green);
}
.lang-dropdown .lang-menu .lang-menu-item.active {
  color: var(--primary-green);
  background: #e8f5f0;
}
.lang-dropdown .lang-menu .lang-menu-item.active::after {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 14px;
}

.menu-toggle {
  background: var(--primary-green);
  width: 90px;
  cursor: pointer;
}
.menu-toggle img {
  height: 24px;
  width: 24px;
}
.menu-toggle i {
  color: var(--white);
  font-size: 22px;
}

@media (max-width: 767px) {
  .menu-toggle {
    width: 56px;
  }
}
.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.search-modal-overlay.show {
  display: flex;
}
.search-modal-overlay .search-modal {
  background: var(--white);
  border-radius: var(--border-radius-md);
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.search-modal-overlay .search-modal .search-modal-header {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}
.search-modal-overlay .search-modal .search-modal-header .search-modal-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 10px;
}
.search-modal-overlay .search-modal .search-modal-header .search-modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: all var(--transition-normal);
}
.search-modal-overlay .search-modal .search-modal-header .search-modal-close:hover {
  background: #e5e5e5;
  color: #333;
}
.search-modal-overlay .search-modal .search-modal-body {
  padding: 20px;
}
.search-modal-overlay .search-modal .search-modal-body .search-suggestions-title {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}
.search-modal-overlay .search-modal .search-modal-body .search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-modal-overlay .search-modal .search-modal-body .search-suggestions .search-tag {
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: var(--border-radius-xl);
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all var(--transition-normal);
}
.search-modal-overlay .search-modal .search-modal-body .search-suggestions .search-tag:hover {
  background: var(--primary-green);
  color: var(--white);
}

.offcanvas-end {
  width: 340px;
  border-left: none;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
}
.offcanvas-end .offcanvas-header {
  padding: 25px 30px;
  border-bottom: none;
  background: linear-gradient(135deg, #f8faf9 0%, #f0f7f4 100%);
  position: relative;
}
.offcanvas-end .offcanvas-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e8e4, transparent);
}
.offcanvas-end .offcanvas-header .offcanvas-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a3d2e;
  display: flex;
  align-items: center;
  gap: 10px;
}
.offcanvas-end .offcanvas-header .offcanvas-title::before {
  content: "";
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary-green), var(--primary-green-light));
  border-radius: 2px;
}
.offcanvas-end .offcanvas-header .btn-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  opacity: 1;
  transition: all var(--transition-normal);
}
.offcanvas-end .offcanvas-header .btn-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}
.offcanvas-end .offcanvas-body {
  padding: 30px;
  background: #fafcfb;
}
.offcanvas-end .offcanvas-body .nav-link {
  color: #444;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px !important;
  border-radius: var(--border-radius-lg);
  margin-bottom: 8px;
  border: none;
  transition: all var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 14px;
}
.offcanvas-end .offcanvas-body .nav-link i {
  width: 24px;
  font-size: 18px;
  color: var(--primary-green);
  transition: transform var(--transition-normal);
}
.offcanvas-end .offcanvas-body .nav-link:hover {
  color: var(--primary-green);
  background: linear-gradient(135deg, #e8f5f0 0%, #dff3eb 100%);
  padding-left: 30px;
  transform: translateX(4px);
}
.offcanvas-end .offcanvas-body .nav-link:hover i {
  transform: scale(1.2);
}
.offcanvas-end .offcanvas-body .nav-link:last-child {
  margin-bottom: 0;
}
.offcanvas-end .offcanvas-sidebar-decoration {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 158, 95, 0.1) 0%, rgba(0, 204, 122, 0.05) 100%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-swiper {
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  position: relative;
}
.hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
}
.hero-swiper .swiper-slide .hero-text {
  max-width: 500px;
}
.hero-swiper .swiper-slide .hero-text h1 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 15px;
}
.hero-swiper .swiper-slide .hero-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}
.hero-swiper .swiper-slide .hero-image {
  max-width: 400px;
  margin-left: auto;
}

/* 自定义轮播控件 */
.custom-swiper-controls {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 10;
}
.custom-swiper-controls .swiper-pagination {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.custom-swiper-controls .swiper-pagination .swiper-pagination-bullet {
  background: none;
  margin: 0 5px;
  color: #ffffff;
  opacity: 1;
}
.custom-swiper-controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-size: 30px;
  font-weight: bold;
  margin-top: -30px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: rgba(255, 255, 255, 0.4);
}

.swiper-button-prev-custom i,
.swiper-button-next-custom i {
  color: white;
  font-size: 14px;
}

.swiper-pagination-custom {
  display: flex;
  align-items: center;
  gap: 6px;
}

.swiper-pagination-bullet-custom {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  padding: 2px 6px;
}

.swiper-pagination-bullet-custom.active {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.btn-primary-custom {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid #ddd;
  padding: 10px 30px;
  border-radius: var(--border-radius-xl);
  font-size: 14px;
  transition: all var(--transition-normal);
}
.btn-primary-custom:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.section-title-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section-title-header .section-title-title-wrapper .section-title-icon {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.section-title-header .section-title-title-wrapper .section-title-icon h3 {
  font-size: 22px;
  font-weight: normal;
  color: var(--primary-green);
}
.section-title-header .section-title-title-wrapper h2 {
  font-size: 40px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0 0 0 23px;
  margin-bottom: 10px;
}
.section-title-header .section-title-title-wrapper p {
  font-size: 18px;
  color: var(--text-dark);
  padding: 0 0 0 23px;
  max-width: 680px;
}
.section-title-header .explore-more-btn {
  padding: 12px 36px;
  border: 1px solid var(--primary-green);
  border-radius: 0 var(--border-radius-xl) 0;
  color: var(--primary-green);
  text-decoration: none;
  font-size: 16px;
  transition: all var(--transition-normal);
}
.section-title-header .explore-more-btn i {
  transition: transform 0.3s ease;
}
.section-title-header .explore-more-btn:hover {
  background: var(--primary-green);
  color: var(--white);
}
.section-title-header .explore-more-btn:hover i {
  transform: translateX(5px);
}

.product-section {
  background: linear-gradient(125deg, #b8babf, #ffffff);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.product-section .product-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.product-section .swiper-button-prev-product,
.product-section .swiper-button-next-product {
  width: 48px;
  height: 48px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: white;
}
.product-section .swiper-button-prev-product:hover,
.product-section .swiper-button-next-product:hover {
  border-color: var(--primary-green);
  background: var(--primary-green);
}
.product-section .swiper-button-prev-product:hover i,
.product-section .swiper-button-next-product:hover i {
  color: white;
}
.product-section .swiper-button-prev-product svg,
.product-section .swiper-button-next-product svg {
  width: 20px;
  height: 20px;
}
.product-section .swiper-progress-bar {
  width: 300px;
  height: 8px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.product-section .swiper-progress-bar .swiper-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--primary-green);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}
.product-section .product-swiper {
  padding-top: 10px;
}
.product-section .product-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  height: 100%;
}
.product-section .product-card .product-img-wrapper {
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.product-section .product-card .product-img-wrapper img {
  max-height: 180px;
  width: auto;
}
.product-section .product-card .product-info {
  padding: 20px;
}
.product-section .product-card .product-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.product-section .product-card .product-info h4::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 15px;
  background: var(--primary-green);
}
.product-section .product-card .product-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 30px;
}
.product-section .product-card .product-info ul li {
  margin-bottom: 6px;
}
.product-section .product-card .product-info .view-detail {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-normal);
}
.product-section .product-card .product-info .view-detail:hover {
  text-decoration: underline;
}
.product-section .product-card:hover {
  transform: translateY(-5px);
}
.product-section .product-card:hover .product-info {
  background: var(--primary-green);
  color: var(--white);
  border-radius: var(--border-radius-xl);
}
.product-section .product-card:hover .product-info h4 {
  color: var(--white);
}
.product-section .product-card:hover .product-info h4::after {
  background: var(--white);
}
.product-section .product-card:hover .product-info ul {
  color: var(--white);
}
.product-section .product-card:hover .product-info ul li {
  color: var(--white);
}
.product-section .product-card:hover .product-info .view-detail {
  color: var(--white);
  text-decoration: underline;
}
.product-section .swiper-slide-active .product-card .product-info {
  background: var(--primary-green);
  color: var(--white);
  border-radius: var(--border-radius-xl);
}
.product-section .swiper-slide-active .product-card .product-info h4::after {
  background: var(--white);
}
.product-section .swiper-slide-active .product-card .product-info ul {
  color: rgba(255, 255, 255, 0.9);
}
.product-section .swiper-slide-active .product-card .product-info .view-detail {
  color: var(--white);
}

@media (max-width: 1200px) {
  .product-section .product-title-wrapper h2 {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .product-section .product-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-section .product-title-wrapper h2 {
    font-size: 24px;
  }
  .product-section .swiper-progress-bar {
    width: 200px;
  }
}
@media (max-width: 768px) {
  .product-section .product-title-wrapper h2 {
    font-size: 22px;
  }
  .product-section .swiper-progress-bar {
    width: 150px;
  }
  .product-section .swiper-button-prev-product,
  .product-section .swiper-button-next-product {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .product-section .product-title-wrapper h2 {
    font-size: 20px;
  }
  .product-section .product-swiper-controls {
    gap: 12px;
  }
  .product-section .swiper-progress-bar {
    width: 120px;
  }
}
.about-section {
  background: url(../images/about-bg.jpg) top center/cover no-repeat;
  padding: 100px 0;
}
.about-section .about-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
}
.about-section .about-image-wrapper {
  width: 100%;
  min-height: 500px;
  background: url(../images/about-img.png) top center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 100px 60px;
  gap: 60px;
}
.about-section .about-image-wrapper .about-content-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 50px;
  flex: 0 0 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.about-section .about-image-wrapper .about-content-card .about-header {
  margin-bottom: 25px;
}
.about-section .about-image-wrapper .about-content-card .about-header .about-subtitle {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: center;
}
.about-section .about-image-wrapper .about-content-card .about-header .about-motto {
  font-size: 25px;
  font-weight: bold;
  color: var(--primary-green);
  text-align: center;
  letter-spacing: 2px;
}
.about-section .about-image-wrapper .about-content-card .about-description {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 15px;
}
.about-section .about-image-wrapper .about-content-card .btn {
  font-size: 16px;
  border-radius: 0 var(--border-radius-xl) 0 !important;
  padding: 12px 36px !important;
  margin: 0 auto;
}
.about-section .about-image-wrapper .about-stats {
  position: relative;
  z-index: 1;
  flex: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 80px;
}
.about-section .about-image-wrapper .about-stats .about-stat-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-left: 30px;
  min-width: 300px;
}
.about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-icon {
  font-size: 36px;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-content {
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 20px;
}
.about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-content .about-stat-number {
  font-size: 32px;
  font-weight: bold;
  color: white;
  line-height: 1.2;
}
.about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-content .about-stat-number h3 {
  font-size: 32px;
  font-weight: bold;
}
.about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-content .about-stat-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) {
  .about-section .about-image-wrapper {
    padding: 30px 40px;
    gap: 40px;
  }
  .about-section .about-image-wrapper .about-content-card {
    flex: 0 0 420px;
    padding: 30px 40px;
  }
  .about-section .about-image-wrapper .about-stats {
    gap: 25px;
  }
  .about-section .about-image-wrapper .about-stats .about-stat-item i {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  .about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-content .about-stat-number {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .about-section .about-image-wrapper {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }
  .about-section .about-image-wrapper .about-content-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
  }
  .about-section .about-image-wrapper .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 30px;
  }
  .about-section .about-image-wrapper .about-stats .about-stat-item {
    padding-left: 0;
    flex-direction: column;
    text-align: center;
    min-width: auto;
  }
  .about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-content {
    border-left: none;
    padding-left: 0;
    padding-top: 10px;
  }
}
@media (max-width: 576px) {
  .about-section .about-image-wrapper {
    padding: 30px 20px;
  }
  .about-section .about-image-wrapper .about-content-card {
    padding: 25px 20px;
  }
  .about-section .about-image-wrapper .about-content-card .about-header .about-motto {
    font-size: 18px;
  }
  .about-section .about-image-wrapper .about-content-card .about-description {
    font-size: 13px;
  }
  .about-section .about-image-wrapper .about-stats {
    gap: 20px;
  }
  .about-section .about-image-wrapper .about-stats .about-stat-item i {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
  .about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-content .about-stat-number {
    font-size: 24px;
  }
  .about-section .about-image-wrapper .about-stats .about-stat-item .about-stat-content .about-stat-text {
    font-size: 13px;
  }
}
.industry-section {
  width: 100%;
  padding: 100px 0 0;
  overflow: hidden;
}
.industry-section .industry-single {
  background: url(../images/app-bg.png) top left/50% 100% no-repeat;
}
.industry-section .industry-single .container {
  max-width: 100% !important;
  padding-left: 7.25%;
}
.industry-section .industry-single .container .industry-tabs-container {
  position: relative;
}
.industry-section .industry-single .container .industry-tabs-container .industry-bigtitle {
  font-size: 140px;
  font-weight: bold;
  color: #e4e4e4;
  margin-bottom: 40px;
  opacity: 0.3;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: 0.8;
}
.industry-section .industry-single .container .industry-tabs-container .industry-img {
  padding-top: 0;
  overflow: hidden;
}
.industry-section .industry-single .container .industry-tabs-container .industry-img img {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-xl) 0 0 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.industry-section .industry-single .container .industry-tabs-container .industry-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.industry-section .industry-single .container .industry-tabs-container .industry-tabs::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, #000, transparent);
  z-index: 3;
}
.industry-section .industry-single .container .industry-tabs-container .industry-tabs .row {
  position: relative;
  z-index: 100;
}
.industry-section .industry-single .container .industry-tabs-container .industry-tabs .tab-item {
  padding: 25px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  border-right: 0;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-normal);
}
.industry-section .industry-single .container .industry-tabs-container .industry-tabs .tab-item.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}
.industry-section .industry-single .container .industry-content {
  width: 100%;
  padding: 100px 0;
}
.industry-section .industry-single .container .industry-content .industry-text {
  padding-right: 40px;
}
.industry-section .industry-single .container .industry-content .industry-text h4 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 45px;
  color: var(--white);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.industry-section .industry-single .container .industry-content .industry-text h4::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--white);
  margin-bottom: 20px;
}
.industry-section .industry-single .container .industry-content .industry-text .industry-text-content {
  font-size: 15px;
  color: var(--white);
  line-height: 27px;
  margin-bottom: 65px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.industry-section .industry-single .container .industry-content .industry-text .btn {
  padding: 12px 36px !important;
  border-radius: 0 var(--border-radius-xl) 0 var(--border-radius-xl) !important;
}
.industry-section .industry-single .container .industry-content .industry-text .btn:hover {
  background: var(--primary-green);
  color: var(--white);
}

.advantages-section {
  background: url(../images/adv-bg.jpg) center/cover no-repeat;
  padding: 100px 0;
}
.advantages-section .explore-more-btn {
  background: linear-gradient(to right, #14bf6e, #008f4b);
  color: #fff;
}
.advantages-section .advantage-card {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}
.advantages-section .advantage-card .advantage-icon {
  background: transparent;
  position: relative;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  border: 1px solid var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--primary-green);
  font-size: 24px;
}
.advantages-section .advantage-card .advantage-icon::after {
  content: "";
  display: block;
  width: 105px;
  height: 105px;
  border: 1px solid rgba(0, 143, 75, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.advantages-section .advantage-card h4 {
  font-size: 28px;
  font-weight: normal;
}
.advantages-section .advantage-card h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #7d7d7d;
  margin: 20px auto 30px;
}
.advantages-section .advantage-card p {
  font-size: 16px;
  color: var(--text-light);
  padding: 0 30px;
  min-height: 80px;
}
.advantages-section .advantage-card:hover {
  transform: translateY(-5px);
  background: var(--primary-green);
  color: var(--white);
  box-shadow: 0 10px 50px var(--primary-green);
}
.advantages-section .advantage-card:hover .advantage-icon {
  border-color: var(--white);
  color: var(--white);
}
.advantages-section .advantage-card:hover .advantage-icon img {
  filter: brightness(0) invert(1);
}
.advantages-section .advantage-card:hover .advantage-icon::after {
  border-color: rgba(255, 255, 255, 0.2);
}
.advantages-section .advantage-card:hover h4::after {
  background: var(--white);
}
.advantages-section .advantage-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.news-section {
  padding: 80px 0;
}
.news-section .news-main {
  margin-bottom: 50px;
}
.news-section .news-main .news-main-wrapper {
  display: flex;
  gap: 100px;
  align-items: center;
}
.news-section .news-main .news-main-wrapper .news-main-img-wrapper {
  position: relative;
  flex: 0 0 540px;
}
.news-section .news-main .news-main-wrapper .news-main-img-wrapper img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  padding: 25px 18px;
  text-align: center;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border-radius: var(--border-radius-xl);
}
.news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-green);
  transform: rotate(45deg);
  z-index: -1;
  border-radius: var(--border-radius-xl);
}
.news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge .day {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  display: block;
}
.news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge .month {
  font-size: 13px;
  margin-top: 6px;
  line-height: 1;
}
.news-section .news-main .news-main-wrapper .news-main-content {
  flex: 1;
  padding-top: 5px;
}
.news-section .news-main .news-main-wrapper .news-main-content h4 {
  font-size: 26px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.4;
}
.news-section .news-main .news-main-wrapper .news-main-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 15px;
}
.news-section .news-main .news-main-wrapper .news-main-content p:last-of-type {
  margin-bottom: 28px;
}
.news-section .news-main .news-main-wrapper .news-main-content .explore-news-btn {
  background: transparent;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  font-size: 16px;
  padding: 12px 34px !important;
  border-radius: 0 var(--border-radius-xl) 0 var(--border-radius-xl) !important;
}
.news-section .news-main .news-main-wrapper .news-main-content .explore-news-btn:hover {
  background: #007a4a;
  border-color: #007a4a;
  color: var(--white);
}
.news-section .news-divider {
  height: 1px;
  background: #e8e8e8;
  margin: 55px 0;
}
.news-section .news-list {
  display: flex;
  gap: 35px;
}
.news-section .news-list .news-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.news-section .news-list .news-item .news-item-header {
  display: flex;
  align-items: center;
  gap: 18px;
}
.news-section .news-list .news-item .news-item-header .news-item-date-wrapper {
  flex: 0 0 auto;
}
.news-section .news-list .news-item .news-item-header .news-item-date {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 18px 12px;
  text-align: center;
  min-width: 85px;
}
.news-section .news-list .news-item .news-item-header .news-item-date .day {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  display: block;
  line-height: 1;
}
.news-section .news-list .news-item .news-item-header .news-item-date .month {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 5px;
  display: block;
  line-height: 1;
}
.news-section .news-list .news-item .news-item-header h5 {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.news-section .news-list .news-item .news-item-header h5 a {
  display: block;
  color: var(--text-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-section .news-list .news-item .news-item-header h5:hover a {
  color: var(--primary-green);
}
.news-section .news-list .news-item p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

footer {
  background: url(../images/footer-bg.jpg) no-repeat center center/cover;
  padding: 100px 0 0;
}
footer h5::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--primary-green);
  border-radius: 2px;
  margin-top: 15px;
}
footer {
  /* 自定义hover效果 */
}
footer .hover-text-success {
  transition: color 0.3s ease;
  font-size: 15px;
}
footer .hover-text-success:hover {
  color: #198754 !important;
}
footer {
  /* 表单焦点状态 */
}
footer .form-control:focus {
  box-shadow: none;
  border-bottom-color: #198754 !important;
}
footer .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
}
footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
footer {
  /* 分隔线样式 */
}
footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
footer .footer-copyright {
  background: #041d42;
  padding-bottom: 20px;
  text-align: center;
}
footer .footer-copyright a {
  color: rgba(255, 255, 255, 0.5) !important;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background var(--transition-normal);
}
.back-to-top:hover {
  background: #007a4a;
  color: var(--white);
}

@media (max-width: 1200px) {
  .news-section .news-main .news-main-wrapper {
    gap: 40px;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper {
    flex: 0 0 400px;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge {
    width: 90px;
    height: 90px;
    padding: 20px 15px;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-green);
    transform: rotate(45deg);
    z-index: -1;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge .day {
    font-size: 26px;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge .month {
    font-size: 12px;
  }
  .news-section .news-main .news-main-wrapper .news-main-content h4 {
    font-size: 22px;
  }
  .news-section .news-main .news-main-wrapper .news-main-content p {
    font-size: 14px;
  }
  footer .footer-links .footer-left {
    gap: 50px;
  }
  footer .footer-links .footer-divider {
    margin: 0 40px;
  }
  footer .footer-links .footer-right {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }
  .about-container .about-image {
    height: 300px;
  }
  .industry-content {
    flex-direction: column;
  }
  .industry-content .industry-text {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .industry-content .industry-image {
    width: 100%;
  }
  .news-main .news-main-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .news-main .news-main-wrapper .news-main-img-wrapper {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -20px;
  }
  .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-green);
    transform: rotate(45deg);
    z-index: -1;
  }
  .news-main .news-main-wrapper .news-main-content {
    padding-top: 20px;
    text-align: center;
  }
  .news-list {
    flex-direction: column;
    gap: 30px;
  }
  .news-list .news-item {
    gap: 12px;
  }
  .news-list .news-item .news-item-header {
    gap: 15px;
  }
  .news-list .news-item .news-item-header .news-item-date {
    min-width: 80px;
    padding: 12px 10px;
  }
  .news-list .news-item .news-item-header .news-item-date .day {
    font-size: 18px;
  }
  .news-list .news-item .news-item-header .news-item-date .month {
    font-size: 11px;
  }
  .news-list .news-item .news-item-header h5 {
    font-size: 15px;
  }
  .news-list .news-item p {
    padding-left: 95px;
    font-size: 13px;
  }
  footer .footer-links {
    flex-direction: column;
    gap: 40px;
  }
  footer .footer-links .footer-left {
    gap: 40px;
  }
  footer .footer-links .footer-divider {
    display: none;
  }
  footer .footer-links .footer-right {
    width: 100%;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .news-section .news-list .news-item .news-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .news-section .news-list .news-item .news-item-header h5 {
    font-size: 15px;
  }
  .news-section .news-list .news-item p {
    padding-left: 0;
  }
  footer .footer-links .footer-left {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer-links .footer-right {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer-links .footer-form-section .footer-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 767px) and (min-width: 320px) {
  body {
    overflow-x: hidden;
  }
  .section-title-header {
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }
  .section-title-header .section-title-title-wrapper .section-title-icon h3 {
    font-size: 16px;
  }
  .section-title-header .section-title-title-wrapper h2 {
    font-size: 22px;
    padding: 0;
  }
  .navbar {
    padding: 0;
  }
  .navbar .container {
    max-width: 100% !important;
    padding: 0 10px;
  }
  .navbar .navbar-brand {
    margin-right: auto;
  }
  .navbar .navbar-brand img {
    height: 40px;
    margin: 8px 0;
  }
  .navbar .navbar-toggler {
    display: none;
  }
  .navbar .collapse.navbar-collapse {
    display: none !important;
  }
  .search-icon {
    margin-right: 8px;
  }
  .lang-btn {
    padding: 4px 8px;
    font-size: 12px;
    margin-right: 8px;
  }
  .menu-toggle {
    width: 50px;
  }
  .search-modal-overlay {
    padding-top: 70px;
  }
  .search-modal-overlay .search-modal {
    width: 92%;
    max-width: 100%;
  }
  .search-modal-overlay .search-modal .search-modal-header {
    padding: 15px;
  }
  .search-modal-overlay .search-modal .search-modal-body {
    padding: 15px;
  }
  .search-modal-overlay .search-modal .search-modal-body .search-suggestions .search-tag {
    padding: 6px 12px;
    font-size: 13px;
  }
  .offcanvas-end {
    width: 85%;
  }
  .offcanvas-end .offcanvas-header {
    padding: 20px;
  }
  .offcanvas-end .offcanvas-body {
    padding: 20px;
  }
  .offcanvas-end .offcanvas-body .nav-link {
    padding: 12px 16px !important;
    font-size: 15px;
  }
  .hero-swiper .swiper-slide img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero-swiper .custom-swiper-controls {
    bottom: 15px;
    left: 15px;
    gap: 8px;
    padding: 6px 10px;
  }
  .hero-swiper .custom-swiper-controls .swiper-pagination .swiper-pagination-bullet {
    font-size: 12px;
  }
  .hero-swiper .custom-swiper-controls .swiper-pagination .swiper-pagination-bullet-active {
    font-size: 16px;
  }
  .hero-swiper .custom-swiper-controls .swiper-button-prev-custom,
  .hero-swiper .custom-swiper-controls .swiper-button-next-custom {
    width: 32px;
    height: 32px;
  }
  .product-section {
    padding: 50px 0;
  }
  .product-section .product-swiper-controls {
    margin-bottom: 30px;
    gap: 10px;
  }
  .product-section .product-swiper-controls .swiper-progress-bar {
    width: 180px;
  }
  .product-section .product-swiper-controls .swiper-button-prev-product,
  .product-section .product-swiper-controls .swiper-button-next-product {
    width: 40px;
    height: 40px;
  }
  .product-section .product-card .product-img-wrapper {
    padding: 20px;
    min-height: 180px;
  }
  .product-section .product-card .product-img-wrapper img {
    max-height: 140px;
  }
  .product-section .product-card .product-info {
    padding: 15px;
  }
  .product-section .product-card .product-info h4 {
    font-size: 16px;
  }
  .product-section .product-card .product-info ul li {
    font-size: 13px;
  }
  .product-section .product-card .product-info .view-detail {
    font-size: 14px;
  }
  .about-section {
    padding: 50px 0;
  }
  .about-section .about-container .about-image-wrapper {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }
  .about-section .about-container .about-image-wrapper .about-content-card {
    flex: 0 0 auto;
    width: 100%;
    padding: 25px 20px;
  }
  .about-section .about-container .about-image-wrapper .about-content-card .about-header .about-subtitle {
    font-size: 14px;
  }
  .about-section .about-container .about-image-wrapper .about-content-card .about-header .about-motto {
    font-size: 18px;
  }
  .about-section .about-container .about-image-wrapper .about-content-card .about-description {
    font-size: 14px;
  }
  .about-section .about-container .about-image-wrapper .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
  .about-section .about-container .about-image-wrapper .about-stats .about-stat-item {
    flex: 1;
    min-width: auto;
    padding-left: 0;
    flex-direction: column;
    text-align: center;
  }
  .about-section .about-container .about-image-wrapper .about-stats .about-stat-item .about-stat-content {
    border-left: none;
    padding-left: 0;
    padding-top: 10px;
  }
  .about-section .about-container .about-image-wrapper .about-stats .about-stat-item .about-stat-content .about-stat-number h3 {
    font-size: 24px;
  }
  .about-section .about-container .about-image-wrapper .about-stats .about-stat-item .about-stat-content .about-stat-text {
    font-size: 13px;
  }
  .industry-section {
    padding: 50px 0 0;
  }
  .industry-section .industry-single {
    background: url(../images/app-bg.png) top left/cover no-repeat;
  }
  .industry-section .industry-single .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .industry-section .industry-single .container .row {
    flex-direction: column-reverse;
  }
  .industry-section .industry-single .container .industry-content {
    padding: 30px 0;
  }
  .industry-section .industry-single .container .industry-content .industry-text {
    padding-right: 0;
  }
  .industry-section .industry-single .container .industry-content .industry-text h4 {
    font-size: 20px;
  }
  .industry-section .industry-single .container .industry-content .industry-text .industry-text-content {
    font-size: 14px;
  }
  .industry-section .industry-single .container .industry-tabs-container .industry-bigtitle {
    font-size: 60px;
  }
  .industry-section .industry-single .container .industry-tabs-container .industry-tabs .row {
    flex-direction: row;
  }
  .industry-section .industry-single .container .industry-tabs-container .industry-tabs .col-md-3,
  .industry-section .industry-single .container .industry-tabs-container .industry-tabs .col-sm-6 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .industry-section .industry-single .container .industry-tabs-container .industry-tabs .tab-item {
    padding: 12px 10px;
    font-size: 12px;
  }
  .advantages-section {
    padding: 50px 0;
  }
  .advantages-section .section-title-header .section-title-title-wrapper p {
    font-size: 14px;
    padding: 0;
  }
  .advantages-section .row .col-lg-3,
  .advantages-section .row .col-md-6 {
    margin-top: 15px !important;
  }
  .advantages-section .row .col-lg-3.mt-5 {
    margin-top: 0 !important;
  }
  .advantages-section .advantage-card {
    padding: 30px 20px;
  }
  .advantages-section .advantage-card .advantage-icon {
    width: 80px;
    height: 80px;
  }
  .advantages-section .advantage-card .advantage-icon::after {
    width: 70px;
    height: 70px;
  }
  .advantages-section .advantage-card h4 {
    font-size: 18px;
  }
  .advantages-section .advantage-card p {
    font-size: 14px;
    padding: 0;
    min-height: auto;
  }
  .news-section {
    padding: 50px 0;
  }
  .news-section .news-main .news-main-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper {
    flex: 0 0 auto;
    width: 100%;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -25px;
    width: 80px;
    height: 80px;
    padding: 15px 12px;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge .day {
    font-size: 22px;
  }
  .news-section .news-main .news-main-wrapper .news-main-img-wrapper .news-date-badge .month {
    font-size: 11px;
  }
  .news-section .news-main .news-main-wrapper .news-main-content {
    padding-top: 20px;
    text-align: center;
  }
  .news-section .news-main .news-main-wrapper .news-main-content h4 {
    font-size: 18px;
  }
  .news-section .news-main .news-main-wrapper .news-main-content p {
    font-size: 14px;
  }
  .news-section .news-main .news-main-wrapper .news-main-content .explore-news-btn {
    font-size: 14px;
    padding: 10px 28px !important;
  }
  .news-section .news-divider {
    margin: 40px 0;
  }
  .news-section .news-list {
    flex-direction: column;
    gap: 25px;
  }
  .news-section .news-list .news-item {
    gap: 12px;
  }
  .news-section .news-list .news-item .news-item-header {
    gap: 12px;
  }
  .news-section .news-list .news-item .news-item-header .news-item-date-wrapper .news-item-date {
    min-width: 70px;
    padding: 10px 8px;
  }
  .news-section .news-list .news-item .news-item-header .news-item-date-wrapper .news-item-date .day {
    font-size: 20px;
  }
  .news-section .news-list .news-item .news-item-header .news-item-date-wrapper .news-item-date .month {
    font-size: 11px;
  }
  .news-section .news-list .news-item .news-item-header h5 {
    font-size: 16px;
  }
  .news-section .news-list .news-item p {
    font-size: 14px;
  }
  footer {
    padding: 40px 0 20px;
  }
  footer .container .row {
    flex-direction: column;
    gap: 30px;
  }
  footer .container .col-lg-5 .row {
    flex-direction: column;
    gap: 25px;
  }
  footer .container .col-lg-5 .col-md-4 {
    width: 100%;
  }
  footer .container .col-lg-7 .row {
    flex-direction: column;
    gap: 30px;
  }
  footer .container .col-lg-7 .col,
  footer .container .col-lg-7 .col-auto {
    width: 100%;
  }
  footer .container .col-lg-7 form .row.g-3 {
    flex-direction: column;
    gap: 15px;
  }
  footer .container .col-lg-7 form .row.g-3 .col-md-4 {
    width: 100%;
  }
  footer .container .col-lg-7 .col-auto {
    text-align: center;
  }
  footer .container .col-lg-7 .col-auto .footer-contact {
    justify-content: center;
  }
  footer .footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
  }
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 16px;
  }
  .about-page-banner {
    padding: 100px 0 60px;
  }
  .about-page-banner h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .about-page-banner p {
    font-size: 14px;
    padding: 0 15px;
  }
  .about-page-banner .floating-shape-1,
  .about-page-banner .floating-shape-2 {
    display: none;
  }
  .section.py-5[style*=background] {
    padding: 40px 0;
  }
  .section.py-5[style*=background] .container .row {
    flex-direction: column;
    gap: 25px;
  }
  .section.py-5[style*=background] .container .row .col-lg-6 {
    width: 100%;
  }
  .section.py-5[style*=background] .container .row .col-lg-6 img {
    border-radius: 12px;
  }
  .section.py-5[style*=background] .container .row .col-lg-6 .position-absolute {
    transform: none !important;
    position: relative !important;
    margin-top: 15px;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .section.py-5[style*=background] .container .row .col-lg-6 .position-absolute .stat-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .section.py-5[style*=background] .container .row .col-lg-6 .position-absolute .stat-icon-wrapper i {
    font-size: 22px;
  }
  .section.py-5[style*=background] .container .row .col-lg-6 .position-absolute h4 {
    font-size: 18px;
  }
  .section.py-5[style*=background] .container .row h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .section.py-5[style*=background] .container .row p {
    font-size: 14px;
    line-height: 1.8;
  }
  .section.py-5[style*=background] .container .row .d-flex {
    flex-direction: column;
    gap: 12px;
  }
  .section.py-5[style*=background] .container .row .d-flex .btn {
    width: 100%;
    font-size: 14px;
    padding: 12px 20px;
  }
  .stat-card {
    padding: 25px 15px;
  }
  .stat-card .stat-number {
    font-size: 32px;
  }
  .stat-card .stat-number span {
    font-size: 24px;
  }
  .stat-card h5 {
    font-size: 16px;
  }
  .stat-card p {
    font-size: 13px;
  }
  .section-divider {
    margin: 40px 0;
  }
  .timeline-item {
    padding-left: 30px;
    margin-bottom: 35px;
  }
  .timeline-item .timeline-dot {
    width: 22px;
    height: 22px;
    left: -11px;
  }
  .timeline-item .timeline-content {
    padding: 20px;
    border-radius: 12px;
  }
  .timeline-item .timeline-content .timeline-year {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .timeline-item .timeline-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .timeline-item .timeline-content p {
    font-size: 14px;
  }
  .culture-card {
    padding: 25px 20px;
  }
  .culture-card .culture-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    font-size: 28px;
  }
  .culture-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .culture-card p {
    font-size: 14px;
    line-height: 1.7;
  }
  .honor-card {
    padding: 20px;
  }
  .honor-card .honor-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    font-size: 32px;
  }
  .honor-card h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .honor-card p {
    font-size: 13px;
  }
  .team-card .team-img-wrapper {
    height: 220px;
  }
  .team-card .team-info {
    padding: 18px;
  }
  .team-card .team-info h5 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .team-card .team-info p.text-success {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .team-card .team-info p.text-muted {
    font-size: 13px;
  }
  footer .container .row .col-lg-4 {
    width: 100%;
  }
  footer .container .row .footer-logo img {
    height: 36px !important;
  }
  footer .container .row .footer-intro {
    font-size: 14px;
  }
  footer .container .row .row {
    gap: 20px !important;
  }
  footer .container .row .row .col-md-6 {
    width: 100%;
  }
  footer .container .row h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  footer .container .row .footer-menu li a {
    font-size: 14px;
  }
  footer .container .row .footer-contact li {
    font-size: 14px;
  }
  footer .container .row .footer-contact li i {
    font-size: 16px;
  }
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-title-wrapper {
  margin-bottom: 45px;
}

.section-title {
  font-size: 14px;
  color: var(--primary-green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0;
  line-height: 1.2;
}

.hero-banner {
  position: relative;
  min-height: 600px;
  background: linear-gradient(135deg, #0f1f3c 0%, #1a2e4d 50%, #0a1628 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  background-size: cover;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, black, transparent);
  opacity: 0.65;
}

.hero-banner::after {
  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><radialGradient id="g1" cx="20%25" cy="30%25"><stop offset="0%25" style="stop-color:%2300B894;stop-opacity:0.2"/><stop offset="100%25" style="stop-color:%2300B894;stop-opacity:0"/></radialGradient><radialGradient id="g2" cx="80%25" cy="70%25"><stop offset="0%25" style="stop-color:%236C5CE7;stop-opacity:0.15"/><stop offset="100%25" style="stop-color:%236C5CE7;stop-opacity:0"/></radialGradient></defs><circle cx="20" cy="30" r="50" fill="url(%23g1)"/><circle cx="80" cy="70" r="60" fill="url(%23g2)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.hero-year {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-green);
  padding: 15px 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
}
.hero-year span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 10px;
}

.intro-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 158, 95, 0.05) 0%, transparent 70%);
}
.intro-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10, 35, 66, 0.03) 0%, transparent 60%);
}

.intro-image-container {
  position: relative;
  padding: 20px;
}

.intro-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.5s ease;
}
.intro-image-frame:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.intro-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.intro-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.intro-image-frame:hover .intro-video-overlay {
  opacity: 1;
}

.play-button {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}
.play-button:hover {
  transform: scale(1.1);
  background: var(--primary-green);
}
.play-button:hover .play-icon i {
  color: white;
}

.play-icon i {
  font-size: 24px;
  color: var(--primary-green);
  margin-left: 4px;
  transition: color 0.3s ease;
}

.intro-image-decoration {
  position: absolute;
  border-radius: 20px;
  z-index: -1;
}
.intro-image-decoration.decoration-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00b894 100%);
  opacity: 0.1;
  top: -40px;
  right: -40px;
  transform: rotate(45deg);
}
.intro-image-decoration.decoration-2 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a5f 100%);
  opacity: 0.08;
  bottom: -20px;
  left: -20px;
  border-radius: 50%;
}

.intro-achievements {
  position: absolute;
  bottom: -30px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.achievement-card {
  background: white;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.achievement-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  display: block;
}

.achievement-label {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  display: block;
}

.intro-content-wrapper {
  padding-left: 30px;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 158, 95, 0.1);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.badge-icon i {
  font-size: 14px;
}

.intro-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green) 0%, transparent 100%);
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
}

.intro-description {
  margin-bottom: 40px;
}
.intro-description p {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
}
.intro-description p:last-child {
  margin-bottom: 0;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.highlight-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.highlight-icon.bg-green {
  background: linear-gradient(135deg, rgba(0, 158, 95, 0.1) 0%, rgba(0, 158, 95, 0.05) 100%);
}
.highlight-icon.bg-green i {
  color: var(--primary-green);
}
.highlight-icon.bg-blue {
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.1) 0%, rgba(10, 35, 66, 0.05) 100%);
}
.highlight-icon.bg-blue i {
  color: var(--dark-blue);
}
.highlight-icon i {
  font-size: 22px;
}

.highlight-content {
  flex: 1;
}

.highlight-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.highlight-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.intro-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.intro-actions .btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.intro-actions .btn.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, #00b894 100%);
  border: none;
  color: white;
}
.intro-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 158, 95, 0.3);
}
.intro-actions .btn.btn-outline-primary {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}
.intro-actions .btn.btn-outline-primary:hover {
  background: var(--primary-green);
  color: white;
}

.culture-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}
.culture-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 158, 95, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.culture-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 158, 95, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.culture-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 30px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.culture-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.4s ease;
}
.culture-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.culture-item:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.culture-item:hover .culture-item-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 158, 95, 0.4);
}

.culture-item-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00b87a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 158, 95, 0.3);
}
.culture-item-icon-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}

.culture-item-icon {
  font-size: 32px;
  color: white;
  position: relative;
  z-index: 1;
}

.culture-item-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 12px;
  text-align: center;
}

.culture-item-desc {
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.7;
  max-width: 200px;
}

.timeline-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a1628 0%, #0f1f3c 50%, #1a2e4d 100%);
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/images/about-bg.jpg") center/cover;
  opacity: 0.08;
}

.timeline-section-content {
  position: relative;
  z-index: 1;
}

.timeline-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.timeline-header-left {
  text-align: left;
}
.timeline-header-left .section-title {
  color: var(--primary-green);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.timeline-header-left .section-heading {
  color: white;
  font-size: 36px;
  margin-bottom: 0;
}

.timeline-swiper-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline-swiper-button-prev,
.timeline-swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 158, 95, 0.3);
}
.timeline-swiper-button-prev:hover,
.timeline-swiper-button-next:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 158, 95, 0.4);
}
.timeline-swiper-button-prev i,
.timeline-swiper-button-next i {
  font-size: 18px;
}

.timeline-swiper {
  padding: 0;
}
.timeline-swiper .swiper-wrapper {
  display: flex;
  align-items: flex-start;
}
.timeline-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: 280px;
}
.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}
.timeline-card:hover {
  background: rgba(0, 158, 95, 0.1);
  border-color: rgba(0, 158, 95, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.timeline-card:hover::before {
  opacity: 1;
}
.timeline-card:hover .timeline-card-dot {
  border-color: var(--primary-green);
  box-shadow: 0 0 25px rgba(0, 158, 95, 0.5);
}
.timeline-card:hover .timeline-card-dot::before {
  opacity: 1;
  width: 50px;
  height: 50px;
}
.timeline-card:hover .timeline-card-dot-inner {
  transform: scale(1.3);
}
.timeline-card:hover .timeline-card-year {
  color: var(--primary-green);
}
.timeline-card:hover .timeline-card-line {
  opacity: 1;
  height: 40px;
}
.timeline-card:hover .timeline-card-desc {
  color: rgba(255, 255, 255, 0.8);
}

.timeline-card-top {
  margin-bottom: 15px;
}

.timeline-card-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 158, 95, 0.15);
  border: 2px solid rgba(0, 158, 95, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}
.timeline-card-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 158, 95, 0.1);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.timeline-card-dot-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-green);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.timeline-card-year {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.timeline-card-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, var(--primary-green), transparent);
  margin-bottom: 20px;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.timeline-card-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-card-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.timeline-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.honors-section {
  padding: 100px 0;
  background: white;
}

.honors-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.honors-header {
  text-align: left;
}
.honors-header h3 {
  color: var(--primary-green);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.honors-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0;
}

.honors-swiper-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.honors-swiper-button-prev,
.honors-swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.honors-swiper-button-prev:hover,
.honors-swiper-button-next:hover {
  background: var(--primary-green);
  color: white;
}
.honors-swiper-button-prev i,
.honors-swiper-button-next i {
  font-size: 18px;
}

.honor-card {
  background: white;
  border-radius: 20px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}
.honor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.honor-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-green) 0%, #007a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}
.honor-card-icon i {
  font-size: 36px;
  color: white;
}

.honor-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.honor-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.gallery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #f0fdf4 100%);
  position: relative;
}
.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 158, 95, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(0, 158, 95, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.gallery-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-header {
  text-align: left;
}
.gallery-header h3 {
  color: var(--primary-green);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.gallery-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0;
}

.gallery-swiper-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-swiper-button-prev,
.gallery-swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.gallery-swiper-button-prev:hover,
.gallery-swiper-button-next:hover {
  background: var(--primary-green);
  color: white;
}
.gallery-swiper-button-prev i,
.gallery-swiper-button-next i {
  font-size: 18px;
}

.gallery-slide-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}
.gallery-slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-slide-item:hover img {
  transform: scale(1.1);
}
.gallery-slide-item:hover .gallery-slide-overlay {
  opacity: 1;
}

.gallery-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 31, 60, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-slide-overlay h4 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.gallery-slide-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

.products-page .hero-banner {
  min-height: 550px;
}

.products-page .hero-content {
  padding-top: 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
}

.products-section {
  padding: 80px 0;
  background: white;
}

.products-filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-item {
  position: relative;
}
.filter-item.has-submenu .filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-item.has-submenu .filter-tab i {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.filter-item.has-submenu:hover .filter-tab {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: white;
}
.filter-item.has-submenu:hover .filter-tab i {
  transform: rotate(180deg);
}

.filter-tab {
  padding: 12px 24px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-tab:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}
.filter-tab.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

.filter-submenu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 160px;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
  display: none;
  z-index: 99;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.filter-item:hover .filter-submenu, .filter-item.open .filter-submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.filter-submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 16px;
  width: 12px;
  height: 12px;
  background: white;
  border-left: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
  transform: rotate(45deg);
}

.filter-subtab {
  display: block;
  width: 100%;
  padding: 10px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-subtab:hover {
  background: #f8f9fa;
  color: var(--primary-green);
}
.filter-subtab.active {
  background: linear-gradient(135deg, rgba(0, 158, 95, 0.1) 0%, rgba(0, 158, 95, 0.05) 100%);
  color: var(--primary-green);
  font-weight: 500;
  position: relative;
}
.filter-subtab.active::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--primary-green);
  border-radius: 50%;
}

.products-search {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
.products-search:focus-within {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 158, 95, 0.1);
}

.search-input {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 14px;
  width: 200px;
}

.search-btn {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.3s ease;
}
.search-btn:hover {
  color: var(--primary-green);
}

.products-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.sort-label {
  font-size: 14px;
  color: #6b7280;
}

.sort-select {
  padding: 10px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  outline: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 30px;
  transition: transform 0.5s ease;
}

.product-card-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;
  transition: opacity 0.3s ease;
}

.overlay-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  transition: all 0.3s ease;
}
.overlay-link:hover {
  background: var(--primary-green);
  color: white;
  transform: scale(1.1);
}

.product-card-content {
  padding: 25px;
}

.product-card-category {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 158, 95, 0.08);
  color: var(--primary-green);
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.product-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 16px;
  line-height: 1.3;
}

.product-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.product-card-features li {
  font-size: 15px;
  color: #6b7280;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card-features li i {
  color: var(--primary-green);
  font-size: 16px;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.product-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
}

.product-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  color: var(--dark-blue);
  font-weight: 500;
  transition: all 0.3s ease;
}
.product-card-link:hover {
  color: var(--primary-green);
}

.products-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-list li {
  margin: 0;
}
.pagination-list li.active a {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}
.pagination-list li.disabled a {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: white;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}
.pagination-list li a:hover:not(.disabled) {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.products-recommend {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .recommend-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recommend-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.recommend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
.recommend-card:hover .recommend-card-image img {
  transform: scale(1.05);
}

.recommend-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}
.recommend-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 25px;
  transition: transform 0.5s ease;
}

.recommend-card-content {
  padding: 25px;
}

.recommend-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.recommend-card-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.6;
}

.recommend-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recommend-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
}

.recommend-card-btn {
  padding: 10px 24px;
  background: var(--primary-green);
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.recommend-card-btn:hover {
  background: #007a4a;
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .hero-banner {
    min-height: 400px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-year {
    font-size: 24px;
    padding: 12px 30px;
  }
  .intro-section,
  .culture-section,
  .timeline-section,
  .honors-section,
  .gallery-section {
    padding: 60px 0;
  }
  .section-heading {
    font-size: 26px !important;
  }
  .section-title {
    font-size: 12px !important;
  }
  .intro-text h2 {
    font-size: 26px;
  }
  .timeline-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .timeline-swiper-controls {
    margin-top: 10px;
  }
  .timeline-card {
    min-height: 240px;
    padding: 20px 15px;
  }
  .timeline-card-year {
    font-size: 26px;
  }
  .timeline-card-title {
    font-size: 16px;
  }
  .timeline-card-desc {
    font-size: 12px;
  }
  .culture-item {
    padding: 30px 20px;
  }
  .culture-item-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  .culture-item-icon {
    font-size: 24px;
  }
  .culture-item-title {
    font-size: 18px;
  }
  .culture-item-desc {
    font-size: 13px;
  }
  .honors-header-wrapper,
  .gallery-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .honors-swiper-controls,
  .gallery-swiper-controls {
    margin-top: 10px;
  }
  .products-section {
    padding: 50px 0;
  }
  .products-filter-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .filter-tabs {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .filter-item {
    width: 100%;
  }
  .filter-item.has-submenu .filter-tab {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }
  .filter-item.has-submenu .filter-tab i {
    transition: transform 0.3s ease;
  }
  .filter-item.has-submenu:hover .filter-tab {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(0, 158, 95, 0.05);
    border-color: var(--primary-green);
    color: var(--primary-green);
  }
  .filter-tab {
    padding: 12px 16px;
    font-size: 14px;
    text-align: left;
    border-radius: 12px;
  }
  .filter-submenu {
    position: static;
    width: 100%;
    border: none;
    border-top: 1px solid #eee;
    border-radius: 0;
    box-shadow: none;
    background: #fafafa;
    padding: 8px 0;
    opacity: 1;
    transform: none;
    display: none;
  }
  .filter-item:hover .filter-submenu, .filter-item.open .filter-submenu {
    display: block;
  }
  .filter-submenu::before {
    display: none;
  }
  .filter-subtab {
    padding: 10px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
  }
  .filter-subtab:last-child {
    border-bottom: none;
  }
  .filter-subtab:hover, .filter-subtab.active {
    background: rgba(0, 158, 95, 0.08);
    color: var(--primary-green);
  }
  .search-input {
    width: 150px;
  }
  .product-card-content {
    padding: 20px;
  }
  .product-card-title {
    font-size: 16px;
  }
  .product-card-price {
    font-size: 18px;
  }
  .products-recommend {
    padding: 50px 0;
  }
  .recommend-card-content {
    padding: 20px;
  }
  .recommend-card-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}
.product-detail-section {
  background: var(--light-gray);
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 991px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.product-detail-gallery {
  display: flex;
  flex-direction: column;
}
.product-detail-gallery .product-main-image {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-detail-gallery .product-main-image img {
  max-height: 400px;
  width: auto;
  transition: transform var(--transition-normal);
}
.product-detail-gallery .product-thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.product-detail-gallery .product-thumbnail {
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-normal);
}
.product-detail-gallery .product-thumbnail:hover {
  border-color: var(--primary-green);
}
.product-detail-gallery .product-thumbnail.active {
  border-color: var(--primary-green);
}
.product-detail-gallery .product-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-detail-card {
  padding: 40px;
}

.product-detail-category {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 158, 95, 0.1);
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
}

.product-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
  line-height: 1.3;
}

.product-detail-desc {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.product-features-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 25px;
  margin-bottom: 30px;
}

.product-features-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 15px;
  border-bottom: 1px solid #e8e8e8;
}
.product-features-list li:last-child {
  border-bottom: none;
}
.product-features-list li i {
  color: var(--primary-green);
  font-size: 16px;
}

.product-actions {
  display: flex;
  gap: 15px;
}
.product-actions .btn-back-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--border-radius-xl);
  font-weight: 500;
  transition: all var(--transition-normal);
}
.product-actions .btn-back-list:hover {
  background: #e0e0e0;
  color: var(--text-dark);
}
.product-actions .btn-back-list i {
  font-size: 14px;
}
.product-actions .btn-consult {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-xl);
  font-weight: 500;
  transition: all var(--transition-normal);
}
.product-actions .btn-consult:hover {
  background: var(--primary-green-light);
  color: var(--white);
}
.product-actions .btn-consult i {
  font-size: 16px;
}

.product-tabs-section {
  background: var(--white);
}

.product-tabs-header {
  margin-bottom: 40px;
}

.product-tabs-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--light-gray);
  border: none;
  border-radius: var(--border-radius-xl);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-normal);
}
.product-tab-btn i {
  font-size: 18px;
  color: var(--text-light);
  transition: color var(--transition-normal);
}
.product-tab-btn:hover {
  background: #e8e8e8;
}
.product-tab-btn.active {
  background: var(--primary-green);
  color: var(--white);
}
.product-tab-btn.active i {
  color: var(--white);
}

.product-tabs-content {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
}

.product-tab-panel {
  display: none;
  padding: 40px;
}
.product-tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-content-wrapper {
  max-width: 100%;
}

.tab-section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-green);
  display: inline-block;
}

.tab-content-text {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.advantage-item {
  background: var(--light-gray);
  border-radius: var(--border-radius-lg);
  padding: 25px 20px;
  text-align: center;
  transition: all var(--transition-normal);
}
.advantage-item:hover {
  background: #e8e8e8;
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}
.advantage-icon i {
  font-size: 24px;
  color: var(--primary-green);
}

.advantage-text h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 5px;
}
.advantage-text p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.specs-table-wrapper {
  overflow-x: auto;
}

.tab-content-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.tab-content-wrapper table tr {
  border-bottom: 1px solid #eee;
}
.tab-content-wrapper table tr:nth-child(odd) {
  background: var(--light-gray);
}
.tab-content-wrapper table tr:hover {
  background: rgba(0, 158, 95, 0.05);
}
.tab-content-wrapper table td {
  padding: 16px 20px;
  font-size: 15px;
}
.tab-content-wrapper table .spec-label {
  font-weight: 600;
  color: var(--dark-blue);
  width: 35%;
}
.tab-content-wrapper table .spec-value {
  color: var(--text-light);
}

.application-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .application-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .application-cards-grid {
    grid-template-columns: 1fr;
  }
}

.application-card {
  background: var(--light-gray);
  border-radius: var(--border-radius-lg);
  padding: 30px 25px;
  text-align: center;
  transition: all var(--transition-normal);
}
.application-card:hover {
  background: #e8e8e8;
}
.application-card:hover .application-card-icon {
  background: var(--primary-green);
}
.application-card:hover .application-card-icon i {
  color: var(--white);
}

.application-card-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition-normal);
}
.application-card-icon i {
  font-size: 28px;
  color: var(--primary-green);
  transition: color var(--transition-normal);
}

.application-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.application-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.related-products-section {
  background: var(--light-gray);
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .product-detail-wrapper {
    gap: 20px;
  }
  .product-detail-card {
    padding: 25px;
  }
  .product-detail-title {
    font-size: 22px;
  }
  .product-features-card {
    padding: 20px;
  }
  .product-actions {
    flex-direction: column;
  }
  .product-actions .btn-back-list,
  .product-actions .btn-consult {
    width: 100%;
    justify-content: center;
  }
  .product-tab-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .product-tab-btn i {
    font-size: 16px;
  }
  .product-tab-panel {
    padding: 25px;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-item {
    padding: 20px 15px;
  }
  .advantage-icon {
    width: 50px;
    height: 50px;
  }
  .advantage-icon i {
    font-size: 20px;
  }
}
.industries-section {
  background: var(--light-gray);
}

.industries-filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: 40px;
}

.industry-filter-btn {
  padding: 12px 28px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius-xl);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-normal);
}
.industry-filter-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}
.industry-filter-btn.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
}

.industries-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.industry-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.industry-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.industry-item:hover .industry-item-image img {
  transform: scale(1.08);
}
.industry-item:hover .industry-item-link {
  opacity: 1;
}
.industry-item:hover .industry-item-title::after {
  width: 60px;
}
.industry-item.reverse {
  flex-direction: row-reverse;
}
.industry-item.reverse .industry-item-content {
  text-align: right;
  padding: 45px 35px 45px 40px;
}
.industry-item.reverse .industry-item-content::before {
  left: auto;
  right: 0;
}
.industry-item.reverse .industry-item-header {
  flex-direction: row-reverse;
}
.industry-item.reverse .industry-item-title::after {
  left: auto;
  right: 0;
}
.industry-item.reverse .industry-item-more {
  justify-content: flex-end;
}
.industry-item.reverse .industry-item-more i {
  order: 1;
}
.industry-item.reverse .industry-item-tags {
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .industry-item {
    gap: 0;
  }
}
@media (max-width: 767px) {
  .industry-item {
    flex-direction: column !important;
  }
  .industry-item.reverse .industry-item-content {
    text-align: left;
    padding: 30px 25px;
  }
  .industry-item.reverse .industry-item-content::before {
    left: 0;
    right: auto;
  }
  .industry-item.reverse .industry-item-header {
    flex-direction: row;
  }
  .industry-item.reverse .industry-item-title::after {
    left: 0;
    right: auto;
  }
  .industry-item.reverse .industry-item-more {
    justify-content: flex-start;
  }
  .industry-item.reverse .industry-item-more i {
    order: 0;
  }
  .industry-item.reverse .industry-item-tags {
    justify-content: flex-start;
  }
}

.industry-item-image {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
}
.industry-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 767px) {
  .industry-item-image {
    flex: none;
    width: 100%;
    height: 240px;
  }
}

.industry-item-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 24px;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.industry-item-link:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

.industry-item-content {
  flex: 1;
  padding: 45px 40px 45px 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-item-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: linear-gradient(180deg, var(--primary-green) 0%, rgba(0, 158, 95, 0.3) 100%);
  border-radius: 0 4px 4px 0;
}
@media (max-width: 767px) {
  .industry-item-content {
    padding: 30px 25px;
  }
  .industry-item-content::before {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 4px;
    transform: none;
    border-radius: 0 0 4px 4px;
  }
}

.industry-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.industry-item-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00a76a 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 158, 95, 0.3);
}
.industry-item-icon i {
  font-size: 24px;
  color: var(--white);
}
@media (max-width: 767px) {
  .industry-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .industry-item-icon i {
    font-size: 20px;
  }
}

.industry-item-number {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-green);
  letter-spacing: 2px;
  opacity: 0.8;
}

.industry-item-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
  position: relative;
  display: inline-block;
}
.industry-item-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
  transition: width 0.4s ease;
}
@media (max-width: 991px) {
  .industry-item-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .industry-item-title {
    font-size: 18px;
  }
  .industry-item-title::after {
    width: 40px;
  }
}

.industry-item-desc {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .industry-item-desc {
    font-size: 14px;
  }
}

.industry-item-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.industry-item-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--light-gray);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 500;
}
.industry-item-tag i {
  color: var(--primary-green);
  font-size: 10px;
}

.industry-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.industry-item-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00a76a 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 158, 95, 0.3);
}
.industry-item-more i {
  font-size: 13px;
  transition: transform 0.3s ease;
}
.industry-item-more:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(0, 158, 95, 0.4);
}
.industry-item-more:hover i {
  transform: translateX(4px);
}
@media (max-width: 767px) {
  .industry-item-more {
    padding: 10px 20px;
    font-size: 13px;
  }
}

.industry-item-stats {
  display: flex;
  gap: 25px;
}
@media (max-width: 575px) {
  .industry-item-stats {
    gap: 15px;
  }
}

.industry-item-stat {
  text-align: center;
}
.industry-item-stat .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1;
}
@media (max-width: 767px) {
  .industry-item-stat .stat-value {
    font-size: 18px;
  }
}
.industry-item-stat .stat-label {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .industry-item-stat .stat-label {
    font-size: 10px;
  }
}

.industry-detail-section {
  background: var(--light-gray);
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1199px) {
  .industry-detail-grid {
    grid-template-columns: 1fr 340px;
  }
}
@media (max-width: 991px) {
  .industry-detail-grid {
    grid-template-columns: 1fr;
  }
}

.industry-detail-main {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.industry-detail-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.industry-detail-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .industry-detail-hero {
    height: 280px;
  }
}

.industry-detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 35, 66, 0.9) 0%, rgba(10, 35, 66, 0.4) 50%, rgba(10, 35, 66, 0.2) 100%);
  display: flex;
  align-items: flex-end;
}

.industry-detail-hero-content {
  padding: 40px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .industry-detail-hero-content {
    padding: 25px;
  }
}

.industry-detail-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-green);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.industry-detail-main-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
@media (max-width: 767px) {
  .industry-detail-main-title {
    font-size: 26px;
  }
}

.industry-detail-content {
  padding: 40px;
}
@media (max-width: 767px) {
  .industry-detail-content {
    padding: 25px;
  }
}

.industry-detail-intro {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.industry-detail-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
  margin: 0;
}

.industry-detail-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
.industry-detail-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.industry-detail-block-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.industry-detail-block-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00a76a 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 158, 95, 0.3);
}
.industry-detail-block-icon i {
  font-size: 22px;
  color: var(--white);
}
@media (max-width: 767px) {
  .industry-detail-block-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .industry-detail-block-icon i {
    font-size: 18px;
  }
}

.industry-detail-block-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0;
}
@media (max-width: 767px) {
  .industry-detail-block-title {
    font-size: 18px;
  }
}

.industry-detail-block-content {
  padding-left: 65px;
}
@media (max-width: 767px) {
  .industry-detail-block-content {
    padding-left: 0;
    margin-top: 15px;
  }
}
.industry-detail-block-content > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 25px;
}

.industry-applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .industry-applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .industry-applications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.industry-application-item {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.4s ease;
}
.industry-application-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
.industry-application-item:hover .application-item-icon {
  background: var(--primary-green);
  color: var(--white);
}
@media (max-width: 575px) {
  .industry-application-item {
    padding: 20px 15px;
  }
}

.application-item-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 158, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.4s ease;
}
.application-item-icon i {
  font-size: 20px;
  color: var(--primary-green);
}
@media (max-width: 767px) {
  .application-item-icon {
    width: 44px;
    height: 44px;
  }
  .application-item-icon i {
    font-size: 18px;
  }
}

.industry-application-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .industry-application-item h4 {
    font-size: 14px;
  }
}

.industry-application-item p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

.industry-advantages {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.industry-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.4s ease;
}
.industry-advantage-item:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.advantage-icon {
  flex-shrink: 0;
}
.advantage-icon i {
  font-size: 24px;
  color: var(--primary-green);
}

.advantage-text h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 5px;
}
.advantage-text p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.industry-detail-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .industry-detail-sidebar {
    position: static;
  }
}

.sidebar-back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}
.sidebar-back-btn i {
  color: var(--primary-green);
  transition: transform 0.3s ease;
}
.sidebar-back-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}
.sidebar-back-btn:hover i {
  transform: translateX(-4px);
}

.sidebar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
}
.sidebar-card:last-child {
  margin-bottom: 0;
}

.sidebar-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-green);
}

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

.sidebar-industry-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.4s ease;
}
.sidebar-industry-item:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}
.sidebar-industry-item:hover .sidebar-industry-info span {
  gap: 10px;
  color: var(--primary-green);
}

.sidebar-industry-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-industry-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar-industry-info {
  flex: 1;
}
.sidebar-industry-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 5px;
  line-height: 1.4;
}
.sidebar-industry-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  transition: all 0.3s ease;
}
.sidebar-industry-info span i {
  font-size: 10px;
}

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

.sidebar-product-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.4s ease;
}
.sidebar-product-item:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}
.sidebar-product-item:hover .product-price {
  background: var(--primary-green);
  color: var(--white);
}

.sidebar-product-image {
  width: 70px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.sidebar-product-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sidebar-product-info {
  flex: 1;
}
.sidebar-product-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-price {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 158, 95, 0.1);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.news-section {
  background: var(--light-gray);
}

.news-filter {
  display: flex;
  justify-content: center;
}

.filter-tabs {
  display: inline-flex;
  gap: 8px;
  background: var(--white);
  padding: 6px;
  border-radius: 50px;
}

.filter-tab {
  padding: 10px 24px;
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-tab:hover {
  color: var(--primary-green);
}
.filter-tab.active {
  background: var(--primary-green);
  color: var(--white);
}

.news-featured {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.news-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 320px;
}
@media (max-width: 991px) {
  .news-featured-card {
    grid-template-columns: 1fr;
    max-height: auto;
  }
}

.news-featured-image {
  position: relative;
  overflow: hidden;
}
.news-featured-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.news-featured-card:hover .news-featured-image img {
  transform: scale(1.05);
}

.news-featured-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.news-featured-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary-green);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 8px;
}
.news-featured-date .day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.news-featured-date .month {
  font-size: 11px;
  opacity: 0.9;
}

.news-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .news-featured-content {
    padding: 25px;
  }
}

.news-featured-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 158, 95, 0.1);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
  width: -moz-fit-content;
  width: fit-content;
}

.news-featured-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .news-featured-title {
    font-size: 20px;
  }
}

.news-featured-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.news-featured-link i {
  transition: transform 0.3s ease;
}
.news-featured-card:hover .news-featured-link {
  gap: 12px;
}
.news-featured-card:hover .news-featured-link i {
  transform: translateX(4px);
}

.news-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.divider-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.news-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.news-card-link {
  display: block;
  padding: 25px;
  color: inherit;
  text-decoration: none;
}

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

.news-card-date {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.news-card-date .day {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
}
.news-card-date .month {
  font-size: 12px;
  color: var(--text-light);
}

.news-card-tag {
  padding: 4px 12px;
  background: rgba(0, 158, 95, 0.1);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}

.news-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.news-card-more i {
  transition: transform 0.3s ease;
}
.news-card:hover .news-card-more {
  gap: 10px;
}
.news-card:hover .news-card-more i {
  transform: translateX(4px);
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 8px;
}
.pagination .page-item.disabled .page-link {
  background: var(--light-gray);
  border-color: var(--light-gray);
  color: var(--text-light);
}
.pagination .page-item.active .page-link {
  background: var(--primary-green);
  border-color: var(--primary-green);
}
.pagination .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  color: var(--text-dark);
  font-size: 14px;
  transition: all 0.3s ease;
}
.pagination .page-link:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
}

.news-detail-section {
  background: var(--light-gray);
}

.news-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1199px) {
  .news-detail-grid {
    grid-template-columns: 1fr 340px;
  }
}
@media (max-width: 991px) {
  .news-detail-grid {
    grid-template-columns: 1fr;
  }
}

.news-detail-main {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}

.news-detail-header {
  padding: 40px 40px 30px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 767px) {
  .news-detail-header {
    padding: 25px 25px 20px;
  }
}

.back-to-list-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.back-to-list-btn:hover {
  color: var(--primary-green);
}

.news-detail-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 158, 95, 0.1);
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
}

.news-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.4;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .news-detail-title {
    font-size: 20px;
  }
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  color: var(--text-light);
  font-size: 14px;
}
.news-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-detail-meta span i {
  color: var(--primary-green);
}

.news-detail-share-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-left: auto;
}
.news-detail-share-inline .share-icons {
  display: inline-flex;
  gap: 8px;
  margin-left: 5px;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.news-detail-share-inline:hover .share-icons {
  opacity: 1;
  transform: translateY(0);
}
.news-detail-share-inline .share-icons i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--text-light);
  transition: all 0.3s ease;
}
.news-detail-share-inline .share-icons i:hover {
  background: var(--primary-green);
  color: var(--white);
}

.news-detail-image {
  width: 100%;
  max-height: 450px;
  overflow: hidden;
}
.news-detail-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-detail-content {
  padding: 40px;
}
@media (max-width: 767px) {
  .news-detail-content {
    padding: 25px;
  }
}

.news-detail-intro {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}
.news-detail-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
  margin: 0;
}

.news-detail-block {
  margin-bottom: 35px;
}

.news-detail-block-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 18px;
  padding-left: 15px;
  border-left: 4px solid var(--primary-green);
}
@media (max-width: 767px) {
  .news-detail-block-title {
    font-size: 17px;
  }
}

.news-detail-block-content > p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
}

.news-detail-tip {
  background: linear-gradient(135deg, rgba(0, 158, 95, 0.05) 0%, rgba(0, 158, 95, 0.1) 100%);
  border-left: 4px solid var(--primary-green);
  padding: 25px 30px;
  border-radius: 0 12px 12px 0;
  margin: 35px 0;
}
.news-detail-tip h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0 0 12px;
}
.news-detail-tip h3 i {
  color: var(--primary-green);
}
.news-detail-tip p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.news-detail-guide {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(0, 158, 95, 0.06) 0%, rgba(0, 158, 95, 0.12) 100%);
  border: 1px solid rgba(0, 158, 95, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 30px;
}
.news-detail-guide .guide-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00a76a 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 158, 95, 0.25);
}
.news-detail-guide .guide-icon i {
  font-size: 22px;
  color: var(--white);
}
.news-detail-guide .guide-content {
  flex: 1;
}
.news-detail-guide .guide-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.news-detail-guide .guide-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
}

.news-detail-pagination {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
@media (max-width: 767px) {
  .news-detail-pagination {
    flex-direction: column;
  }
}

.pagination-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
}
.pagination-item:hover {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}
.pagination-item.next {
  flex-direction: row-reverse;
}
.pagination-item.next .pagination-text {
  text-align: right;
}

.pagination-arrow {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.pagination-item:hover .pagination-arrow {
  background: var(--primary-green);
  color: var(--white);
}

.pagination-text {
  flex: 1;
}

.pagination-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.pagination-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-detail-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .news-detail-sidebar {
    position: static;
  }
}

.sidebar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
}

.sidebar-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}

.sidebar-category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--light-gray);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.sidebar-category-item:hover {
  background: linear-gradient(135deg, rgba(0, 158, 95, 0.08) 0%, rgba(0, 158, 95, 0.15) 100%);
  border-color: rgba(0, 158, 95, 0.3);
  transform: translateX(5px);
}
.sidebar-category-item.active {
  background: linear-gradient(135deg, var(--primary-green) 0%, #00a76a 100%);
  border-color: var(--primary-green);
}
.sidebar-category-item.active .category-name {
  color: var(--white);
  font-weight: 600;
}
.sidebar-category-item.active .category-count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.sidebar-category-item .category-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s ease;
}
.sidebar-category-item .category-count {
  min-width: 32px;
  height: 26px;
  padding: 0 10px;
  background: rgba(0, 158, 95, 0.12);
  color: var(--primary-green);
  font-size: 13px;
  font-weight: 600;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.sidebar-news-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebar-news-item:hover {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
}

.sidebar-news-image {
  width: 70px;
  height: 55px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.sidebar-news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar-news-info {
  flex: 1;
}
.sidebar-news-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-news-info span {
  font-size: 12px;
  color: var(--text-light);
}

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

.sidebar-hot-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebar-hot-item:hover {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.hot-rank {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  min-width: 30px;
}

.hot-content {
  flex: 1;
}
.hot-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hot-content span {
  font-size: 12px;
  color: var(--text-light);
}

.contact-section {
  background: var(--light-gray);
}

.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.contact-intro-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.contact-intro-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}
.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.contact-info-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00a76a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 158, 95, 0.3);
}
.contact-info-card .card-icon i {
  font-size: 28px;
  color: var(--white);
}
.contact-info-card .card-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
}
.contact-info-card .card-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0 0 5px;
}
.contact-info-card .card-content p.highlight {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 767px) {
  .contact-form-card {
    padding: 25px;
  }
}
.contact-form-card .form-header {
  margin-bottom: 30px;
}
.contact-form-card .form-header h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}
.contact-form-card .form-header h2 i {
  color: var(--primary-green);
}
.contact-form-card .form-header p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.form-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 575px) {
  .form-row-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.form-group label i {
  color: var(--primary-green);
  font-size: 13px;
}
.form-group label .required {
  color: #e74c3c;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
}
.form-group input::-moz-placeholder, .form-group select::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: #aaa;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 158, 95, 0.1);
}
.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #00a76a 100%);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.submit-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.submit-btn:hover {
  box-shadow: 0 15px 40px rgba(0, 158, 95, 0.35);
  transform: translateY(-3px);
}
.submit-btn:hover i {
  transform: translateX(5px);
}

.contact-map-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
}
.contact-map-card .map-header {
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
}
.contact-map-card .map-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0;
}
.contact-map-card .map-header h3 i {
  color: var(--primary-green);
}
.contact-map-card .map-placeholder {
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--text-light);
}
.contact-map-card .map-placeholder .map-icon {
  font-size: 50px;
  margin-bottom: 12px;
  opacity: 0.4;
}
.contact-map-card .map-placeholder p {
  font-size: 15px;
  margin-bottom: 5px;
}
.contact-map-card .map-placeholder small {
  font-size: 13px;
  opacity: 0.7;
}
.contact-map-card .map-info {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: var(--light-gray);
}
.contact-map-card .map-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-map-card .map-info-item i {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.contact-map-card .map-info-item span {
  font-size: 12px;
  color: var(--text-light);
}

.social-section {
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
}

.social-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 120px;
}
.social-link i {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  transition: all 0.3s ease;
}
.social-link span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}
.social-link.wechat i {
  background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
}
.social-link.weibo i {
  background: linear-gradient(135deg, #e6162d 0%, #c7142a 100%);
}
.social-link.linkedin i {
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}
.social-link.youtube i {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}
.social-link:hover {
  transform: translateY(-5px);
}
.social-link:hover i {
  transform: scale(1.1);
}

.navSidebar-button {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  height: 30px;
  width: 30px;
  transition: all 500ms ease;
}

.icon-dots-menu-one {
  position: relative;
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--white);
  transition: all 500ms ease;
}

.menu-toggle:hover .icon-dots-menu-one {
  width: 30px;
}

.icon-dots-menu-two {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--white);
  margin-top: 8px;
  margin-bottom: 8px;
  transition: all 500ms ease;
}

.icon-dots-menu-three {
  position: relative;
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--white);
  transition: all 500ms ease;
}

.menu-toggle:hover .icon-dots-menu-three {
  width: 30px;
}

.sidebar-section {
  padding-top: 20px;
  border-top: 1px solid #e8f5f0;
}

.sidebar-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a3d2e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-section-title i {
  color: var(--primary-green);
  font-size: 14px;
}

.language-selector {
  display: flex;
  gap: 10px;
}

.lang-option {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid #d9d9d9;
  border-radius: var(--border-radius-xl);
  background: white;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-option a {
  color: var(--text-dark);
}

.lang-option:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.lang-option.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

.lang-option.active a {
  color: white;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #666;
  font-size: 14px;
}

.contact-item i {
  width: 20px;
  color: var(--primary-green);
  font-size: 16px;
  text-align: center;
}

.contact-item span {
  flex: 1;
}

.breadcrumb {
  color: var(--white);
}
.breadcrumb .breadcrumb-item {
  color: var(--white);
}
.breadcrumb .breadcrumb-item a {
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
}
.breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-green);
}/*# sourceMappingURL=style.css.map */