        
        .index-image-section {
          width: 100%;
          padding: 0 16px;
          margin: 32px 0;  
        }

        .image-container {
          width: 100%;
          height: auto;
          border-radius: 8px;
          overflow: hidden; 
        }

        .image-container img {
          width: 100%;
          height: auto;
          display: block;
          object-fit: cover;
        }
        
        .taiho-container {
            width: 100%;
            min-height: 600px;
            padding: 50px 80px;
            background-color: #ffffffa3; 
            position: relative;
            overflow: hidden;
        }

        /* TAIHO logo */
        .taiho-logo {
            font-size: 78px;
            font-weight: 900;
            color: #9FCD14; /* 原页面的青绿色 */
            margin-bottom: 20px;
        }

        /* 公司名称 */
        .company-name {
            font-size: 28px;
            font-weight: 600;
            color: #333333;
            margin-bottom: 15px;
        }

        /* 介绍文本 */
        .intro-text {
            font-size: 18px;
            color: #666666;
            line-height: 1.6;
            max-width: 600px;
            margin-bottom: 25px;
        }

        /* 查看更多按钮 */
        .view-more-btn {
            background-color:#9FCD14;
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 900;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .view-more-btn:hover {
            color: #9CC814;
            background-color: #fff;
        }

        /* 数据统计区域 */
        .stats-group {
            position: absolute;
            top: 80px;
            right: 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: #333333;
        }
        .stat-label {
            font-size: 14px;
            color: #666666;
            margin-top: 5px;
        }
        
        
.product-container {
  padding: 50px;
  margin: 0 auto;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  height: auto;
}

/* 标题单独控制对齐 */
.layout-left .product-text {
  text-align: left;
}
.layout-right .product-text {
  text-align: right;
}

/* product-body 控制图文并排 */
.product-body {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 50px; 
}

/* 左布局：文字在左，图在右 */
.layout-left .product-body {
  flex-direction: row;
}

/* 右布局：文字在右，图在左 */
.layout-right .product-body {
  flex-direction: row-reverse;
}

 
.product-content {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* === 原有文本样式（完全保留）=== */
.product-text {
  font-size: 58px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  color: rgb(182, 182, 182, 0.2);
  background: linear-gradient(to right, #9CC814, #9CC814) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  background-position: left;
}

.product-subtitle {
  font-size: 32px;
  font-weight: 500;
  color: #666;
  margin: 0;
}

.product-description {
  font-size: 28px;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

.product-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.product-buttons button {
  padding: 10px 24px;
  border: 1px solid #9CC814;
  background: #9CC814;
  color: white;
  font-family: inherit;
  font-weight: 600;
  font-size: 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
}

.product-buttons button:hover {
  color: #9CC814;
  background: #ffffff;
}

.product-image {
  width: 70%;
  border-radius: 8px;
}

/* 响应式：小屏堆叠 */
@media (max-width: 992px) {
  .product-text {
    font-size: 28px;
    text-align: left !important;
  }

  .product-body {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }

  .product-content,
  .product-image {
    width: 100%;
  }

  .product-image {
    max-width: 300px;
    height: auto;
  }

  .product-subtitle {
    font-size: 18px;
  }

  .product-description {
    font-size: 16px;
  }

  .product-buttons button {
    font-size: 16px;
  }

  .taiho-container {
    padding: 40px 30px;
    min-height: 600px;
  }

  .stats-group {
    position: static;
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .building-img {
    max-height: 180px;
  }
}

@media (max-width: 768px) {
  .index-success-stories {
    padding: 20px;
  }
}

   /* ========== Section Container ========== */
    .index-success-stories {
      padding-top: 48px;
      padding-bottom: 48px;
      padding-left: 16px;
      padding-right: 16px;
    }

    @media (min-width: 768px) {
      .index-success-stories {
        padding-left: 32px;
        padding-right: 32px;
      }
    }

    /* ========== ========== */
    .index-success-stories{
        background-color:#e2e2e2;
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
    }

    .section-title {
      font-size: 48px;          /* text-3xl → 32px */
      font-weight: bold;
      color: #fff;           /* text-gray-800 */
    }

    .header-actions {
      display: flex;
      gap: 12px;                /* gap-3 → 12px */
    }

    .nav-button {
      width: 48px;              /* w-12 → 48px */
      height: 48px;             /* h-12 → 48px */
      border-radius: 9999px;    /* rounded-full */
      border: 1px solid #d1d5db; /* border-gray-300 equivalent */
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: white;
      cursor: pointer;
    }

    .view-all-link {
      padding-left: 24px;       /* px-6 → 24px */
      padding-right: 24px;
      height: 48px;             /* h-12 → 48px */
      display: flex;
      align-items: center;
      border-radius: 9999px;    /* rounded-full */
      border: 1px solid #9CC814; /* border-blue-600 */
      color:#9CC814;           /* text-blue-600 */
      text-decoration: none;
      font-size: 16px;          /* base size */
      transition: all 0.3s ease;
    }

    .view-all-link:hover {
      background-color: #9CC814;
      color: white;
    }
    
    
    
    
    
/* ===== Section ===== */
.index-success-stories {
  background: #E2E2E2;
  padding: 80px 0;
  overflow: hidden;
}

/* ===== Header ===== */
.ss-header {
  max-width: 1600px;
  margin: 40px auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ss-header h2 {
    color: #9CC814;
  font-size: 40px;
  font-weight: bold;
}

.ss-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ss-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #9CC814;
}

/* ===== View All Ink Button ===== */
.ss-viewall {
  position: relative;
  padding: 10px 28px;
  border: 1px solid #9CC814;
  background: #9CC814;
  cursor: pointer;
  overflow: hidden; 
  font-size: 20px;
  font-weight: 600;
  border-radius: 50px;
}

.ss-viewall::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 0;
}

.ss-viewall:hover::before {
  transform: scaleX(1);
}

.ss-viewall span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.ss-viewall:hover span {
  color: #9CC814;
}

/* ===== Slider ===== */
.ss-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.ss-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ===== Slide ===== */
.ss-slide {
  position: relative;
  flex: 0 0 450px;  
  transition:
    transform 0.6s cubic-bezier(.4,0,.2,1),
    opacity 0.6s ease;
}

.ss-slide.center {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.ss-slide img {
  width: 100%; 
  object-fit: cover;
}

.ss-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.ss-slide.center .ss-mask {
  display: none;
}

/* ===== Text Overlay ===== */
.ss-content {
  position: absolute;
  left: 20px;
  bottom: 30px;
  color: #fff;
}

.ss-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.ss-content p {
  font-size: 14px;
  margin-bottom: 12px;
}

.ss-content a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* ===== Footer ===== */
.ss-footer {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ss-dots {
  display: flex;
  gap: 10px;
}

.ss-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
}

.ss-dot.active {
  background: #9CC814;
}

.ss-page {
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .ss-slide {
    flex: 0 0 260px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .ss-slide {
    flex: 0 0 220px;
    height: 320px;
  }
}

@media (max-width: 576px) {
  .ss-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
    
           /* 展会板块整体样式 */
    .index-exhibition {
        padding: 80px 0;
        background-color: var(--white-color);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        position: relative;
    }
    
    /* 切换按钮容器 */
    .exhibition-nav {
        position: absolute;
        top: 60px;
        right: 5%;
        z-index: 2;
        display: flex;
        gap: 10px;
    }
    
    /* 切换按钮样式 */
    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid var(--primary-color);
        background-color: var(--white-color);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 19px; /* 使用符号替代图标 */
    }
    
    .nav-btn:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }
    
    /* 按钮禁用样式 */
    .nav-btn.disabled {
        border-color: var(--gray-color);
        color: var(--gray-color);
        cursor: not-allowed;
        background-color: #f8f9fa;
    }
    
    .nav-btn.disabled:hover {
        background-color: #f8f9fa;
        color: var(--gray-color);
    }
    
    /* 板块标题样式 */
    .exhibition-title {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 1s ease forwards 0.2s;
    }
    
    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .exhibition-title h2 {
        font-size: 40px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    
    .exhibition-title p {
        font-size: 18px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .exhibition-title::after {
        content: "";
        display: block;
        width: 80px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 20px auto 0;
        transform: scaleX(0);
        animation: scaleIn 0.8s ease forwards 0.6s;
    }
    
    @keyframes scaleIn {
        to {
            transform: scaleX(1);
        }
    }
    
    /* 进度条容器 */
    .progress-container {
        width: 80%;
        height: 6px;
        background-color: var(--gray-color);
        border-radius: 3px;
        margin: 0 auto 30px;
        overflow: hidden;
    }
    
    /* 进度条样式 */
    .progress-bar {
        height: 100%;
        background-color: var(--primary-color);
        border-radius: 3px;
        width: 33.33%;
        transition: width 0.4s ease;
    }
    
    /* 展会卡片容器 */
    .cards-wrapper {
        padding: 0 20px;
        width: 100%;
        overflow: hidden;
        margin: 0 auto;
    }
    
    .cards-container {
        display: flex;
        gap: 15px;
        transition: transform var(--transition-base);
        width: fit-content;
    }
    
    .card-item {
        flex: 0 0 calc(33% );
        min-width: 0;
    }
    
    .exhibition-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all var(--transition-base);
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s ease forwards;
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 420px; /* 统一最小高度 */
    }
    
    .exhibition-card:nth-child(1) { animation-delay: 0.4s; }
    .exhibition-card:nth-child(2) { animation-delay: 0.6s; }
    .exhibition-card:nth-child(3) { animation-delay: 0.8s; }
    .exhibition-card:nth-child(4) { animation-delay: 1.0s; }
    .exhibition-card:nth-child(5) { animation-delay: 1.2s; }
    .exhibition-card:nth-child(6) { animation-delay: 1.4s; }
    
    .exhibition-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    }
    
    .exhibition-img {
        width: 100%; 
        object-fit: cover;
        transition: transform 0.8s ease;
        border-radius: 10px 10px 0 0;
    }
    
    .exhibition-card:hover .exhibition-img {
        transform: scale(1.05);
        filter: brightness(0.95);
    }
    
    /* 文字内容区域（现在在图片下方） */
    .exhibition-content {
        padding: 20px;
        color: #333;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .exhibition-name,
    .exhibition-date,
    .exhibition-location,
    .exhibition-desc,
    .exhibition-btn {
        /* 所有文字默认显示，无需 hover 触发 */
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .exhibition-name {
        font-size: 29px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--primary-color);
    }
    
    .exhibition-date {
        font-size: 18px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .exhibition-location {
        font-size: 16px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .exhibition-desc {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 15px;
        flex-grow: 1;
    }
    
    .exhibition-btn {
        display: inline-block;
        padding: 10px 25px;
        background-color: var(--primary-color);
        color:#fff !important;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        border: 2px solid var(--primary-color);
        transition: all 0.3s ease;
        align-self: flex-start;
    }
    
    .exhibition-btn:hover {
        background-color: transparent;
        color: var(--primary-color);
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 5px 15px rgba(12, 174, 165, 0.25);
    }
    
    /* 响应式 */
    @media (max-width: 992px) {
        .card-item { flex: 0 0 calc(33.33% - 10px); }
        .exhibition-card { min-height: 400px; }
        .exhibition-img { height: 200px; }
        .exhibition-name { font-size: 24px; }
        .progress-bar { width: 33.33%; }
    }
    
    @media (max-width: 768px) {
        .card-item { flex: 0 0 calc(50% - 7.5px); }
        .exhibition-title h2 { font-size: 32px; }
        .exhibition-card { min-height: 380px; }
        .exhibition-img { height: 180px; }
        .progress-bar { width: 20%; }
    }
    
    @media (max-width: 576px) {
        .card-item { flex: 0 0 100%; }
        .exhibition-nav { top: 20px; right: 20px; }
        .exhibition-card { min-height: auto; }
        .exhibition-img { height: 180px; }
        .exhibition-content { padding: 15px; }
        .exhibition-name { font-size: 21px; }
        .progress-container { width: 90%; }
        .progress-bar { width: 16.66%; }
    }
    
    
    
    
          
        
      .index-about {
      max-width: 1600px;
      margin: 100px auto;
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* === About 卡片 === */
    .about-card,
    .exhibitions-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      width: 100%;
      max-width: 400px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards;
    }

    .about-card { animation-delay: 0.1s; }
    .exhibitions-card:nth-of-type(1) { animation-delay: 0.2s; }
    .exhibitions-card:nth-of-type(2) { animation-delay: 0.3s; }

    .about-card img,
    .exhibitions-card img {
      width: 100%; 
      object-fit: cover;
    }

    .about-content,
    .exhibitions-content {
      padding: 24px;
    }

    .about-content h2,
    .exhibitions-content h2 {
      font-size:32px;
      margin-bottom: 16px;
      color: #1a3a6c;
    }

    .about-content ul,
    .exhibitions-content ul {
      height: 160px;
      list-style: none;
      padding-left: 0;
      margin-bottom: 20px;
    }

    .about-content li,
    .exhibitions-content li {
      padding-left: 20px;
      position: relative;
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .about-content li::before,
    .exhibitions-content li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #9CC814;
      font-weight: bold;
    }

    .about-content .learn-more,
    .exhibitions-content .learn-more {
        width: 250px;
       padding: 10px 24px;
       border: 1px solid #9CC814;
       background: #9CC814;
       color: white;
       font-size: 20px;
       border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size:20px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .about-content .learn-more:hover,
    .exhibitions-content .learn-more:hover {
      color: #9CC814;
      background: #fff;
    }

    /* 悬停效果 */
    .about-card:hover,
    .exhibitions-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    /* 进场动画 */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

		    /* 响应式：小屏堆叠 */
		    @media (max-width: 768px) {
		      .index-about {
		        flex-direction: column;
		        align-items: center;
		      }
		    }
		    
		    
    
			.index-factory-section {
				background-color: #e2e2e2;
				
				
				
			}
			.module-factory{
			    max-width: 1600px;
			    margin: 0 auto;
			    display: flex;
				gap: 20px;
				padding: 20px;
			} 
			.factory-title{
			    max-width: 1600px;
			    margin: 0 auto;
			    padding: 20px;
			}
			.factory-title h1{
			    color: #9CC814;
			    font-size: 40px;
			    font-weight: bold;
			}

			.factory-item {
				flex: 1;
				text-align: center;
				box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
			}

			.factory-img {
				position: relative;
			}

			.factory-img img {
				width: 100%;
				height: auto;
				border-radius: 4px;
			}
 
			.location-icon {
				position: absolute;
				padding-top: 10px;
				left: 10px; 
				font-size: 20px; 
				color: #ffffff; 
				background-color: #9cc814de; 
				width:36px;
				height: 60px;
				border-radius: 0 0 12px 12px;
				display: flex;
				align-items: center;
				justify-content: center;
				box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
 
				z-index: 10;
 
			}

			.factory-item h3 {
				margin: 10px 0 5px;
				font-size: 20px;
				font-weight: 700;
			}

			.factory-item p {
				margin: 0 auto;
				width: 80%;
				font-size: 16px;
				color: #666;
				line-height: 1.5;
			}

			/* 媒体查询 - 平板端（768px及以下） */
			@media (max-width: 768px) {
				.index-factory-section {
					gap: 15px;
					padding: 15px;
				}

				.factory-item h3 {
					font-size: 15px;
				}

				.factory-item p {
					font-size: 13px;
				}
 
				.location-icon {
					font-size: 18px;
					width: 42px;
					height: 32px;
					border-radius: 0 0 10px 10px;
					top: 8px;
					left: 8px;
				}
			}

			/* 媒体查询 - 手机端（480px及以下） */
			@media (max-width: 480px) {
				.index-factory-section {
					flex-direction: column;
					gap: 25px;
					padding: 10px;
				}

				.factory-item {
					width: 100%;
				}

				.factory-item h3 {
					font-size: 14px;
				}

				.factory-item p {
					font-size: 12px;
					padding: 0 5px;
				}
 
				.location-icon {
					font-size: 16px;
					width: 38px;
					height: 28px;
					border-radius: 0 0 8px 8px;
					top: 6px;
					left: 6px;
				}
			}
            .index-footer {
            background-color: #e2e2e2;
            padding: 60px 0 30px;
            color:#666; 
			
        }

        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

       
        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        .footer-contact{
             display: flex;
        }

    
        .footer-logo img {
            width: 200px;
            height: auto;
            margin-bottom: 15px;
        }

        .footer-logo-desc {
            font-weight: bolder;
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }

       
        .footer-links h3,
        .footer-contact h3,
        .footer-form h3 {
            color: #666;  
            font-size: 24px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after,
        .footer-contact h3::after,
        .footer-form h3::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #9CC814;  
        }

        .footer-links ul {
            list-style: none;
        }

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

        .footer-links a {
            font-weight: 600;
            color:#666;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color:#9CC814; 
        }

 
        .footer-contact p {
            font-weight: 600;
            color:#666;
            font-size: 16px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-contact p i {
            color:#666; 
            font-size: 16px;
        }

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

        .footer-form input,
        .footer-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 14px;
            transition: all 0.3s;
            outline: none;
        }

        .footer-form input:focus,
        .footer-form textarea:focus {
            border-color: #BBBDC5; 
            box-shadow: 0 0 8px rgba(187, 189, 197, 0.2);
        }

        .footer-form textarea {
            resize: none; 
        }

        .footer-form button {
            background-color: #BBBDC5; 
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .footer-form button:hover {
            background-color: #a9acb5; 
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px 20px 0;
            border-top: 1px solid #eee;
            text-align: center;
            font-size: 14px;
            color:#666;
        }
        .contact-icon {
            display: flex;
            align-items: center;
            gap: 16px;  
            flex-wrap: nowrap;  
        }
 
        .contact-icon a {
            color: #666; 
            font-size: 35px; 
            transition: color 0.3s ease;  
        } 
        .contact-icon a:hover {
            color: #9DC815;  
            text-decoration: none; 
        }
       
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }
        
        
        			/* Hero Section */
			.about-hero {
				width: 96%;
				max-width: 1600px;
				height: 300px;
				margin: 60px auto 80px;
				background: url("/static/image/mooge-about-p1.jpg") no-repeat center center;
				background-size: cover;
				display: flex;
				justify-content: center;
				align-items: center;
				position: relative;
				border-radius: 8px;
				overflow: hidden;
			}

			.about-hero::before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				    background: rgb(255 255 255 / 73%);
				z-index: 1;
			}

			.about-hero-content {
				position: relative;
				z-index: 2;
				text-align: center;
				padding: 0 20px;
				max-width: 800px;
			}

			.about-hero h1 {
				font-size: 48px;
				font-weight: bold;
				text-transform: uppercase;
				margin-bottom: 16px;
				color: #222;
			}

			.about-hero p {
				font-size: 20px;
				line-height: 1.6;
				color: #555;
				margin: 0;
			}

			/* Showcase Section */
			.showcase-section {
				width: 100%;
				max-width: 1600px;
				margin: 0 auto;
				position: relative;
				overflow: hidden;
			}

			.showcase-track {
				display: flex;
				gap: 40px;
				transition: transform 0.5s ease-in-out;
			}

			.showcase-card {
				min-width: calc(50% - 40px);
				display: flex;
				gap: 20px;
				box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
				padding: 20px;
				border-radius: 8px;
				background: #fff;
			}

			.showcase-media {
				width: 60%;
				border-radius: 4px;
				overflow: hidden;
			}

			.showcase-media img {
				width: 100%; 
				height: 100%;
				object-fit: cover;
			}

			.showcase-content {
				width: 40%;
				display: flex;
				flex-direction: column;
				justify-content: center;
			}

			.showcase-content h2 {
				font-size: 24px;
				color: #333;
				margin-bottom: 12px;
			}

			.showcase-content p {
				color: #666;
				line-height: 1.6;
				margin-bottom: 10px;
			}

			.showcase-content .exhibition-link-button {
				display: inline-block;
				margin-top: 12px;
				padding: 8px 20px;
				background-color: #9CC814;
				color: white;
				text-decoration: none;
				border-radius: 4px;
				font-weight: bold;
				transition: background-color 0.3s ease;
				width: fit-content;
			}

			.showcase-content .exhibition-link-button:hover {
				background-color: #85b00f;
			}

			/* Pagination */
			.showcase-pagination {
				display: flex;
				justify-content: center;
				gap: 12px;
				margin-top: 20px;
			}

			.showcase-pagination button {
				width: 12px;
				height: 12px;
				border-radius: 50%;
				background: #ccc;
				border: none;
				cursor: pointer;
			}

			.showcase-pagination button.active {
				background: #9CC814;
			}

			/* Responsive */
			@media (max-width: 768px) {
				.about-hero {
					height: 300px;
					margin-top: 40px;
				}

				.about-hero h1 {
					font-size: 32px;
				}

				.about-hero p {
					font-size: 16px;
				}

				.showcase-card {
					min-width: 100%;
					flex-direction: column;
				}

				.showcase-media,
				.showcase-content {
					width: 100%;
				}

				.showcase-pagination button {
					width: 10px;
					height: 10px;
				}
			}