/* Base Styles */
:root {
  --primary-color: #71bcb5;
  --primary-dark: #69b7bb;
  --secondary-color: #1a1a2e;
  --secondary-light: #1a1a2e;
  --text-color: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg-light: #f8f9fa;
  --bg-gray: #e4e8ec;
  --white: #fff;
}

/*
#267371
#71bcb5
#85cec6

#585858


*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

/* Custom Container Width */
.container {
  max-width: 1500px;
  padding-left: 20px;
  padding-right: 20px;
}



.bg-dark {

    background-color:#267371!important;
}


  /* 原有样式保持不变 */
        .modal { display: none; position: fixed; z-index: 100; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); }
        .modal-contentx { background: white; margin: 10% auto; padding: 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); width: 80%; max-width: 800px; }
        .url-table { width: 100%; border-collapse: collapse; }
        .url-table th, .url-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #ddd; }
        .url-table th { background-color: #f8f9fa; font-weight: 600; }
        .action-btn { padding: 6px 12px; margin: 0 3px; border-radius: 4px; cursor: pointer; transition: all 0.3s; }
        .btn-primaryx { background-color: #4285f4; color: white; border: none; }
        .btn-danger { background-color: #dc3545; color: white; border: none; }
        .btn-secondary { background-color: #6c757d; color: white; border: none; }
		#urlCountBadge{ position:absolute; left:30px;}

        .modal-header{ width:100%; }

        .modal-header span{    float: right;
    font-size: 30px;
    margin-top: -20px;}

 #clearAll{ padding: 10px;
    margin-top: 20px;}




@media (max-width: 1500px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 12px 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  font-size:18px;
}

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

.navbar-dark .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 5px;

  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 50%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  background: var(--white);
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  margin-top: 8px;
}

.dropdown-item {
  padding: 12px 20px;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 143, 0, 0.1) 100%);
  color: var(--primary-dark);
  padding-left: 25px;
}

.dropdown-divider {
  margin: 8px 0;
  border-color: rgba(0, 0, 0, 0.05);
}

.dropdown-toggle::after {
  margin-left: 6px;
  font-size: 0.75rem;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  gap: 12px;
  margin-left: 20px;
  align-items: center;
}

.nav-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center; position:relative;
}

.nav-btn:hover {
  background: rgba(255, 193, 7, 0.15);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: scale(1.12);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.nav-btn:focus {
  outline: none;
}

.nav-favorite-btn.active i {
  color: #ff4757;
  animation: favoritePulse 0.5s ease;
}

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

/* Search Container */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box {
  position: absolute;
  top: calc(100% + 15px);
  right: -20px;
  width: 340px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: row;
  overflow: hidden;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.search-box.active {
  display: flex;
  animation: searchSlideDown 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes searchSlideDown {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



#searchInput {
  flex: 1;
  padding: 18px 22px;
  border: none;
  font-size: 0.95rem;
  outline: none;
  background: var(--white);
  color: var(--text-color);
  font-family: inherit;
}

#searchInput::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

#searchInput:focus {
  background: #fafafa;
}

.search-submit {
  width: 58px;

  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}



/* Banner */
.banner {
  position: relative;
  overflow: hidden;
 
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;
  z-index: 1;
}

.banner-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  display: none;
  width: 100%;

}

.banner-slide.active {
  display: block;
  animation: bannerFadeIn 0.9s ease-in-out;
}

@keyframes bannerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.banner-full-img {
  width: 100%;
  height: 100%;

  transition: transform 8s ease;
}

.banner-slide.active .banner-full-img {
 
}

.banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #267371;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-btn:hover {
  background: #69b7bb;
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

.banner-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.banner-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #85cec6;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.banner-indicator.active {
  background: #267371;
  border-color: #267371;
  transform: scale(1.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
    padding: 4px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color:#ffffff;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}



/* Section Styles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* Products */
.products {
  padding: 40px 0;
  background: #f8f9fa;
}

.product-carousel {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: #267371;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
  left: -10px;
}

.carousel-next {
  right: -10px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.product-slide {
  min-width: 100%;
  display: none;
}

.product-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-card-large {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  position: relative;
}



.product-img-large {
  width: 50%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.6s ease;
}

.product-slide.active .product-img-large {
  transform: scale(1.02);
}

.product-info {
  padding: 20px;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}





.product-info::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(38, 115, 113, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}



.product-info h3 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.product-info p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  
  height:80px;
  
  	 display: -webkit-box;
 
  -webkit-box-orient: vertical;
  
  -webkit-line-clamp: 2;
  overflow: hidden;
  
  text-overflow: ellipsis;
  
  width: 100%;   
  
  
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features li {
  padding: 10px 0;
  color: #333;
  font-size: 1rem;
}

.product-features li i {
  color: #267371;
  margin-right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #267371;
  transform: scale(1.2);
}

.indicator:hover {
  background: #69b7bb;
}







/* Old product-card styles kept for other uses */
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.2rem;
  color: #1a1a2e;
}

.product-card p {
  padding: 0 20px 20px;
  color: #666;
  font-size: 0.9rem;
}

.product-card .btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.btn-outline-primary {
  border-color: #267371;
  color: #fff;
}

.btn-outline-primary:hover {
  background: #267371;
  border-color: #69b7bb;
  color: #fff;
}

/* Knowledge */
.knowledge {
  padding: 40px 0;
  background: #fff;
}






.knowledge-card {
  background: #267371;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.knowledge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.knowledge-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.knowledge-card:hover .knowledge-img {
  transform: scale(1.05);
}

.knowledge-content {
  padding: 25px;
}

.knowledge-content h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.knowledge-content h4 i {
  margin-right: 10px;
}

.knowledge-content p {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: -webkit-box;

	  
	 display: -webkit-box;
 
  -webkit-box-orient: vertical;
  
  -webkit-line-clamp: 2;
  overflow: hidden;
  
  text-overflow: ellipsis;
  
  width: 100%;   
      min-height: 50px;
	  
}

.read-more {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #fff;
}

/* News */
.news {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.news::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(113, 188, 181, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.news::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(38, 115, 113, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.news .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.news .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.news-swiper {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px;
  overflow: hidden;
}

.news-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
 
  transition: all 0.4s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.news-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.news-card h3 {
  font-size: 1.15rem;
  color: #1a1a2e;
  margin: 15px 20px 10px;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: auto;
}

.news-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 20px 15px;
  line-height: 1.7;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: auto;
}

.news-card .btn {
  margin: 0 20px 20px;
  align-self: flex-start;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(38, 115, 113, 0.3);
}

.news-swiper-btn {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 25px rgba(38, 115, 113, 0.3);
  transition: all 0.3s ease;
}

.news-swiper-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(38, 115, 113, 0.4);
}

.news-swiper-btn::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.news-swiper .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.news-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;

  border-radius: 50%;
  transition: all 0.3s ease;
}

.news-swiper .swiper-pagination-bullet-active {
 
  transform: scale(1.2);
}

/* News Responsive */
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }

  .news .section-title {
    font-size: 2.2rem;
  }

  .news-swiper {
    padding: 0px 50px 0px;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 30px 0;
  }

  .news .section-title {
    font-size: 1.8rem;
  }

  .news .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .news-swiper {
    padding: 0px 15px 0px;
  }

  .news-card {
    border-radius: 15px;
  }

  .news-img {
    height: 180px;
  }

  .news-swiper-btn {
    width: 44px;
    height: 44px;
    top: 35%;
  }

  .news-swiper .swiper-pagination {
    margin-top: 20px;
  }

  .news-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* About */
.about {
  padding: 80px 0;
 
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(113, 188, 181, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}



.about-bg {
  position: absolute;
  top: 0;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
}

.about-img {
  max-width: 100%;
  border-radius: 20px;
  height: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 5px solid #fff;
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.about-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.badge-text {
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.85rem;
}

.about-content {
  padding-left: 40px;
  z-index: 1;
  position: relative;
}

.about-title-wrapper {
  margin-bottom: 30px;
  position: relative;
}

.about-subtitle {
  color: #267371;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 3rem;
  color: #1a1a2e;
  margin-bottom: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #267371 0%, #71bcb5 100%);
  border-radius: 2px;
  margin-top: 15px;
}

.about-content p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 30px;
  font-weight: 400;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(113, 188, 181, 0.1) 0%, rgba(38, 115, 113, 0.1) 100%);
  border-radius: 50px;
  border: 1px solid rgba(113, 188, 181, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(113, 188, 181, 0.2) 0%, rgba(38, 115, 113, 0.2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(113, 188, 181, 0.2);
}

.feature-item i {
  color: #267371;
  font-size: 1.1rem;
}

.feature-item span {
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 0;

  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(113, 188, 181, 0.1);
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 10px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item.certifications {
  flex: 1.2;
 
}

.cert-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.cert-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;

}

.cert-item:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, rgba(113, 188, 181, 0.3) 0%, rgba(38, 115, 113, 0.3) 100%);
  border-color: rgba(113, 188, 181, 0.6);
  box-shadow: 0 8px 25px rgba(113, 188, 181, 0.3);
}

.cert-item i {
  font-size: 1.5rem;
  color: #267371;
  transition: color 0.3s ease;
}

.cert-item:hover i {
  color: #1a5a58;
}


.cert-item img {
  width: 55px;
  height: 55px;
}

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



#certCarousel .carousel-inner {
  padding: 5px 0;
}

#certCarousel .carousel-item {
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #267371;
  line-height: 1;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.about-btn {
  padding: 14px 40px;
  font-size: 1.1rem;
}

/* Industry & Case Section */
.industry-case-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 50%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.industry-case-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(113, 188, 181, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.industry-case-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(38, 115, 113, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Tabs */
.industry-case-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: #fff;
  border: 2px solid rgba(113, 188, 181, 0.3);
  border-radius: 50px;
  color: #555;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tab-btn i {
  font-size: 1.1rem;
  color: #71bcb5;
  transition: color 0.3s ease;
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(113, 188, 181, 0.2);
  border-color: rgba(113, 188, 181, 0.5);
}

.tab-btn.active {
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 25px rgba(38, 115, 113, 0.3);
}

.tab-btn.active i {
  color: #fff;
}

/* Tab Panels */
.tab-panel {
  display: none;
  animation: fadeInUp 0.5s ease;
  position: relative;
  z-index: 1;
}

.tab-panel.active {
  display: block;
}

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

/* Swiper containers */
.industry-swiper,
.case-swiper {
  padding:  0px;
  overflow: hidden;
}

.industry-swiper .swiper-slide,
.case-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Industry Card */
.industry-card,
.case-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;

  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover,
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.industry-img-wrapper,
.case-img-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.industry-img-wrapper img,
.case-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.industry-card:hover .industry-img-wrapper img,
.case-card:hover .case-img-wrapper img {
  transform: scale(1.08);
}

.industry-content,
.case-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.industry-content h4,
.case-content h4 {
  font-size: 1.15rem;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-weight: 700;
}

.industry-content p,
.case-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 15px;
}

.view-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #267371;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-details i {
  transition: transform 0.3s ease;
}

.view-details:hover {
  color: #1a5a58;
}

.view-details:hover i {
  transform: translateX(4px);
}

/* Swiper Navigation */
.industry-swiper-btn,
.case-swiper-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 6px 25px rgba(38, 115, 113, 0.3);
  transition: all 0.3s ease;
}

.industry-swiper-btn:hover,
.case-swiper-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(38, 115, 113, 0.4);
}

.industry-swiper-btn::after,
.case-swiper-btn::after {
  font-size: 1.1rem;
  font-weight: bold;
}

/* Swiper Pagination */
.industry-swiper .swiper-pagination,
.case-swiper .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.industry-swiper .swiper-pagination-bullet,
.case-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(113, 188, 181, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.industry-swiper .swiper-pagination-bullet-active,
.case-swiper .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  transform: scale(1.2);
}

/* Industry & Case Responsive */
@media (max-width: 991px) {
  .industry-case-section {
    padding: 30px 0;
  }

  .industry-case-tabs {
    gap: 15px;
    margin-bottom: 35px;
  }

  .tab-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .industry-swiper,
  .case-swiper {
    padding: 10px 50px 50px;
  }
}

@media (max-width: 767px) {
  .industry-case-section {
    padding: 40px 0;
  }

  .industry-case-tabs {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .tab-btn {
    width: 220px;
    justify-content: center;
    padding: 12px 20px;
  }

  .industry-swiper,
  .case-swiper {
    padding: 10px 15px 50px;
  }

  .industry-img-wrapper,
  .case-img-wrapper {
    height: 180px;
  }

  .industry-swiper-btn,
  .case-swiper-btn {
    width: 40px;
    height: 40px;
  }
}

/* Request A Quote */
.quote-section {  padding: 50px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.quote-content {
  display: flex;
  gap: 70px;
  align-items: flex-start;
  width: 100%;
}

.quote-left {
  flex: 1;
}

.quote-left h2 {
  font-size: 3rem;
  color: #1a1a2e;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.quote-subtitle {
  color: #6c757d;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote-left p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 40px;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quote-feature:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quote-feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-feature i {
  color: #85cec6;
  font-size: 1.5rem;
}

.quote-feature-text {
  flex: 1;
}

.quote-feature-title {
  color: #1a1a2e;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.quote-feature-desc {
  color: #777;
  font-size: 0.9rem;
}

.quote-form-wrapper {
  flex: 1;
}

.quote-form {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}



.quote-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.quote-form h3 {
  color: #1a1a2e;
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.quote-form-subtitle {
  color: #666;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 22px;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  color: #333;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
  resize: none;
  min-height: 120px;
}

.quote-submit {
  width: 100%;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 14px;
  margin-top: 20px;
  background: linear-gradient(135deg, #267371 0%, #267371 100%);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.quote-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 26, 46, 0.3);
}

.quote-submit:hover::before {
  left: 100%;
}

/* Responsive for mobile */
@media (max-width: 768px) {

.cert-row {

    gap: 20px;

}

.cert-item {
    width: 30px;
    height: 30px;

}

.cert-item img {
    width: 30px;
    height: 30px;
}

  .about-img {
    height: 50%;
  }
  .quote-section {
    padding: 30px 0;
  }

  .quote-content {
    flex-direction: column;
    gap: 40px;
  }

  .quote-left h2 {
    font-size: 2rem;
  }

  .quote-subtitle {
    font-size: 0.85rem;
    padding: 6px 15px;
    letter-spacing: 2px;
  }

  .quote-left p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .quote-feature {
    padding: 15px;
    gap: 15px;
  }

  .quote-feature-icon {
    width: 45px;
    height: 45px;
  }

  .quote-feature i {
    font-size: 1.2rem;
  }

  .quote-feature-title {
    font-size: 0.95rem;
  }

  .quote-feature-desc {
    font-size: 0.85rem;
  }

  .quote-form-wrapper {
    width: 100%;
  }

  .quote-form {
    padding: 30px 20px;
    width: 100%;
  }

  .quote-form h3 {
    font-size: 1.4rem;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  .quote-submit {
    padding: 16px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .quote-left h2 {
    font-size: 1.7rem;
  }

  .quote-feature {
    padding: 12px;
  }

  .quote-feature-icon {
    width: 40px;
    height: 40px;
  }

  .quote-form {
    padding: 25px 15px;
  }
}

/* Global Mobile Responsive */
@media (max-width: 768px) {


.about-bg {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
 
}




  /* Header */
  .logo {
    height: 40px;
  }

  .nav-buttons {
    margin-left: 10px;
    gap: 8px;
  }

  .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  /* Mobile Dropdown Menu */
  .dropdown-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    float: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    min-width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 0;
  }

  .dropdown-item {
    padding: 10px 25px;
    color: #ffffff;
    font-size: 0.9rem;
    border-radius: 0;
    width: 100%;
  }

  .dropdown-item:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #71bcb5;
    padding-left: 30px;
  }

  .dropdown-divider {
    margin: 5px 0;
    border-color: rgba(0, 0, 0, 0.05);
  }

  /* Banner */
  .banner {
    height: 120px;
  }

  .banner-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .banner-prev {
    left: 10px;
  }

  .banner-next {
    right: 10px;
  }

  .banner-indicator {
    width: 10px;
    height: 10px;
  }

  /* Section Styles */
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* Products */
  .products {
    padding: 20px 0;
  }

  .product-carousel {
    padding: 0px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .product-card-large {
    flex-direction: column;
  }

  .product-img-large {
    width: 100%;
    min-height: 250px;
  }

  .product-info {
    padding: 30px 20px;
    min-width: auto;
  }

  .product-info h3 {
    font-size: 1.4rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .product-carousel-indicators {
    bottom: -40px;
  }

  /* Knowledge */
  .knowledge {
    padding: 40px 0;
  }

  .knowledge-card {
    margin-bottom: 20px;
  }

  .knowledge-img {
    height: 180px;
  }

  /* News */
  .news {
    padding: 20px 0;
  }

  .news-card {
    margin-bottom: 20px;
  }

  /* About */
  .about {
    padding: 20px 0;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  .about-features {
    flex-wrap: wrap;
  }

  .about-badge {
    right: 10px;
  }
}

@media (max-width: 576px) {
  /* Banner */
  .banner {
    height: 120px;
  }

  /* Section Styles */
  .section-title {
    font-size: 1.5rem;
  }

  /* Products */
  .product-info {
    padding: 25px 15px;
  }

  .product-info h3 {
    font-size: 1.25rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* About */
  .about-stats {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Request A Quote */
  .quote-section {
    padding: 40px 0;
  }

  .quote-content {
    gap: 30px;
  }

  .quote-left h2 {
    font-size: 1.5rem;
  }

  /* Floating Buttons */
  .floating-buttons {
    right: 15px;
    bottom: 80px;
    gap: 10px;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .floating-tooltip {
    display: none;
  }

  .phone-popup {
    right: 55px;
    min-width: 180px;
    padding: 12px 15px;
  }

  .phone-popup p {
    font-size: 0.85rem;
  }
}

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

.quote-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(26, 26, 46, 0.3);
}

/* Footer */
.footer {
  background: #267371;
  color: #fff;
  padding-top: 60px;
  padding-bottom:10px;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer p {
  color: #fff;
  font-size: 0.9rem;
}

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

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

.footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #fff;
}

.footer i {
  margin-right: 10px;
  color: #fff;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: #69b7bb;
  color: #267371;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link i {
  margin: 0;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff; margin-top:30px;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #267371, #1a5a58);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(38, 115, 113, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  color: #fff;
  font-size: 1.2rem;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(38, 115, 113, 0.5);
  background: linear-gradient(135deg, #2d8a87, #267371);
}

.floating-tooltip {
  position: absolute;
  right: 60px;
  background: #267371;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.floating-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: #267371;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Phone Popup */
.phone-popup {
  position: absolute;
  right: 60px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  min-width: 200px;
}

.phone-popup::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #fff;
}

.phone-popup p {
  margin: 0;
  padding: 5px 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-popup p i {
  color: #267371;
}

#phoneBtn:hover .phone-popup {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Back to Top Button Animation */
#backToTop {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .product-card,
  .news-card {
    margin-bottom: 20px;
  }

  /* Carousel responsive styles */
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-prev {
    left: 0px;
  }

  .carousel-next {
    right: 0px;
  }

  /* News Carousel responsive */
  .news-carousel-track .news-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .news-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .news-prev {
    left: 5px;
  }

  .news-next {
    right: 5px;
  }

  .product-card-large {
    flex-direction: column;
  }

  .product-img-large {
    width: 100%;
    min-height: 250px;
  }

  .product-info {
    padding: 25px;
    min-width: 100%;
  }

  .product-info h3 {
    font-size: 1.4rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* ==================== Product List Page ==================== */
.page-banner {

  padding: 220px 0;
  background-size: cover;

}



.page-banner-content {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0;
}

.breadcrumb-section {
  background: #fff;
  border-bottom: 1px solid #eef0f2;
  padding: 18px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-section .breadcrumb-item,
.breadcrumb-section .breadcrumb-item a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.breadcrumb-section .breadcrumb-item a:hover {
  color: #267371;
}

.breadcrumb-section .breadcrumb-item.active {
  color: #267371;
  font-weight: 600;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
  color: #bbb;
  content: '>';
  font-weight: 400;
}

.product-list-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.product-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-block {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 50px;
  height: 2px;
  background: #71bcb5;
}

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

.category-item {
  margin-bottom: 8px;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 10px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-main i {
  color: #71bcb5;
  width: 20px;
  text-align: center;
}

.category-toggle {
  font-size: 0.75rem;
  color: #999;
  transition: transform 0.3s ease;
}

.category-link[aria-expanded="true"] .category-toggle {
  transform: rotate(180deg);
  color: #71bcb5;
}

.category-link:hover,
.category-link.active {
  background: linear-gradient(135deg, rgba(113, 188, 181, 0.12) 0%, rgba(105, 183, 187, 0.08) 100%);
  color: #267371;
}

.category-link.active .category-main i,
.category-link.active .category-toggle {
  color: #267371;
}

.subcategory-list {
  list-style: none;
  padding: 8px 0 8px 8px;
  margin: 0;
}

.subcategory-list li {
  margin-bottom: 4px;
}

.subcategory-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: #666;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
    padding-left: 25px;
}

.subcategory-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  transition: all 0.25s ease; margin-left:10px;
}

.subcategory-link:hover {
  color: #267371;

  background: rgba(113, 188, 181, 0.06);
}

.subcategory-link:hover::before {
  background: #71bcb5;
}

.subcategory-link.active {
  color: #267371;
  font-weight: 600;
  background: rgba(113, 188, 181, 0.1);

}

.subcategory-link.active::before {
  background: #267371;
}

.sidebar-contact p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-contact p i {
  color: #71bcb5;
  width: 18px;
}

.sidebar-contact .btn {
  margin-top: 10px;
  width: 100%;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border: none;
}

.product-list-header {
  margin-bottom: 35px;
}

.product-list-header .section-title {
  text-align: left;
  margin-bottom: 10px;
}

.product-list-header .section-subtitle {
  text-align: left;
  margin-bottom: 0;
}

.product-grid > [class*="col-"] {
  margin-bottom: 24px;
}

.product-grid-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(38, 115, 113, 0.15);
}

.product-grid-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-grid-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-grid-card:hover .product-grid-img {
  transform: scale(1.05);
}

.product-grid-info {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-grid-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4;

}

.product-grid-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-grid-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.product-model {
  font-size: 0.85rem;
  color: #71bcb5;
  font-weight: 600;
}

.btn-view {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(113, 188, 181, 0.12);
  color: #267371;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: #267371;
  color: #fff;
  transform: translateX(3px);
}

.product-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.product-pagination .pagination {
  gap: 8px;
}

.product-pagination .page-link {
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px;
}

.product-pagination .page-link:hover {
  background: rgba(113, 188, 181, 0.1);
  border-color: #71bcb5;
  color: #267371;
}

.product-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border-color: transparent;
  color: #fff;
}

.product-pagination .page-item.disabled .page-link {
  color: #bbb;
  background: #f8f9fa;
}

@media (max-width: 991px) {
  .product-sidebar {
    position: static;
    margin-bottom: 30px;
  }

  .page-banner {
    padding: 60px 0;
  }

  .page-banner h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .product-list-section {
    padding: 40px 0;
  }

  .product-list-header .section-title {
    font-size: 1.6rem;
  }

  .product-grid-img-wrapper {
    height: 180px;
  }
  
  .disabled{ display:none;}
  
  .pagination li:nth-child(1) {
  display: none;
}
  
    .pagination li:last-child {
  display: none;
}
}

/* ==================== Product Detail Page ==================== */
.product-detail-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.product-detail-top {
  margin-bottom: 50px;
}

.product-detail-gallery {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.product-detail-main-img {
  width: 100%;
  height: 380px;

  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin-bottom: 20px;
  overflow: hidden;
}

.product-detail-main-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-detail-thumbs {
  display: flex;
  gap: 12px;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #f8f9fa;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumb-item:hover,
.thumb-item.active {
  border-color: #71bcb5;
  background: rgba(113, 188, 181, 0.08);
}

.product-detail-info {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.product-detail-category {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(113, 188, 181, 0.12);
  color: #267371;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-detail-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.product-detail-model {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.product-detail-model strong {
  color: #267371;
}

.product-detail-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-detail-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.product-detail-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #444;
  font-size: 0.95rem;
}

.product-detail-features li i {
  color: #71bcb5;
  font-size: 1.1rem;
}

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

.product-detail-actions .btn-primary {
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border: none;
  border-radius: 12px;
  padding: 12px 35px;
  font-weight: 600;
}

.product-detail-actions .btn-outline-primary {
  border: 1px solid #267371;
  color: #267371;
  border-radius: 12px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-detail-actions .btn-outline-primary:hover {
  background: rgba(38, 115, 113, 0.06);
}

.product-detail-tabs {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 50px;
}

.product-detail-tabs .nav-tabs {
  border-bottom: 1px solid #f0f0f0;
  padding: 0 25px;
  gap: 5px;
}

.product-detail-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: #666;
  font-weight: 600;
  padding: 18px 25px;
  background: transparent;
  transition: all 0.3s ease;
}

.product-detail-tabs .nav-link:hover {
  color: #267371;
}

.product-detail-tabs .nav-link.active {
  color: #267371;
  border-bottom-color: #71bcb5;
  background: transparent;
}

.tab-content-inner {
  padding: 30px;
}
.tab-content-inner table{ width:100%;}
.tab-content-inner table td{  border: 1px solid #ddd; padding-left:2%;}



.tab-content-inner p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.spec-table {
  margin-bottom: 0;
}

.spec-table th {
  width: 35%;
  background: #f8f9fa;
  color: #1a1a2e;
  font-weight: 600;
  padding: 14px 20px;
}

.spec-table td {
  color: #555;
  padding: 14px 20px;
  border-color: #f0f0f0;
}

.application-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 14px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.application-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.application-item i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.application-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.application-item p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.related-products {
  margin-top: 20px;
}

.related-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.related-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #71bcb5;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .product-detail-main-img {
    height: 300px;
  }

  .product-detail-info {
    margin-top: 25px;
  }

  .product-detail-info h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .product-detail-section {
    padding: 40px 0;
  }

  .product-detail-main-img {
    height: 240px;
    padding: 20px;
  }

  .thumb-item {
    width: 65px;
    height: 65px;
  }

  .product-detail-info {
    padding: 25px;
  }

  .product-detail-actions .btn {
    width: 100%;
  }

  .product-detail-tabs .nav-link {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .tab-content-inner {
    padding: 20px;
  }

  .spec-table th,
  .spec-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* ==================== News List Page ==================== */
.news-list-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.news-sidebar {
  position: sticky;
  top: 100px;
}

.news-list-header {
  margin-bottom: 35px;
}

.news-list-header .section-title {
  text-align: left;
  margin-bottom: 10px;
}

.news-list-header .section-subtitle {
  text-align: left;
  margin-bottom: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.news-list-item {
  display: flex;
  gap: 25px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(38, 115, 113, 0.12);
}

.news-list-img {
  position: relative;
  width: 320px;
  min-height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.news-list-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.4s ease;
}

.news-list-item:hover .news-list-img img {
  transform: scale(1.08);
}

.news-list-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-list-content {
  padding: 25px 25px 25px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.news-list-category {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(113, 188, 181, 0.12);
  color: #267371;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.news-list-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-list-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-list-content h3 a:hover {
  color: #267371;
}

.news-list-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.news-list-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #267371;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.news-list-content .read-more i {
  transition: transform 0.3s ease;
}

.news-list-content .read-more:hover {
  color: #1a5a58;
}

.news-list-content .read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .news-sidebar {
    position: static;
    margin-bottom: 30px;
  }

  .news-list-item {
    flex-direction: column;
  }

  .news-list-img {
    width: 100%;
    height: 220px;
  }

  .news-list-content {
    padding: 25px;
  }
}

@media (max-width: 767px) {
  .news-list-section {
    padding: 40px 0;
  }

  .news-list-header .section-title {
    font-size: 1.6rem;
  }

  .news-list-img {
    height: 180px;
  }

  .news-list-content h3 {
    font-size: 1.1rem;
  }

  .news-list-content p {
    font-size: 0.9rem;
  }
}

/* ==================== News Detail Page ==================== */
.news-detail-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.news-detail-main {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 35px;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.news-detail-category {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(113, 188, 181, 0.12);
  color: #267371;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-detail-date,
.news-detail-views {
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-detail-date i,
.news-detail-views i {
  color: #71bcb5;
}

.news-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 25px;
}

.news-detail-featured-img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
}

.news-detail-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-content {
  color: #555;
  line-height: 1.9;
}

.news-detail-content .lead {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 22px;
  font-weight: 400;
}

.news-detail-content p {
  margin-bottom: 18px;
}

.news-detail-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 30px 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.news-detail-content ul {
  padding-left: 22px;
  margin-bottom: 22px;
}

.news-detail-content ul li {
  margin-bottom: 10px;
}

.news-detail-content blockquote {
  background: linear-gradient(135deg, rgba(113, 188, 181, 0.08) 0%, rgba(38, 115, 113, 0.06) 100%);
  border-left: 4px solid #71bcb5;
  padding: 22px 28px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #444;
  margin: 28px 0;
}

.news-detail-share {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #f0f0f0;
}

.news-detail-share span {
  color: #666;
  font-weight: 600;
}

.share-links {
  display: flex;
  gap: 10px;
}

.share-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f4f8;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-link:hover {
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  color: #fff;
  transform: translateY(-3px);
}

.news-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

.news-nav-prev,
.news-nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-nav-prev:hover,
.news-nav-next:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(38, 115, 113, 0.1);
}

.news-nav-prev span,
.news-nav-next span {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-nav-prev strong,
.news-nav-next strong {
  color: #1a1a2e;
  font-size: 1rem;
  line-height: 1.4;
}

.news-nav-next {
  text-align: right;
  align-items: flex-end;
}

.news-detail-sidebar {
  position: sticky;
  top: 100px;
}

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

.latest-news-item {
  display: flex;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 12px;
}

.latest-news-item:hover {
  background: rgba(113, 188, 181, 0.06);
}

.latest-news-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.latest-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.latest-news-item:hover .latest-news-img img {
  transform: scale(1.08);
}

.latest-news-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.latest-news-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.45;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-news-info span {
  font-size: 0.8rem;
  color: #888;
}

.news-detail-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-detail-category-list li {
  margin-bottom: 8px;
}

.news-detail-category-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  border-radius: 10px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-detail-category-list li a i {
  color: #71bcb5;
  width: 20px;
  text-align: center;
}

.news-detail-category-list li a:hover {
  background: linear-gradient(135deg, rgba(113, 188, 181, 0.12) 0%, rgba(105, 183, 187, 0.08) 100%);
  color: #267371;
  padding-left: 20px;
}

.related-news {
  margin-top: 20px;
}

.related-news .news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.related-news .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(38, 115, 113, 0.12);
}

.related-news .news-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.related-news .news-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  padding: 20px 20px 10px;
  line-height: 1.4;
}

.related-news .news-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 20px;
  flex-grow: 1;
}

.related-news .news-card .btn {
  margin: 0 20px 20px;
  width: fit-content;
  border-radius: 8px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border: none;
}

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

  .news-detail-nav {
    grid-template-columns: 1fr;
  }

  .news-nav-next {
    text-align: left;
    align-items: flex-start;
  }
}

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

  .news-detail-main {
    padding: 25px;
  }

  .news-detail-title {
    font-size: 1.5rem;
  }

  .news-detail-featured-img {
    height: 220px;
  }

  .news-detail-content h2 {
    font-size: 1.25rem;
  }

  .news-detail-meta {
    gap: 12px;
  }
}

/* ==================== About Us Page ==================== */
.about-page-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.about-intro-row {
  margin-bottom: 70px;
}

.about-page-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.about-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  color: #fff;
  padding: 22px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(38, 115, 113, 0.3);
}

.about-experience-badge strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 5px;
}

.about-experience-badge span {
  font-size: 0.95rem;
  opacity: 0.95;
}

.about-page-content {
  padding-left: 30px;
}

.section-label {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  background: rgba(113, 188, 181, 0.12);
  color: #267371;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-page-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-page-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.about-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.about-stat-item i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-stat-item strong {
  display: block;
  font-size: 1.4rem;
  color: #1a1a2e;
  line-height: 1.2;
}

.about-stat-item span {
  font-size: 0.85rem;
  color: #666;
}

.about-mvv-row {
  margin-bottom: 70px;
}

.mvv-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(38, 115, 113, 0.12);
}

.mvv-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(113, 188, 181, 0.15) 0%, rgba(38, 115, 113, 0.1) 100%);
  color: #267371;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.mvv-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.mvv-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.about-timeline-wrapper,
.about-certifications-wrapper,
.about-why-wrapper {
  margin-bottom: 70px;
}

.section-title-wrapper.text-center .section-title {
  text-align: center;
}

.section-title-wrapper.text-center .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.cert-item-lg {
  background: #fff;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.cert-item-lg:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(38, 115, 113, 0.12);
}

.cert-item-lg img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.cert-item-lg span {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.9rem;
}

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(38, 115, 113, 0.12);
}

.why-card i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.about-cta {
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.about-cta-content {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-cta p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .btn {
  background: #fff;
  color: #267371;
  border: none;
  border-radius: 12px;
  padding: 12px 35px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.about-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .about-page-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .about-stats-row {
    flex-wrap: wrap;
  }

  .about-stat-item {
    flex: 1 1 calc(50% - 10px);
  }

  .mvv-card {
    margin-bottom: 20px;
  }

  .why-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about-page-section {
    padding: 40px 0;
  }

  .about-page-img img {
    min-height: 300px;
  }

  .about-experience-badge {
    padding: 16px 20px;
    bottom: 15px;
    right: 15px;
    border-radius: 12px;
  }

  .about-experience-badge strong {
    font-size: 2rem;
  }

  .about-stat-item {
    flex: 1 1 100%;
  }

  .about-cta {
    padding: 40px 25px;
  }

  .about-cta h2 {
    font-size: 1.5rem;
  }
}

/* ==================== Contact Us Page ==================== */
.contact-page-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.contact-cards-row {
  margin-bottom: 50px;
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%; 
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(38, 115, 113, 0.12);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

.contact-main-row {
  margin-bottom: 60px;
}

.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact-form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

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

.contact-form label {
  display: block;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.contact-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #71bcb5;
  box-shadow: 0 0 0 3px rgba(113, 188, 181, 0.15);
}

.contact-form textarea.form-control {
  resize: vertical;
}

.contact-submit {
  background: linear-gradient(135deg, #267371 0%, #71bcb5 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(38, 115, 113, 0.3);
}

.contact-map-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact-map-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 18px;
}

.contact-map {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 25px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-social span {
  font-weight: 600;
  color: #444;
}

.contact-social .social-links {
  margin: 0;
}

.contact-faq-wrapper {
  margin-top: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(38, 115, 113, 0.1);
}

.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h4 i {
  color: #71bcb5;
  font-size: 1.2rem;
}

.faq-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .contact-info-card {
    margin-bottom: 20px;
  }

  .contact-map-wrapper {
    margin-top: 25px;
  }

  .contact-map {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .contact-page-section {
    padding: 40px 0;
  }

  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 25px;
  }

  .contact-form-title {
    font-size: 1.4rem;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-social {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==================== Application Page ==================== */
.application-page-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.application-sidebar {
  position: sticky;
  top: 100px;
}

.application-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.application-filter-list li {
  margin-bottom: 8px;
}

.application-filter-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.application-filter-list li a i {
  color: #71bcb5;
  width: 20px;
  text-align: center;
}

.application-filter-list li a:hover,
.application-filter-list li a.active {
  background: linear-gradient(135deg, rgba(113, 188, 181, 0.12) 0%, rgba(105, 183, 187, 0.08) 100%);
  color: #267371;
  padding-left: 20px;
}

.application-filter-list li a.active {
  font-weight: 600;
}

.application-list-header {
  margin-bottom: 35px;
}

.application-list-header .section-title {
  text-align: left;
  margin-bottom: 10px;
}

.application-list-header .section-subtitle {
  text-align: left;
  margin-bottom: 0;
}

.application-grid > [class*="col-"] {
  margin-bottom: 24px;
}

.application-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.application-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(38, 115, 113, 0.12);
}

.application-card-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

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

.application-card:hover .application-card-img img {
  transform: scale(1.08);
}

.application-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.application-card-tag {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(113, 188, 181, 0.12);
  color: #267371;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.application-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.application-card-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}

.application-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #267371;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.application-card-body .read-more i {
  transition: transform 0.3s ease;
}

.application-card-body .read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .application-sidebar {
    position: static;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .application-page-section {
    padding: 40px 0;
  }

  .application-list-header .section-title {
    font-size: 1.6rem;
  }

  .application-card-img {
    height: 180px;
  }
}

/* ==================== Application Detail Page ==================== */
.application-detail-section {
  padding: 30px 0;
  background: #f8f9fa;
}

.application-detail-main {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.application-detail-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(113, 188, 181, 0.12);
  color: #267371;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.application-detail-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 18px;
}

.application-detail-summary {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.application-detail-featured-img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
}

.application-detail-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-detail-content {
  margin-top: 40px;
  color: #555;
  line-height: 1.8;
}

.application-detail-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 35px 0 14px 0;
}

.application-detail-content p {
  margin-bottom: 16px;
}

.application-detail-content ul {
  padding-left: 20px;
  margin-bottom: 18px;
}

.application-detail-content ul li {
  margin-bottom: 8px;
}

.application-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}

.app-nav-prev,
.app-nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-nav-prev:hover,
.app-nav-next:hover {
  background: rgba(113, 188, 181, 0.08);
}

.app-nav-prev span,
.app-nav-next span {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-nav-prev strong,
.app-nav-next strong {
  color: #1a1a2e;
  font-size: 0.95rem;
  line-height: 1.4;
}

.app-nav-next {
  text-align: right;
  align-items: flex-end;
}

@media (max-width: 991px) {
  .application-detail-featured-img {
    height: 320px;
  }

  .application-detail-nav {
    grid-template-columns: 1fr;
  }

  .app-nav-next {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .application-detail-section {
    padding: 40px 0;
  }

  .application-detail-main {
    padding: 25px;
  }

  .application-detail-title {
    font-size: 1.5rem;
  }

  .application-detail-featured-img {
    height: 220px;
  }

  .application-detail-content h2 {
    font-size: 1.2rem;
  }
}