@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&display=swap');
:root {
  --primary: #009944;
  --secondary: #468499;
  --light-green: #e8f5e9;
  --dark-green: #005f2c;
  --teal: #46998a;
  --dark-blue: #0d3b56;
  --medium-blue: #1a5b7e;
  --light-blue: #468499;
  --off-white: #f8f9fa;
  --light-gray: #f0f0f0;
  --medium-gray: #e0e0e0;
  --dark-gray: #333333;
  --dark-gray2: #666666;
}
body {
  font-family: "Noto Sans TC", "PingFang", "PingFangTC", "Microsoft JhengHei", sans-serif;
  overflow-x: hidden !important;
  font-weight: 400;
}
body.en {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden !important;
  font-weight: 400;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
h1, h2, h3, h4, h5 {
  color: var(--dark-blue) !important;
}
.text-primary {
  color: var(--primary) !important;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-animation {
  width: 250px;
  height: 50px;
  text-align: center;
}
.loading-animation img {
  margin-bottom: 20px;
}
.loading-animation span {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}
.loading-animation span:nth-child(1) {
  animation-delay: -0.32s;
}
.loading-animation span:nth-child(2) {
  animation-delay: -0.16s;
}
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1.0);
  }
}
.loading-text {
  margin-top: 20px;
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
}
.mt--10 {
  margin-top: -10px !important;
}
.mt--20 {
  margin-top: -20px !important;
}
.mt--30 {
  margin-top: -30px !important;
}
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-brand img {
  width: 295px;
  height: auto;
  max-width: 100%;
}
.nav-link {
  color: #222;
  margin: 0 13px;
  padding: 22px 15px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  right: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
  margin: 0 auto;
  opacity: 0;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
  opacity: 1;
}
.main-nav.navbar {
  padding: 8px 0 0 0
}
/* 移除其他下拉箭頭圖示，保留語言選單 */
.nav-item.dropdown:not(.language-dropdown) .dropdown-toggle .dropdown-icon {
  display: none;
}
.dropdown {
  position: relative;
}
.dropdown:hover .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin-top: 0px;
  border-radius: 0px !important;
}
.dropdown::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px; /* 添加一個隱形的區域延伸到下拉菜單 */
}
.dropdown-menu {
  border: none;
  border-radius: 0px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, .1);
  padding: 0;
  margin-top: 10px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  display: block;
  pointer-events: none;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}
.dropdown:hover .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-item {
  padding: 11px 27px !important;
  color: #555;
  transition: all 0.2s ease;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #ececec;
}
.dropdown-item:hover {
  background-color: var(--primary);
  ;
  color: #fff !important;
  padding-left: 28px;
}
.dropdown-item:active {
  background-color: rgba(0, 153, 68, 0.1);
}
.dropdown-item:hover .fas.fa-angle-right {
  color: #fff !important;
}
.dropdown-divider {
  margin: 8px 0;
  border-color: rgba(0, 0, 0, 0.05);
}
.dropdown-item.active {
  background-color: rgba(0, 153, 68, 0.05);
  color: var(--primary);
  font-weight: 500;
}
.dropdown-item .fas.fa-check {
  color: var(--primary);
}
.dropdown-item i {
  color: #666 !important;
  font-size: .7rem;
  position: relative;
  top: -3px;
}
.dropdown-item:hover i {
  color: var(--primary) !important;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}
.navbar-toggler {
  border: none;
}
/* ========== 首頁輪播圖 ========== */
.hero-section {
  position: relative;
  min-height: 92vh;
  max-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  padding: 0 125px;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* 半透明黑色遮罩 */
  z-index: 1;
}
/* 電腦版圖片樣式 */
.desktop-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
}
/* 手機版圖片樣式 */
.mobile-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s ease;
  display: none; /* 預設隱藏手機版圖片 */
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-top: 100px;
}
.hero-title {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff !important;
}
.en .hero-title {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff !important;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400 !important;
  letter-spacing: 0.1rem;
}
.btn-slider {
  padding: 18px 55px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
/* Carousel Indicator Dots */
.carousel-indicators {
  margin-bottom: 20px;
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.carousel-indicators .active {
  background-color: white;
  opacity: 1;
  transform: scale(1.2);
}
.esg-section {
  padding: 80px 0 150px;
  background-color: #fff;
  overflow: hidden;
  background-image: url(../images/bg-about.jpg);
  background-size: cover;
  background-position: left bottom;
  position: relative;
}
.wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}
.esg-content {
  position: relative;
  z-index: 2;
  line-height: 2;
  font-weight: 400;
  color: #333;
  padding: 50px 0 0 55px
}
.en .esg-content {
  padding: 50px 50px 0 55px
}
.esg-content p {
  margin-bottom: 25px !important;
}
.section-title {
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
}
.en .section-title {
  margin-bottom: 40px;
  font-weight: 700;
  color: #333;
}
/* ========== News section ========== */
.news-section {
  position: relative;
  padding: 80px 0 65px;
  background-image: linear-gradient(rgba(0, 100, 100, 0.7), rgba(0, 100, 100, 0.7)), url("../images/bg-news.jpg");
  background-position: center center, center bottom;
  background-size: cover, cover;
}
.news-section .container {
  max-width: 1220px;
}
.news-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}
.news-label {
  display: block;
  background-color: #00b347;
  color: white;
  padding: 4px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.news-title {
  font-size: 1rem;
  flex: 1;
  padding-right: 20px;
  line-height: 1.6;
}
.news-item {
  margin-bottom: 0;
  padding: 30px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}
.news-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, .4);
}
.news-item:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}
.news-item a {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  padding: 0 15px;
}
.stats-section {
  padding: 140px 0 200px;
  background-color: #fff;
  background-image: url(../images/bg-service.jpg);
  background-size: 100% auto;
  background-position: center 165px;
  background-repeat: no-repeat;
}
.stats-card {
  background-color: var(--teal);
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  transform: rotate(45deg);
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.stats-card:hover {
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.stats-card-inner {
  transform: rotate(-45deg);
}
.stats-number {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.stats-label {
  font-size: 1.1rem;
}
/* ========== Footer section ========== */
.footer {
  background-color: #ffffff;
  color: #333;
  padding: 50px 0 0 0;
}
.footer.in {
  background-color: rgba(248, 249, 250);
  border-top: 1px solid rgba(0, 0, 0, .04)
}
.footer-menu-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-menu {
  margin-bottom: 20px;
  width: auto;
  padding-left: 55px
}
.en .footer-menu {
  padding-left: 22px
}
.footer-menu-title {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 15px;
  position: relative;
  color: #222;
}
.en .footer-menu-title {
  font-size: 1rem;
  font-weight: 500;
}
.footer-menu-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}
.footer-menu-links {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.footer-menu-links li {
  margin-bottom: 10px;
}
.footer-menu-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1rem;
}
.en .footer-menu-links a {
  font-size: 0.9375rem;
}
.footer-menu-links a:hover {
  color: var(--primary);
}
.footer-social {
  display: flex;
  gap: 20px;
  margin-left: 10px;
}
.footer-social a {
  color: #999;
  font-size: 30px !important;
}
.footer-social a:hover {
  color: var(--primary);
}
.footer-bottom {
  background-color: #004e35; /* 綠底 */
  padding: 15px 0 18px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7); /* 白色文字 */
  text-align: center;
}
.footer-bottom p {
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 1);
}
.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 5px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: white;
}
.footer-logo {
  margin-bottom: 15px;
}
.footer-logo img {
  height: 60px;
}
.footer-contact {
  margin-bottom: 20px;
  margin-left: 10px;
  font-size: 1rem;
  line-height: 1.8 !important;
  color: #555;
}
/* 搜尋按鈕 */
.search-button {
  background: none;
  border: none;
  color: #555;
  font-size: 1.3rem !important;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0.375rem 0.75rem;
}
.search-button:hover {
  color: var(--primary);
}
.modal-fullscreen .modal-content {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.modal-fullscreen .form-control {
  color: white;
  font-size: 2rem;
  border-radius: 0;
}
.modal-fullscreen .form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}
.modal-fullscreen .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
}
.modal-fullscreen .btn-close-white {
  font-size: 1.5rem;
  opacity: 1;
}
.btn-close-white:hover {
  opacity: 0.75;
}
/* ========== 手機版選單設計 ========== */
.search-btn {
  position: fixed;
  top: 15px;
  right: 60px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  z-index: 1050;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.search-btn:hover {
  color: var(--primary);
}
/* 選單按鈕樣式 */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1060;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: right;
}
.mobile-menu-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  z-index: 1050;
  cursor: pointer;
  display: none; /* 在桌面版隱藏 */
}
/* 漢堡圖標 */
.menu-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #333;
  vertical-align: middle;
}
.menu-icon:before, .menu-icon:after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #333;
}
.menu-icon:before {
  top: -8px;
}
.menu-icon:after {
  bottom: -8px;
}
/* 手機選單容器 */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1060;
  overflow-y: auto;
  transition: right 0.4s ease;
}
.mobile-menu.show {
  right: 0;
}
/* 選單頂部 */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu-header .logo img {
  height: 50px;
}
/* 關閉按鈕 */
.close-menu-btn {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}
.close-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.close-icon:before, .close-icon:after {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #333;
}
.close-icon:before {
  transform: rotate(45deg);
}
.close-icon:after {
  transform: rotate(-45deg);
}
.mobile-menu-content {
  padding: 15px 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.mobile-nav li {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav li:last-child {
  border-bottom: none;
}
.mobile-nav a {
  display: block;
  padding: 14px 30px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
}
/* 子選單 - 最關鍵的部分 */
.submenu {
  display: block !important;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0, 1, 0, 1), padding 0.4s ease, opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  will-change: max-height, opacity, transform;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.mobile-nav .has-submenu.open > .submenu {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: max-height 1s ease-in-out, opacity 0.6s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.submenu li {
  border-bottom: 1px solid #f0f0f0;
  transform: translateX(-20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
  transition-delay: calc(0.075s * var(--item-index, 0));
}
.mobile-nav .has-submenu.open > .submenu li {
  transform: translateX(0);
  opacity: 1;
}
.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color 0.3s ease, width 0.3s ease, height 0.3s ease;
  position: absolute;
  right: 30px;
  top: 22px;
}
.has-submenu.open > a .arrow {
  transform: rotate(-135deg);
  border-color: var(--primary);
  width: 9px;
  height: 9px;
}
.mobile-nav > li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(0.05s * var(--nav-index, 0));
}
.mobile-menu.show .mobile-nav > li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav > li > a {
  position: relative;
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), padding 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
}
/* 主選單波紋效果 */
.mobile-nav > li > a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  width: 5px;
  height: 5px;
  background-color: var(--primary);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}
.mobile-nav .has-submenu.open > a::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.mobile-nav .has-submenu.open > a {
  color: var(--primary);
  padding-left: 30px;
  background-color: rgba(0, 153, 68, 0.05);
}
/* 背景色變化 */
.mobile-nav .has-submenu {
  transition: background-color 0.3s ease;
}
.mobile-nav .has-submenu.open {
  background-color: rgba(0, 153, 68, 0.05);
}
.submenu li:last-child {
  border-bottom: none;
}
.submenu a {
  position: relative;
  padding-left: 35px;
  font-size: 17px;
  transition: color 0.3s ease, padding-left 0.4s ease;
  overflow: hidden;
}
.submenu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 153, 68, 0.05);
  transition: height 0.3s ease;
  z-index: -1;
}
.submenu a:hover {
  color: var(--primary);
  padding-left: 40px;
}
.submenu a:hover::after {
  height: 100%;
}
/* 語言切換 */
.language-switcher {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid #f0f0f0;
}
.language-switcher a {
  text-decoration: none;
  font-size: 17px;
  padding: 7px 40px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.language-switcher a.active {
  color: #fff;
  font-weight: 500;
  background-color: var(--primary);
}
.language-switcher-phone {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid #f0f0f0;
}
.language-switcher-phone a {
  text-decoration: none;
  font-size: 17px;
  padding: 7px 40px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.language-switcher-phone a.active {
  color: #fff;
  font-weight: 500;
  background-color: var(--primary);
}
/* 背景遮罩 */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1055;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  backdrop-filter: blur(2px);
  will-change: opacity;
}
.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}
/* ========== 輪播控制器樣式優化 ========== */
.carousel-control-prev, .carousel-control-next {
  width: 10%;
  opacity: 0.8;
  z-index: 5;
}
.carousel-control-prev {
  left: -20px;
}
.carousel-control-next {
  right: -20px;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 60px;
  height: 60px;
  background-size: 50%;
  background-position: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-top: 80px;
}
.carousel-control-prev:hover .carousel-control-prev-icon, .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, .5);
  transition: all 0.3s ease;
}
.carousel-indicators {
  margin-bottom: 25px;
  z-index: 5;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.carousel-indicators .active {
  background-color: white;
  opacity: 1;
  transform: scale(1.2);
}
.gotop {
  width: 45px;
  height: 45px;
  line-height: 2;
  text-align: center;
  z-index: 999;
  display: none; /* 初始隱藏 */
  border-color: var(--primary);
  background-color: var(--primary); /* 確保背景色正確 */
  border-radius: 50% !important;
  margin-bottom: 1.5rem !important;
  margin-right: 1.5rem !important;
  right: 0 !important;
  bottom: 0 !important;
  position: fixed !important; /* 確保定位正確 */
  color: white; /* 確保圖標顏色可見 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* 添加陰影提高可見度 */
  transition: all 0.3s ease; /* 平滑過渡效果 */
}
.gotop:hover {
  background-color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.gotop i {
  font-size: 20px;
  line-height: 1;
}
/* 語言下拉選單按鈕樣式 - 使用自定義圖標 */
.language-dropdown-btn .btn-primary {
  padding: 10px 15px;
  transition: all 0.3s ease;
  font-size: 16px !important;
  line-height: 1;
  min-width: 100px;
}
/* 移除預設的下拉箭頭 */
.language-dropdown-btn .dropdown-toggle::after {
  display: none;
}
/* 自定義下拉圖標動畫 */
.language-dropdown-btn .fa-chevron-down {
  transition: transform 0.3s ease;
}
.language-dropdown-btn .dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}
.language-dropdown-btn .dropdown-menu {
  min-width: 120px;
  border: none;
  border-radius: 0px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin-top: 17px !important;
}
.language-dropdown-btn .dropdown-item {
  padding: 8px 15px !important;
  font-size: 15px !important;
  transition: all 0.2s ease !important;
  font-weight: 400 !important;
}
.language-dropdown-btn .dropdown-item:hover {
  background-color: var(--primary);
  color: #fff;
}
.language-dropdown-btn .dropdown-item.active {
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
}
.language-dropdown-btn .dropdown-item .fas.fa-check {
  color: #fff !important;
}
.image-gallery {
  position: relative;
  height: 800px;
  top: 0
}
.image-item {
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.image-item-1 {
  top: 50px;
  left: -30px;
  width: 52%;
  z-index: 2;
}
.image-item-2 {
  top: 320px;
  right: 50px;
  width: 35%;
  z-index: 1;
}
.image-item-3 {
  top: 610px;
  left: 40%;
  transform: translateX(-40%);
  width: 60%;
  z-index: 3;
}
.line-right {
  border-right: 1px solid rgba(0, 0, 0, .15);
}
.sticky-top {
  position: fixed;
  width: 100%;
}
.btn-pc {
  display: block !important;
}
.btn-phone {
  display: none !important;
}
.hid-phone {
  display: block;
}
/* ESG頁面特定樣式 */
.esg-banner {
  position: relative;
  height: 400px;
}
.esg-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.esg-banner-text {
  background-color: rgba(0, 166, 80, 1);
  padding: 50px 80px;
  color: white;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  width: 60%;
  max-width: 600px;
  margin-top: 280px;
}
.esg-banner-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.esg-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.esg-section {
  padding: 80px 0;
  position: relative;
}
.esg-section-title {
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.esg-section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #00A650;
}
.esg-policy-item {
  margin-bottom: 30px;
  padding: 20px;
  border-left: 4px solid #00A650;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}
.esg-policy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.esg-dei-section {
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
}
.esg-dei-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}
.esg-dei-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
}
.esg-dei-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.esg-partner-section {
  background: linear-gradient(135deg, #e6f7ef 0%, #ffffff 100%);
}
.esg-workplace-section {
  position: relative;
}
.esg-workplace-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  z-index: 1;
}
.esg-workplace-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.esg-workplace-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  margin-left: 40%;
  background-color: #ffffff;
}
.esg-social-section {
  background-color: #00A650;
  color: white;
}
.esg-social-content {
  padding: 50px;
}
.esg-certificate-section {
  background-color: #f9f9f9;
}
.esg-certificate-item {
  text-align: center;
  margin-bottom: 30px;
}
.esg-certificate-item img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  padding: 10px;
  background-color: white;
  transition: all 0.3s ease;
}
.esg-certificate-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card-body {
  line-height: 1.5;
}
.text-muted {
  font-size: .9rem !important;
}
.certification-image {
  margin: -70px 40px 0;
}
/* ========== 內頁 ========== */
.diagonal-hero-section {
  position: relative;
  height: 40vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.diagonal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.diagonal-hero-left {
  position: absolute;
  top: 0px;
  left: 0;
  width: 48%;
  height: 100%;
  background-color: rgba(0, 100, 86, 0.9);
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  z-index: 1;
}
.diagonal-hero-right {
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.diagonal-hero-right.bg-1 {
  background-image: url("../images/slider-in-1.jpg");
}
.diagonal-hero-right.bg-2 {
  background-image: url("../images/slider-in-2.jpg");
}
.diagonal-hero-right.bg-3 {
  background-image: url("../images/slider-in-3.jpg");
}
.diagonal-hero-right.bg-4 {
  background-image: url("../images/slider-in-4.jpg");
}
.diagonal-hero-right.bg-5 {
  background-image: url("../images/slider-in-5.jpg");
}
.diagonal-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-left: 8%;
  max-width: 45%;
  padding-top: 50px;
}
.en .diagonal-hero-content {
  max-width: 34%;
  padding-left: 6%;
}
.diagonal-hero-title {
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: 10px;
  color: #fff !important;
}
.en .diagonal-hero-title {
  font-size: 2.7rem;
  letter-spacing: 0rem;
}
.diagonal-hero-title::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 0px;
  width: 2px;
  height: 60px;
  background-color: white;
}
.en .diagonal-hero-title::before {
  left: -50px;
}
.diagonal-hero-diamond {
  position: absolute;
  top: 0%;
  left: 10%;
  width: 500px;
  height: 500px;
}
/* 大型背景文字 */
.bg-text-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  line-height: 1;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.bg-text-section.pr {
  padding: 40px 0 100px;
}
.bg-text {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 15rem;
  font-weight: 900;
  color: #f2f8f0;
  line-height: 1;
  z-index: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.content-section {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 2rem;
  position: relative;
}
.en .section-title {
  font-size: 2.2rem;
}
/* 麵包屑導航 */
.breadcrumb-section {
  padding: 15px 0;
  background-color: transparent;
  margin-top: 0px;
  position: relative;
  z-index: 99;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: var(--dark-gray2);
  font-size: 0.9rem;
}
.breadcrumb-item a {
  color: var(--dark-gray2);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
  color: var(--primary);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: '>';
  margin: 0 10px;
  color: var(--dark-gray);
}
.breadcrumb-item.active {
  color: var(--primary);
}
/* 內容區塊 */
.content-block {
  margin-bottom: 30px;
}
.content-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}
.en .content-block p {
  font-size: 1rem;
}
.content-block .highlight {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark-blue);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 20px;
  border-left: 5px solid var(--primary);
  padding-bottom: 0px;
}
.en .content-block .highlight {
  font-size: 1.2rem;
  line-height: 1.5;
}
.content-block .signature {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-blue);
  text-align: right;
  margin-top: 3rem;
}
/* 回到頂部按鈕 */
.top-button {
  position: fixed;
  right: 0;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--dark-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: background-color 0.3s ease;
}
.top-button:hover {
  background-color: var(--primary);
}
/* 自定義子選單樣式 */
.side-menu {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  margin-right: 20px;
}
.side-menu .menu-title {
  background-color: var(--primary);
  color: white;
  padding: 26px 30px 18px;
  font-weight: 600;
}
.side-menu .menu-title h4 {
  color: #fff !important;
  font-size: 1.8rem;
  letter-spacing: 4px;
}
.en .side-menu .menu-title h4 {
  color: #fff !important;
  font-size: 1.8rem;
  letter-spacing: 0px;
}
.side-menu .nav-link {
  color: #333;
  padding: 14px 25px;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
  width: 100%;
  margin-left: 0;
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}
.side-menu .nav-link:hover {
  background-color: var(--light-green);
  color: var(--primary);
  padding-left: 30px;
}
.side-menu .nav-link.active {
  background-color: var(--light-green);
  color: var(--primary);
  font-weight: 700;
}
.side-menu .nav-link:last-child {
  border-bottom: none;
}
.side-menu .nav-link i {
  margin-top: 4px;
}
/* 流程卡片增強 */
.process-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.process-card .card-body {
  padding: 25px;
}
.process-card .card-title {
  color: var(--primary);
  margin-bottom: 15px;
}
.section-header {
  margin: 15px 10px 25px;
  position: relative;
}
.section-header .section-title {
  margin-bottom: 0rem;
}
.equipment-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
  width: 100%;
}
.equipment-list-content {
  display: inline-flex;
  padding-right: 30px;
  width: 100%;
}
.equipment-list-image {
  width: 70%;
}
.equipment-list-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  width: 30%;
  padding: 13px;
  font-style: italic;
}
.equipment-list-subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.equipment-list-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}
.equipment-list-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.equipment-list-image img:hover {
  transform: scale(1.05);
}
.equipment-list-link {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.equipment-list-link:hover {
  background-color: #007030;
  color: white;
}
/* 查詢表單頁面樣式 */
.inquiry-container {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 40px 60px;
  margin-bottom: 20px;
}
.inquiry-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ececec;
}
.inquiry-title {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.inquiry-desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.4;
}
.part-info {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
}
.part-info h3 {
  color: #333;
  font-size: 1.3rem;
  padding-bottom: 10px;
}
.part-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.detail-item {
  display: flex;
  flex-wrap: wrap;
}
.detail-label {
  min-width: 100px;
  font-weight: 600;
  color: #555;
}
.detail-value {
  flex: 1;
  color: #333;
  line-height: 1.4;
}
.form-note {
  margin-bottom: 20px;
  color: #666;
  text-align: right;
  font-size: 0.9rem;
}
.form-group {
  margin-bottom: 0rem;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}
.form-control {
  height: 48px;
  border: 1px solid #CDCDCD;
  border-radius: 8px;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 153, 68, 0.15);
}
.form-select {
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  background-position: right 1rem center;
  transition: all 0.3s ease;
}
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 153, 68, 0.15);
}
textarea.form-control {
  height: auto;
  min-height: 150px;
  resize: vertical;
}
.captcha-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.captcha-image {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.captcha-image img {
  height: 50px;
}
.refresh-captcha {
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  padding: 8px;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.refresh-captcha:hover {
  color: var(--primary);
}
.inquiry-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  color: #666;
}
/* 零組件頁面特定樣式 */
.parts-section {
  padding: 0;
}
.parts-header {
  margin-bottom: 30px;
  text-align: center;
}
.parts-header h1 {
  color: var(--primary);
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.parts-filter {
  margin-bottom: 30px;
}
.parts-table-container {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.parts-table {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.parts-table table {
  width: 100%;
  border-collapse: collapse;
}
.parts-table thead {
  background-color: var(--primary);
}
.parts-table thead th {
  color: #fff;
}
.parts-table thead tr:hover {
  background-color: var(--primary);
}
.parts-table th, .parts-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.parts-table th {
  font-weight: 600;
  color: #333;
}
.parts-table tr:hover {
  background-color: #f5f5f5;
}
.query-btn {
  display: inline-block;
  padding: 6px 15px;
  background-color: #009944;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.query-btn:hover {
  background-color: #008038;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
/* 分頁樣式 */
.pagination-container {
  margin-top: 40px;
  margin-bottom: 0px;
}
.pagination {
  gap: 7px;
  margin-bottom: 0;
}
.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  color: #666;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
}
.page-item.active .page-link:hover {
  color: #fff;
}
.page-link:hover {
  background-color: #f5f5f5;
  color: var(--primary);
  border-color: #ddd;
}
.page-item.disabled .page-link {
  color: #ccc;
  background-color: #fff;
}
.btn-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
}
/* 滿版服務圖標樣式 */
.service-container {
  display: flex;
  justify-content: center;
  margin: 30px -13px 0;
  width: 100%;
}
.service-box {
  flex: 1;
  min-width: 240px;
  max-width: calc(20% - 20px);
  margin: 0 13px;
  text-align: center;
  background-color: white;
  border-radius: 12px;
  padding: 38px 15px 45px;
  transition: all 0.4s ease;
  text-decoration: none;
  border-top: 0px solid var(--primary);
  border-bottom: 0px solid var(--primary);
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 153, 68, 0.15);
  border-color: rgba(0, 153, 68, 0.3);
}
.icon-wrapper {
  width: 130px;
  height: 130px;
  background-color: rgba(0, 153, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}
.service-box:hover .icon-wrapper {
  background-color: #009944;
}
.icon-wrapper i {
  font-size: 3rem;
  color: #009944;
  transition: all 0.4s ease;
}
.service-box:hover .icon-wrapper i {
  color: white;
}
.service-box h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
.en .service-box h4 {
  font-size: 1.2rem;
  line-height: 1.5;
}
.service-box p {
  color: #666;
  font-size: 15px;
  margin-bottom: 0;
}
.service-box:hover h4 {
  color: #009944;
}
/* 新聞列表樣式 */
.bg-text-section .news-list {
  margin: 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.bg-text-section .news-list-item {
  display: flex;
  margin-bottom: 30px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary);
}
.bg-text-section .news-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.bg-text-section .news-date {
  width: 100px;
  min-width: 100px;
  padding: 20px 15px;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}
.bg-text-section .date-day {
  font-size: 2.5rem !important;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--primary);
  font-family: "Roboto", serif;
}
.bg-text-section .date-month {
  font-size: 0.9rem;
  color: #666;
  font-family: "Roboto", serif;
}
.bg-text-section .news-content {
  flex: 1;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bg-text-section .news-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(0, 153, 68, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  width: auto;
  max-width: fit-content;
  margin-bottom: 5px;
}
.bg-text-section .news-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}
.en .bg-text-section .news-title {
  font-size: 1.2rem;
  line-height: 1.5;
}
.bg-text-section .news-title a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}
.bg-text-section .news-title a:hover {
  color: var(--primary);
}
.bg-text-section .news-excerpt {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}
.bg-text-section .news-more-container {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
.bg-text-section .news-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  font-size: 15px;
}
.bg-text-section .news-more:hover {
  color: var(--dark-green);
}
.bg-text-section .news-more i {
  transition: transform 0.3s ease;
}
.bg-text-section .news-more:hover i {
  transform: translateX(5px);
}
/* 新聞內頁樣式 */
.bg-text-section .news-detail-wrapper {
  background-color: white;
  border-radius: 10px;
  padding: 50px 60px 70px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}
.bg-text-section .news-detail-header {
  margin-bottom: 30px;
}
.bg-text-section .news-detail-wrapper img {
  max-width: 100%;
}
.bg-text-section .news-detail-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--dark-blue);
}
.en .bg-text-section .news-detail-title {
  font-size: 1.8rem;
  line-height: 1.4;
}
.bg-text-section .news-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}
.bg-text-section .news-detail-date {
  color: #666;
  font-size: 1rem;
  font-family: "Roboto", serif;
}
.bg-text-section .news-detail-share {
  display: flex;
  align-items: center;
}
.bg-text-section .news-share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  color: #555;
  transition: all 0.3s ease;
  text-decoration: none;
}
.bg-text-section .news-share-icon:hover {
  background-color: var(--primary);
  color: white;
}
.bg-text-section .news-detail-image {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}
.bg-text-section .news-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}
.bg-text-section .news-detail-content {
  line-height: 1.8;
  color: var(--dark-gray);
  font-size: 1.1rem;
}
.bg-text-section .news-detail-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}
.bg-text-section .news-detail-content p {
  margin-bottom: 20px;
}
.bg-text-section .news-detail-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.bg-text-section .news-detail-content ul li {
  margin-bottom: 2px;
}
.bg-text-section .news-detail-content blockquote {
  padding: 20px 30px;
  margin: 30px 0;
  border-left: 4px solid var(--primary);
  background-color: #f9f9f9;
  font-style: italic;
}
.bg-text-section .news-detail-content blockquote p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.bg-text-section .news-detail-content blockquote cite {
  font-size: 0.9rem;
  color: #666;
  font-style: normal;
}
.bg-text-section .news-detail-footer .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  padding: 10px 35px !important;
  font-weight: 500;
  transition: all 0.3s ease;
}
.bg-text-section .news-detail-footer .btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 153, 68, 0.3);
}
.bg-text-section .news-detail-footer .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 153, 68, 0.2);
}
/* 頁腳區域 */
.bg-text-section .news-detail-footer {
  margin-top: 40px;
  text-align: center;
}
/* 人才招募特定樣式 */
.join-us-cta {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.cta-content {
  flex: 1;
  padding: 50px 50px 60px;
}
.cta-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background-color: #007e33;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 153, 68, 0.2);
}
.cta-image {
  flex: 1;
  height: 400px;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pr-info {
  padding: 0 10px;
}
/* 維修服務頁面特定樣式 */
.repair-section {
  padding: 10px 0 0;
}
.repair-intro {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.repair-header {
  text-align: center;
  margin-bottom: 50px;
}
.repair-header h1 {
  color: var(--primary);
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.repair-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--primary);
}
.repair-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.repair-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.repair-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.repair-item-image {
  height: 220px;
  overflow: hidden;
}
.repair-item-image img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  transition: transform 0.3s ease;
  padding: 0px;
  object-position: center top;
}
.repair-item:hover .repair-item-image img {
  transform: scale(1.1);
}
.repair-item-content {
  padding: 10px 30px 30px;
  text-align: center;
}
.repair-item-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 1rem;
  line-height: 1.5;
}
.repair-item-description {
  color: #666;
  margin-bottom: 15px;
}
.repair-item-code {
  color: #999;
  font-size: 0.9rem;
}
.repair-table .table-title {
  background-color: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  margin: 0;
  border-radius: 6px 6px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.repair-table .table {
  font-size: 0.95rem;
}
.repair-table .table th {
  font-weight: 600;
}
.repair-table .table th, .repair-table .table td {
  padding: 10px 20px;
  line-height: 1.5;
}
/* 表格懸停效果 */
.repair-table .table tbody tr:hover {
  background-color: rgba(0, 153, 68, 0.05) !important;
}
/* 友善職場特定樣式 */
.policy-card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--primary);
}
.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.policy-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 153, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
}
.policy-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}
.cta-container {
  margin-top: 30px;
  padding: 30px;
  border-top: 1px solid rgba(0, 153, 68, 0.2);
}
/* 多元學習特定樣式 */
.learning-path {
  margin-top: 30px;
}
.learning-category {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.learning-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.category-header {
  background-color: var(--primary);
  color: white;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.category-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.category-title {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff !important;
}
.category-content {
  padding: 25px 40px 50px;
}
.category-content p {
  color: var(--dark-gray);
  margin-bottom: 20px;
}
.course-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.course-item {
  border-left: 3px solid var(--primary);
  padding-left: 20px !important;
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 0 5px 5px 0;
}
.course-name {
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.course-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}
.cta-container {
  margin-top: 30px;
  padding: 30px;
  border-top: 1px solid rgba(0, 153, 68, 0.2);
}
/* 直式時間軸 */
.vertical-stylish-timeline {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 20px 0;
}
.vertical-stylish-timeline::before {
  content: '';
  position: absolute;
  left: 70px;
  top: 40px;
  width: 2px;
  height: calc(100% - 120px);
  background: linear-gradient(to bottom, rgba(0, 153, 68, 0.1), rgba(0, 153, 68, 0.5) 20%, rgba(0, 153, 68, 0.5) 80%, rgba(0, 153, 68, 0.1));
  z-index: 0;
}
.timeline-event {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}
.timeline-date-circle {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-inner-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00c853, #005f2c);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 7px 15px rgba(0, 153, 68, 0.3);
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.circle-decoration {
  position: absolute;
  width: 250%;
  height: 250%;
  top: -75%;
  left: -75%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
  border-radius: 50%;
  z-index: 1;
  animation: rotate 25s linear infinite;
}
.circle-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: 1;
  border: 2px solid rgba(0, 153, 68, 0.3);
  animation: pulse 3s infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.2;
  }
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
}
.timeline-connector {
  display: flex;
  align-items: center;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}
.timeline-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary));
}
.timeline-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
}
.timeline-year {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  font-family: "DM Serif Text", serif;
  letter-spacing: 1px;
  font-style: italic;
}
.timeline-month {
  display: inline-block;
  padding: 4px 15px;
  background-color: #e8f5e9;
  color: var(--primary);
  border-radius: 999px;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  margin-right: 5px;
}
.timeline-card {
  flex-grow: 1;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 25px 120px 25px 30px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-left: 30px;
}
.timeline-card p {
  line-height: 1.5;
  color: #666;
}
.timeline-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.timeline-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #00c853, #005f2c);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.timeline-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 153, 68, 0.1), rgba(0, 153, 68, 0));
  border-radius: 50%;
}
.timeline-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  line-height: 1.3;
}
.timeline-image {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.timeline-image img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.timeline-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 153, 68, 0.1), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.timeline-image:hover img {
  transform: scale(1.05);
}
.timeline-image:hover::after {
  opacity: 1;
}
/* 最後一個事件沒有連線 */
.timeline-event:last-child .timeline-connector {
  display: none;
}
.contact-info-section {
  margin-top: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 153, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  margin-right: 15px;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.contact-detail p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}
.contact-detail a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-detail a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}
/* 表單區塊樣式 */
.contact-form-wrapper {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
}
.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.form-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}
.form-subtitle {
  color: #666;
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-weight: 500;
}
.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 153, 68, 0.1);
  outline: none;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
/* 地圖區塊樣式 */
.map-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.map-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* 永續經營樣式 */
.sustainability-section {
  margin-bottom: 60px;
}
.image-container img {
  width: 100%;
  height: auto;
}
.sustainability-policy-container {
  padding: 0px;
}
.policy-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 0 30px 0 0;
}
.policy-item {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.policy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.policy-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background-color: rgba(0, 153, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.policy-icon i {
  font-size: 30px;
  color: #009944;
}
.policy-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.4;
}
.policy-content p {
  margin-bottom: 0;
  color: #666;
  line-height: 1.6;
  font-size: 1.1rem;
}
/* DEI宣言證書樣式 */
.dei-certificate {
  margin: 30px 0;
  perspective: 1000px;
}
.certificate-inner {
  background-color: #f9f9f3;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPg0KICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjZjlmOWYzIj48L3JlY3Q+DQogIDxwYXRoIGQ9Ik0wIDAgTDEwMCAwIEwxMDAgMTAwIEwwIDEwMCBaIiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDk5NDQiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiPjwvcGF0aD4NCjwvc3ZnPg==');
  border: 8px double #009944;
  padding: 60px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.dei-certificate:hover .certificate-inner {
  transform: rotateY(1deg);
}
.certificate-border {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(0, 153, 68, 0.2);
  pointer-events: none;
}
.certificate-emblem-left, .certificate-emblem-right {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 153, 68, 0.1);
  border-radius: 50%;
  bottom: 40px;
}
.certificate-emblem-left {
  left: 40px;
}
.certificate-emblem-right {
  right: 40px;
}
.certificate-emblem-left:before, .certificate-emblem-right:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background-color: rgba(0, 153, 68, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.certificate-logo {
  text-align: center;
  margin-bottom: 30px;
}
.certificate-logo img {
  max-height: 90px;
}
.certificate-title {
  text-align: center;
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  font-size: 36px;
  color: #009944;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.en .certificate-title {
  letter-spacing: 0em;
  line-height: 1.4;
}
.certificate-text {
  font-family: 'Noto Serif TC', serif;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
}
.certificate-intro {
  text-align: justify;
  margin-bottom: 30px;
  font-size: 17px;
}
.certificate-commitment {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.commitment-section {
  margin-bottom: 25px;
}
.commitment-title {
  font-size: 20px;
  font-weight: 600;
  color: #009944;
  margin-bottom: 10px;
}
.certificate-signature {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 40px;
}
.signature-image {
  margin-right: 20px;
  max-width: 180px;
}
.signature-name {
  text-align: center;
  font-family: 'Noto Serif TC', serif;
  border-top: 1px solid #009944;
  padding-top: 10px;
}
/* DEI 執行內容樣式 */
.dei-implementation {
  margin-top: 80px;
  margin-bottom: 60px;
}
.section-header {
  margin-bottom: 40px;
}
.title-underline {
  width: 80px;
  height: 4px;
  background-color: #009944;
  margin-top: 15px;
}
.dei-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}
.dei-card:hover {
  transform: translateY(-10px);
}
.dei-card-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 153, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.dei-card-icon i {
  font-size: 36px;
  color: #009944;
}
.dei-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.dei-card p {
  color: #666;
  margin-bottom: 0;
}

/*google search*/
.gsc-control-cse {
    background-color: transparent!important;
    border: none!important;
    border-bottom:  1px solid #fff!important;
}
.gsc-input {
  border-radius: 0px!important;
  border: none!important;
  padding: 0.5rem!important;
  background-color:  transparent!important;
  color: #fff!important;
  font-size: 2rem!important;
}
.gsc-input-box {
  background-color:  transparent!important;
  border: none!important; 
}
.gsc-search-button {
  background-color:  transparent!important;
  color: white!important;
  border: none!important;
  border-radius: 0px!important;
  padding:0!important;
  cursor: pointer!important;
}
.gsc-search-button-v2 svg {
    width: 28px!important;
    height: 28px!important;
}

/*index card*/
.stats-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}
a.text-white:hover {
  color: white !important;
}
.clickable-card {
  cursor: pointer;
}
.search-btn-pr {
    height: 46px;
    border-radius: 10px;
    letter-spacing: 0;
    font-feature-settings: 18px;
}
.search-btn-pr i {
    margin-right: 5px;
}
