* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0f1c;
  overflow-x: hidden;
  --cookie-padding: 0px;
  padding-bottom: var(--cookie-padding);
}
body.cookie-banner-visible {
  --cookie-padding: 0px;
}
body.cookie-banner-visible:has(#cookie-banner.show:not([style*="display: none"])) {
  --cookie-padding: 120px;
}
img, picture {
  display: block;
}
img[width][height] {
  height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
body.menu-open {
  overflow: hidden;
  background-color: #040f23;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-on-scroll {
  opacity: 0;
  transition: all 0.6s ease;
}
.animate-on-scroll.animate {
  opacity: 1;
  animation: fadeInUp 0.8s ease forwards;
}
.animate-left {
  animation: fadeInLeft 0.8s ease forwards;
}
.animate-right {
  animation: fadeInRight 0.8s ease forwards;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 15, 28, 0.4);
  backdrop-filter: blur(0px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 0px solid rgba(255, 255, 255, 0.1);
  transform: translateY(0);
}
.navbar.hidden {
  transform: translateY(-100%) !important;
  transition: transform 0.3s ease-in-out !important;
}
.navbar.menu-open {
  background: rgba(0, 15, 35, 0.98);
  backdrop-filter: blur(10px);
}
.navbar.scrolled {
  background: rgba(10, 15, 28, 0.6);
  backdrop-filter: blur(0px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 0px solid rgba(0, 212, 255, 0.3);
  transform: translateY(0);
}
.navbar.scrolled.menu-open {
  background: rgba(0, 15, 35, 0.98);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 2rem;
  max-width: 98%;
  margin: 0 auto;
  transition: padding 0.3s ease;
}
.navbar.scrolled .navbar-container {
  padding: 1.3rem 2rem;
}
.navbar-logo img {
  height: 25px !important;
  width: auto;
  transition: all 0.3s ease;
}
.navbar.scrolled .navbar-logo img {
  height: 25px;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
  margin: 0 0.5rem;
}
.nav-links {
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.5px;
  font-size: 18px;
  display: block;
}
.nav-links:hover {
  background-color: rgba(0, 123, 191, 0.2);
  color: #00d4ff;
  transform: translateY(-2px);
}
.nav-item.active > .nav-links, .nav-menu .nav-item.active > .nav-links {
  position: relative;
}
/* 排除語言選項的 active 樣式 */
.mobile-language-item.active > .nav-links {
  background: transparent;
  color: inherit;
}
.nav-links .link-text {
  display: inline;
}
.nav-links .dropdown-arrow {
  display: none;
}
.mobile-language-item {
  display: none;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 15, 28, 0.98);
  backdrop-filter: blur(15px);
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  padding: 0.3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  margin-top: 5px;
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown li {
  padding: 0;
}
.dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.dropdown a:hover {
  background-color: rgba(0, 123, 191, 0.2);
  color: #00d4ff;
  transform: translateX(5px);
  border-radius: 0px;
  margin-right: 5px;
}
.desktop-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.language-dropdown {
  position: relative;
}
.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.language-btn:hover {
  background: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.5);
  color: #00d4ff;
}
.language-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.language-dropdown:hover .language-btn i {
  transform: rotate(180deg);
}
.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(10, 15, 28, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 120px;
  z-index: 1000;
  margin-top: 5px;
  left: auto;
}
.language-dropdown:hover .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.language-menu a:hover {
  background: rgba(0, 123, 191, 0.1);
  color: #00d4ff;
  transform: translateX(5px);
}
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 30px;
  height: 24px;
  justify-content: space-between;
}
.bar {
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 3px;
}
.menu-icon.active .bar:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.menu-icon.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-icon.active .bar:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}
.contact-btn {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.mobile-language {
  margin: 1rem 1.9rem 2rem;
  border-bottom: none !important;
  display: inline-flex;
  gap: 0.6rem;
}
.mobile-language .mobile-nav-link {
  padding: 0.6rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 400;
  font-size: .9rem;
}
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-section::before {
  display: none;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-slide .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 28, 0.4);
  z-index: 0;
}
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-content {
  text-align: center;
  z-index: 999;
  max-width: 900px;
  padding: 0 2rem;
  position: relative;
  animation: fadeInUp 1.2s ease;
  width: 100%;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  margin-top: .8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-content h1 div {
  font-style: italic;
  display: inline-block;
}
.hero-content h1 span {
  color: #5bcaf4;
  font-style: italic;
}
.hero-subtitle h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
  font-weight: 400;
}
.hero-subtitle p {
  font-size: 1.3rem;
  opacity: 0.8;
  font-weight: 300;
  letter-spacing: 1px;
}
.hero-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  pointer-events: none;
  z-index: 10;
}
.hero-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-btn:hover {
  background: rgba(0, 212, 255, 0.3);
  transform: scale(1.1);
  border-color: rgba(0, 212, 255, 0.5);
}
.hero-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.2rem;
  z-index: 10;
}
.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0px solid transparent;
}
.hero-indicator.active {
  background: #00d4ff;
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-indicator:hover {
  background: rgba(0, 212, 255, 0.7);
}
section {
  padding: 0;
  position: relative;
}
section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  font-style: italic;
}
section h2 span {
  color: #5bcaf4;
}
.about-section {
  background-color: #f5f5f5;
  color: #333;
  position: relative;
  overflow: hidden;
  background-image: url(../images/bg-about.jpg);
  background-size: cover;
  padding: 6rem 0;
}
.about-section h2 {
  color: #333;
  position: relative;
  z-index: 2;
}
.index-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-text {
  padding-right: 2rem;
}
.about-text h2 {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
.about-text h2 .subtitle {
  display: block;
  font-size: 2rem;
  color: #007bbf;
  font-weight: 600;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-description {
  font-size: 1.1rem;
  line-height: 2;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 400;
}
.about-links {
  display: flex;
}
.link-row {
  display: flex;
  gap: 1rem;
}
.about-link {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 2.2rem;
  background: #007bbf;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 123, 191, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.about-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.about-link:hover::before {
  left: 100%;
}
.about-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 123, 191, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
  color: #fff;
}
.about-link span {
  font-weight: 500;
  font-size: 1rem;
}
.about-link i {
  color: #fff;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}
.about-link:hover i {
  transform: translateX(5px);
}
.about-link.single {
  max-width: 50%;
}
.about-visual {
  position: relative;
  height: 500px;
}
.geometric-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hex-image {
  position: absolute;
  width: 380px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}
.hex-image:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 123, 191, 0.2);
}
.hex-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hex-image:hover img {
  transform: scale(1.1);
}
.hex-image.building {
  top: 10px;
  right: 20px;
  animation-delay: 0s;
}
.hex-image.office {
  top: 200px;
  right: 160px;
  animation-delay: 2s;
}
.hex-image.factory {
  top: 260px;
  right: 80px;
  animation-delay: 4s;
}
.hex-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.technology-section {
  background: linear-gradient(rgba(10, 15, 28, 0.8), rgba(10, 15, 28, 0.8)), url(../images/bg-tec.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 10rem 0;
}
.tech-description {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.8;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
.tech-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  backdrop-filter: blur(15px);
  overflow: hidden;
}
.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tech-card:hover::before {
  opacity: 1;
}
.tech-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}
.tech-card i {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
.tech-card:hover i {
  transform: scale(1.2) rotate(10deg);
}
.tech-card h3 {
  font-size: 1.3rem;
  margin-bottom: .8rem;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.tech-card p {
  position: relative;
  z-index: 1;
  opacity: .6;
  font-size: .9rem;
}
.products-section {
  background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
  color: #333;
  padding: 7rem 0;
}
.products-section .container {
  max-width: 100%;
}
.products-section h2 {
  color: #333;
}
.products-section h2 span {
  color: #007bbf;
}
.products-carousel {
  position: relative;
  overflow: hidden;
  max-width: 94%;
  margin: 0 auto;
}
.products-container {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  margin-left: 1rem;
}
.product-slide {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.5s ease;
}
.product-card {
  padding: 2rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  box-sizing: border-box;
  flex-shrink: 0;
}
.product-card img {
  max-width: 100%;
}
.product-card h3 {
  font-size: 2.5rem;
  margin-bottom: .8rem;
  margin-top: 1rem;
  color: #007bbf;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.product-card p {
  position: relative;
  z-index: 1;
  color: #4b5563;
  font-size: 1.1rem;
}
.carousel-controls {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #007bbf;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.carousel-btn:hover {
  background: #007bbf;
  color: white;
  transform: scale(1.1);
}
.carousel-btn:disabled {
  background: rgba(200, 200, 200, 0.5);
  color: #999;
  cursor: not-allowed;
  transform: none;
}
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: 1rem 0;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.indicator.active {
  background: #007bbf;
  transform: scale(1.5);
  border-color: rgba(255, 255, 255, 0.3);
}
.indicator:hover {
  background: #00a0e0;
}
.application-section {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  background: linear-gradient(rgba(10, 15, 28, 0.7), rgba(10, 15, 28, 0.7)), url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
}
.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.app-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.app-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}
.app-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
  font-weight: 400;
}
.media-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(10, 15, 28, 0.7), rgba(10, 15, 28, 0.7)), url(../images/bg-med.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.media-section h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}
.media-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0;
}
.media-container {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
}
.media-slide {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.media-item {
  flex: 0 0 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  position: relative;
  box-sizing: border-box;
  margin: 1px;
}
.media-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.3);
}
.media-item.entering {
  animation: slideInMedia 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.media-item.exiting {
  animation: slideOutMedia 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.media-thumbnail {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  aspect-ratio: 16 / 9;
}
@supports not (aspect-ratio: 16 / 9) {
  .media-thumbnail {
    padding-bottom: 56.25%;
    height: 0;
  }
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 212, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.play-button i {
  color: white;
  font-size: 1.8rem;
  margin-left: 5px;
}
.media-item:hover .play-button {
  background: #00d4ff;
  transform: translate(-50%, -50%) scale(1.1);
}
.media-title {
  line-height: 1.5;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.media-carousel .carousel-controls {
  display: none !important;
}
@keyframes slideInMedia {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes slideOutMedia {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
  }
}
.media-item.animate-on-scroll {
  opacity: 1 !important;
  animation: none !important;
}
.footer {
  background: #050a14;
  padding: 3rem 0 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.footer-logo img {
  height: 32px !important;
  width: auto !important;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.footer-links a:hover {
  color: #00d4ff;
  opacity: 1;
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0 2rem;
  opacity: 1;
  font-weight: 400;
  font-size: .9rem;
  background-color: #222627;
  color: #666;
  letter-spacing: 0.02rem;
}
.footer-bottom a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 1;
}
.footer-bottom a:hover {
  color: #00d4ff;
  opacity: 1;
  transform: translateY(-2px);
}
.footer-section h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.footer-section p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #00d4ff;
}
.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.contact-info i {
  color: #fff;
  margin-right: 0rem;
  width: 16px;
}
.index-slider {
  z-index: 1;
}
.index-slider:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, .5);
  z-index: 2;
  width: 100%;
  height: 100%;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #007bbf, #00d4ff);
  padding: 1.5rem 1.5rem 2rem;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  height: 150px;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: #ffffff;
}
.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.6;
}
.cookie-content p a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-content p a:hover {
  opacity: 0.8;
}
.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.cookie-btn.primary {
  background: #FFF;
  color: rgb(0, 123, 191);
  border: 1px solid #FFF;
}
.cookie-modal-content .cookie-btn.primary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.cookie-btn.secondary {
  background: #5bcaf4;
  color: #FFF;
  border: 1px solid #ffffff;
}
.cookie-btn.tertiary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.cookie-btn.reject {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.cookie-btn.reject:hover {
  background: rgba(255, 255, 255, 0.25);
}
.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.cookie-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.cookie-modal-header h3 {
  font-size: 24px;
  color: #333;
  margin: 0;
  font-weight: 700;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.cookie-modal-close:hover {
  background: #f3f4f6;
  color: #333;
  transform: rotate(90deg);
}
.cookie-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}
.cookie-intro {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}
.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.cookie-category:hover {
  background: #f3f4f6;
  border-color: #60a5fa;
}
.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 1rem;
}
.cookie-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category-title i {
  font-size: 20px;
  color: #60a5fa;
}
.cookie-category-info h4 {
  font-size: 16px;
  color: #333;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}
.cookie-category-info p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0.5rem 0;
}
.cookie-category-info a {
  color: #007bbf;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cookie-category-info a:hover {
  color: #005a8f;
}
.cookie-category-info ul {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.cookie-category-info ul li {
  margin: 0.25rem 0;
}
.cookie-modal-body > p a {
  color: #007bbf;
  text-decoration: underline;
}
.cookie-modal-body > p a:hover {
  color: #005a8f;
}
.cookie-category-info {
  flex: 1;
}
.cookie-required {
  font-size: 12px;
  color: #92400e;
  background: #fef3c7;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 0.5rem;
}
.cookie-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}
.cookie-badge.required {
  background: #fef3c7;
  color: #92400e;
}
.cookie-category-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
  flex-shrink: 0;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.3s;
  border-radius: 28px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #60a5fa;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(28px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #60a5fa;
}
.cookie-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}
.cookie-modal-body > p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.cookie-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10001;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.cookie-message.show {
  opacity: 1;
  transform: translateY(0);
}
.cookie-message i {
  color: #10b981;
  font-size: 20px;
}
.cookie-message span {
  color: #333;
  font-size: 15px;
  font-weight: 500;
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-content {
  text-align: center;
  color: white;
}
.loading-logo {
  margin-bottom: 2rem;
  animation: logoFloat 2s ease-in-out infinite;
}
.loading-logo img {
  height: 40px !important;
  width: auto !important;
  filter: brightness(1.2);
}
.loading-spinner {
  margin: 2rem 0;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 212, 255, 0.2);
  border-top: 4px solid #00d4ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}
.loading-text {
  font-size: 1.2rem;
  font-weight: 300;
  color: #00d4ff;
  margin-top: 1rem;
  animation: textPulse 1.5s ease-in-out infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes textPulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
.page-hero {
  position: relative;
  height: 58vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero.blog-banner {
  min-height: 300px !important;
  height: 300px !important;
  background-size: cover !important;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: 100% auto;
}
.hero-background img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 28, 0.7);
  z-index: 1;
}
.page-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 0rem;
  margin-top: 4rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.3;
}
.page-hero-content p {
  font-size: 1.2rem;
  color: #00d4ff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-weight: 300;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: #00d4ff;
}
.breadcrumb span {
  color: rgba(255, 255, 255, .7);
}
.tab-navigation {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
}
.tab-nav {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.tab-btn {
  background: none;
  border: none;
  color: #ffffff;
  padding: 1.3rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  border-bottom: 3px solid transparent;
  text-decoration: none;
}
.tab-btn:hover {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
}
.tab-btn.active {
  color: #00d4ff;
  border-bottom-color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
}
.page-content {
  background-color: #f5f5f5;
  color: #374151 !important;
  position: relative;
  overflow: hidden;
  background-image: url(../images/bg-about.jpg);
  background-size: cover;
  padding: 0;
  background: #ffffff !important;
}
.content-main {
  background-color: #ffffff;
  display: block;
  padding: 90px 0;
}
.content-main.bg-black {
  background-color: #000;
  display: block;
}
.content-main h2 {
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}
.content-main h3 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}
.content-main h4 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}
.content-main p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 400;
}
.content-main img {
  max-width: 100%;
  height: auto;
}
.text-blue {
  color: #007bbf !important;
}
.text-blue2 {
  color: #5bcaf4 !important;
}
.text-center {
  text-align: center !important;
}
.section-title2 {
  font-size: 1.4rem;
  text-align: center;
  color: #007bbf;
  margin-bottom: 2rem;
}
.about-content {
  display: block;
  animation: fadeInUp 0.6s ease;
  padding: 6rem 0;
  background-image: url(../images/bg-about.jpg);
  background-size: cover;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}
.section-header h2 span {
  color: #00d4ff;
}
.section-header p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-content p, .page-content li, .page-content span {
  color: #444;
}
.page-content a {
  color: #3b82f6 !important;
}
.page-content a:hover {
  color: #1e3a8a !important;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  align-items: center;
  margin-bottom: 0rem;
}
.content-text h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #007bbf;
  font-weight: 600;
  text-align: left;
}
.content-text h2 span {
  color: #1a1a1a;
}
.text-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0rem;
}
.stat-label {
  font-size: 1rem;
  color: #444;
  font-weight: 400;
  margin-bottom: 1rem;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.mission-card, .vision-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.card-header h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.card-subtitle {
  font-size: 0.9rem;
  color: #00d4ff;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.card-content h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.card-content p {
  color: #cccccc;
  line-height: 1.8;
}
.vision-points {
  margin-top: 2rem;
}
.vision-point {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.vision-point h5 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.vision-point h5 span {
  color: #00d4ff;
  font-style: italic;
  font-size: 0.9rem;
}
.vision-point p {
  color: #cccccc;
  font-size: 0.9rem;
}
.values-header {
  text-align: center;
  margin-bottom: 4rem;
}
.values-header h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.values-subtitle {
  color: #00d4ff;
  letter-spacing: 2px;
  font-size: 1.1rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.value-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.value-icon {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
}
.value-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.value-card h4 {
  font-size: 1rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.value-card p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}
.business-header {
  text-align: center;
  margin-bottom: 4rem;
}
.business-subtitle {
  color: #00d4ff;
  letter-spacing: 2px;
  font-size: 1.1rem;
}
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.business-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.business-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.business-icon {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-align: center;
}
.business-card h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}
.business-content p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.business-content ul {
  list-style: none;
  padding: 0;
}
.business-content li {
  color: #cccccc;
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.business-content li:before {
  content: "▶";
  color: #00d4ff;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}
.milestones {
  margin-top: 4rem;
  text-align: center;
}
.milestones h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 3rem;
}
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.milestone-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.milestone-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.milestone-icon {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}
.milestone-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.milestone-label {
  color: #cccccc;
  font-size: 0.9rem;
}
.contact-section {
  padding: 4rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.contact-form-section h3, .contact-info-section h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: #999;
}
.submit-btn {
  background: linear-gradient(135deg, #00d4ff, #007bbf);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}
.contact-cards {
  display: grid;
  gap: 1.5rem;
}
.contact-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.contact-card:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(10px);
}
.contact-icon {
  font-size: 1.5rem;
  color: #00d4ff;
  margin-right: 1.5rem;
  min-width: 40px;
}
.contact-details h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.contact-details p {
  color: #cccccc;
  line-height: 1.4;
}
.social-section {
  margin-top: 2rem;
  text-align: center;
}
.social-section h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.social-link:hover {
  background: #00d4ff;
  color: #0a0f1c;
  transform: translateY(-3px);
}
.global-network {
  padding: 4rem 0;
}
.network-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.stat-icon {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}
.service-regions h3 {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 3rem;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.region-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.region-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.region-card h4 {
  color: #00d4ff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.region-card ul {
  list-style: none;
  padding: 0;
}
.region-card li {
  color: #cccccc;
  padding: 0.3rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.patents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.patent-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.patent-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.patent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.patent-number {
  background: #00d4ff;
  color: #0a0f1c;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}
.patent-year {
  color: #cccccc;
  font-size: 0.9rem;
}
.patent-content h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.patent-content p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.patent-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tag {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
}
.patent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.certificate-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.certificate-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.certificate-logo {
  font-size: 3rem;
  color: #00d4ff;
  margin-right: 2rem;
  min-width: 80px;
  text-align: center;
}
.certificate-info h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.certificate-year {
  color: #00d4ff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.certificate-info p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}
.awards-timeline {
  max-width: 800px;
  margin: 0 auto;
}
.award-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}
.award-item:before {
  content: '';
  position: absolute;
  left: 120px;
  top: 50%;
  width: 2px;
  height: 100%;
  background: rgba(0, 212, 255, 0.3);
  transform: translateY(-50%);
}
.award-year {
  background: linear-gradient(135deg, #00d4ff, #007bbf);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  min-width: 100px;
  text-align: center;
  margin-right: 2rem;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}
.award-content {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  transition: all 0.3s ease;
}
.award-content:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(10px);
}
.award-icon {
  font-size: 2.5rem;
  color: #00d4ff;
  margin-right: 2rem;
}
.award-details h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.award-details p {
  color: #cccccc;
  line-height: 1.6;
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.facility-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.facility-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}
.facility-image {
  text-align: center;
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 2rem;
}
.facility-content h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}
.facility-content p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.facility-content ul {
  list-style: none;
  padding: 0;
}
.facility-content li {
  color: #cccccc;
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.facility-content li:before {
  content: "▶";
  color: #00d4ff;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}
.facility-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.blog-header {
  text-align: center;
  padding: 0 0 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-header h2 {
  margin-bottom: 20px;
}
.blog-header p {
  font-size: 20px;
  color: #444;
  line-height: 1.8;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.blog-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}
.blog-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: all 0.4s ease;
}
.blog-card:hover .blog-card-image::before {
  background: rgba(0, 0, 0, 0.1);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.15);
}
.blog-card-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #5bcaf4;
  color: white;
  padding: 6px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
.blog-card-content {
  padding: 20px 30px 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.blog-card-meta i {
  margin-right: 8px;
  color: #00d4ff;
}
.blog-card-title {
  font-size: 1.3rem !important;
  color: #1e3a8a;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  text-align: left !important;
}
.blog-card-excerpt {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00d4ff;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.blog-card:hover .blog-card-link {
  gap: 12px;
}
.blog-card:hover .blog-card-link i {
  transform: translateX(4px);
}
.blog-card-link i {
  transition: transform 0.3s ease;
}
.blog-section {
  background: white;
  padding: 0px 0px;
  max-width: 1400px;
  margin: 0 auto;
}
.blog-section .blog-grid {
  padding: 0;
}
.blog-section .blog-card-title {
  font-size: 1.3rem !important;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 10px !important;
  line-height: 1.4;
}
.blog-section .blog-card-excerpt {
  font-size: 1rem !important;
  color: #666 !important;
  line-height: 1.8 !important;
}
.faq-header {
  text-align: center;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.faq-header p {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.8;
}
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 0px;
}
.faq-category {
  margin-bottom: 60px;
}
.faq-category-title {
  font-size: 1.6rem !important;
  color: #1e3a8a;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #3b82f6;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  letter-spacing: -0.5px;
}
.faq-category-title i {
  font-size: 36px;
  color: #3b82f6;
}
.faq-item {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: #5bcaf4;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}
.faq-item.active {
  border-color: #5bcaf4;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}
.faq-question {
  width: 100%;
  padding: 25px 35px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}
.faq-question:hover {
  background: #f9fafb;
}
.faq-item.active .faq-question {
  background: rgba(91, 202, 244, 1.00);
  color: #fff;
}
.faq-question-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-question-icon {
  transform: rotate(180deg);
  background: transparent;
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-content {
  padding: 35px 35px 35px 35px;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.5;
}
.faq-answer-content p {
  margin-bottom: 15px;
}
.faq-answer-content ul, .faq-answer-content ol {
  margin: 20px 0;
  padding-left: 25px;
}
.faq-answer-content li {
  margin-bottom: 10px;
  line-height: 1.8;
}
.faq-answer-content strong {
  color: #5bcaf4;
  font-weight: 700;
}
.faq-item.active .faq-answer {
  max-height: 1000px;
}
.article-category {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}
.article-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}
.article-meta {
  display: flex;
  justify-content: center;
  gap: 35px;
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 50px;
  font-weight: 500;
  border-bottom: 1px solid #666;
}
.article-meta i {
  margin-right: 10px;
  color: #3b82f6;
}
.article-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.article-image img {
  width: 100%;
  height: auto;
  display: block;
}
.article-content {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.article-content h2 {
  font-size: 1.5rem;
  color: #1e3a8a;
  margin: 60px 0 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: left;
}
.article-content h3 {
  font-size: 28px;
  color: #1e3a8a;
  margin: 50px 0 25px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.article-content p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 28px;
}
.article-content ul, .article-content ol {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 0 0 2rem 0;
  padding-left: 1.25rem;
}
.article-content li {
  margin-bottom: 5px;
}
.article-content strong {
  color: #1e3a8a;
  font-weight: 700;
}
body[class*="products"] .page-content, body[class*="application"] .page-content {
  background: #ffffff !important;
}
.products-intro, .products-features, .products-comparison, .products-specs, .application-intro, .application-industries, .application-cases, .application-benefits {
  background: #ffffff;
  padding: 60px 0;
}
.products-features, .products-specs, .application-industries, .application-benefits {
  background: #f9fafb !important;
}
.industry-card, .case-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #374151 !important;
}
.industry-card:hover, .case-card:hover {
  border-color: #3b82f6 !important;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15) !important;
}
.product-card h3, .industry-card h3, .case-card h3 {
  color: #007bbf !important;
}
.product-card h3 a, .industry-card h3 a, .case-card h3 a {
  color: #007bbf !important;
  text-decoration: none;
}
.product-card p, .industry-card p, .case-card p {
  color: #4b5563 !important;
}
.specs-table {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
}
.specs-table th {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
  color: #1e3a8a !important;
}
.specs-table td {
  color: #4b5563 !important;
  border-bottom: 1px solid #e5e7eb !important;
}
.feature-list li, .benefit-list li {
  color: #4b5563 !important;
}
.feature-list li::before, .benefit-list li::before {
  color: #3b82f6 !important;
}
.stats-item {
  background: #ffffff !important;
  border: 2px solid #e5e7eb !important;
}
.stats-item:hover {
  border-color: #3b82f6 !important;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15) !important;
}
.stats-number {
  color: #1e3a8a !important;
}
.stats-label {
  color: #6b7280 !important;
}
.product-btn, .application-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
  color: #ffffff !important;
}
.product-btn:hover, .application-btn:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}
.products-page .page-content, .application-page .page-content {
  background: #ffffff !important;
}
.tech-section.products-section, .tech-section.application-section {
  background: #ffffff !important;
}
.tech-section.products-section:nth-child(even), .tech-section.application-section:nth-child(even) {
  background: #f9fafb !important;
}
.feature-card.product-feature, .feature-card.application-feature {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
}
.feature-card.product-feature:hover, .feature-card.application-feature:hover {
  border-color: #3b82f6 !important;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15) !important;
}
.spec-table-container {
  background: white;
  padding: 80px 20px 100px;
  margin: 0;
}
.spec-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
}
.spec-table thead tr {
  background: #000;
}
.spec-table th {
  padding: 8px 10px;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid #777;
  background-color: #222627;
  color: #fff;
  line-height: 1.4;
}
.spec-table td {
  padding: 6px 10px;
  font-size: .9rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  line-height: 1.4;
  color: #444;
}
.spec-table td:first-child {
  font-weight: 600;
}
.mission-section {
  position: relative;
  padding: 15rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg-about2.jpg') center/cover no-repeat;
  text-align: center;
  color: #fff;
  margin-top: -90px;
}
.mission-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 6rem;
  letter-spacing: 2px;
  color: #fff;
}
.mission-section .mission-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #fff;
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 3rem;
  letter-spacing: 1px;
}
.mission-section .mission-main-title em {
  font-weight: 600;
}
.mission-section .mission-main-title .highlight {
  color: #5bcaf4;
  font-weight: 600;
}
.mission-section .mission-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}
.mission-section .mission-subtitle .net-zero {
  color: #5bcaf4;
  font-weight: 500;
}
.vision-section {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}
.vision-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #333;
}
.vision-section .vision-main-title {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 80px;
  color: #666;
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.vision-item {
  text-align: center;
  padding: 20px;
}
.vision-item .vision-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0px;
  color: #5bcaf4;
}
.vision-item .vision-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
  border-bottom: 1px solid #666;
  padding-bottom: 15px;
}
.vision-item .vision-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}
.core-value-section {
  padding: 100px 0;
  background: #f5f5f5;
  text-align: center;
}
.core-value-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 80px;
  letter-spacing: 2px;
  color: #333;
}
.core-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.core-value-item {
  text-align: center;
}
.core-value-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  background: #888;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.core-value-icon i {
  font-size: 4rem;
  color: #5bcaf4;
}
.core-value-item:hover .core-value-icon {
  transform: scale(1.05);
  background: #777;
}
.core-value-item .core-value-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #666;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.core-value-item .core-value-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #444;
}
.business-area-section {
  padding: 100px 0 0;
  text-align: center;
}
.business-area-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 80px;
  letter-spacing: 2px;
  color: #333;
}
.business-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.business-area-item {
  text-align: center;
}
.business-area-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  background: #888;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.business-area-icon i {
  font-size: 4rem;
  color: #5bcaf4;
}
.business-area-item:hover .business-area-icon {
  transform: scale(1.05);
  background: #777;
}
.business-area-item .business-area-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #666;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.business-area-item .business-area-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.business-area-item .business-area-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
  padding: 0 10px;
}
.history-section {
  padding: 0;
}
.history-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.timeline {
  position: relative;
  padding: 60px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #5bcaf4 0%, #5bcaf4 100%);
  transform: translateX(-50%);
  opacity: 0.3;
}
.timeline-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
  position: relative;
  margin-bottom: 50px;
  transition: all 0.6s ease;
  display: flex;
  align-items: flex-start;
}
.timeline-item:nth-child(odd) {
  flex-direction: row;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
}
.timeline-year {
  color: #5bcaf4;
  font-size: 3.2rem;
  font-weight: 700;
  position: absolute;
  flex-shrink: 0;
  line-height: 1;
  background: transparent;
  padding: 0;
  margin: 0;
  top: 0;
}
.timeline-item:nth-child(odd) .timeline-year {
  right: calc(50% + 48px);
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-year {
  left: calc(50% + 48px);
  text-align: left;
}
.timeline-year::after {
  content: '';
  position: absolute;
  top: 15px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  border: 4px solid #5bcaf4;
  box-shadow: 0 0 0 4px rgba(91, 202, 244, 0.1);
  z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-year::after {
  right: -62px;
}
.timeline-item:nth-child(even) .timeline-year::after {
  left: -62px;
}
.timeline-events {
  padding: 0;
  margin: 4rem 0 0;
  list-style: none;
  flex: 1;
  max-width: calc(50% - 80px);
}
.timeline-item:nth-child(odd) .timeline-events {
  text-align: right;
  margin-right: calc(50% + 50px);
  margin-left: auto;
}
.timeline-item:nth-child(even) .timeline-events {
  text-align: left;
  margin-left: calc(50% + 50px);
  margin-right: auto;
}
.timeline-event {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0px;
  padding: 4px 0;
}
.timeline-item:nth-child(odd) .timeline-event {
  justify-content: flex-end;
}
.timeline-item:nth-child(odd) .timeline-event .event-description {
  order: 1;
  margin-right: 10px;
  text-align: right;
}
.timeline-item:nth-child(odd) .timeline-event .event-month {
  order: 2;
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-event {
  justify-content: flex-start;
}
.timeline-item:nth-child(even) .timeline-event .event-month {
  order: 1;
  text-align: left;
  margin-right: 10px;
}
.timeline-item:nth-child(even) .timeline-event .event-description {
  order: 2;
  text-align: left;
}
.event-description {
  flex: 1;
  color: #1a1a1a;
  font-size: 1.1rem;
  line-height: 1.6;
}
.event-month {
  flex-shrink: 0;
  color: #5bcaf4;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 500;
  min-width: 35px;
  line-height: 1.4;
}
.map-section {
  padding: 0;
}
.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.map-section h3 {
  color: #5bcaf4;
  text-align: left;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 60px;
  font-weight: 700;
}
.location-info {
  margin-bottom: 40px;
}
.location-header {
  color: #5bcaf4;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.location-details {
  background: #f8f9fa;
  padding: 30px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.location-details p {
  margin: 0;
}
.map-embed {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.map-placeholder {
  text-align: center;
  color: #999;
}
.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ccc;
}
.map-placeholder p {
  font-size: 1.2rem;
}
.certificates-section {
  padding: 0 0 50px;
}
.certificates-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.cert-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.cert-tab-btn {
  padding: 12px 70px;
  background: #e0e0e0;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cert-tab-btn:hover {
  background: #5bcaf4;
  color: white;
}
.cert-tab-btn.active {
  background: #5bcaf4;
  color: white;
}
.cert-content {
  display: none;
  color: #444;
}
.cert-content.active {
  display: block;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}
.cert-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  cursor: pointer;
}
.cert-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.cert-image {
  width: 100%;
  height: auto;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.cert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.cert-card:hover .cert-image img {
  transform: scale(1.05);
}
.cert-body {
  padding: 15px 15px 25px;
  text-align: center;
}
.cert-body h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0px;
  font-weight: 600;
}
.cert-info {
  padding-top: 5rem;
}
.cert-info img {
  width: 100%;
  height: auto;
}
.cert-info .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.certificate-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.certificate-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal-container {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  z-index: 10000;
  animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #007bbf, #00d4ff);
  border-radius: 12px 12px 0 0;
}
.modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}
.modal-close:active {
  transform: rotate(90deg) scale(0.95);
}
.modal-body {
  flex: 1;
  padding: 60px;
  overflow-y: auto;
  background: #f9fafb;
}
.modal-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-image {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 30px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.modal-btn i {
  font-size: 14px;
}
.modal-btn-primary {
  background: linear-gradient(135deg, #5bcaf4 0%, #5bcaf4 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}
.modal-btn-primary:active {
  transform: translateY(0);
}
.modal-btn-secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.modal-btn-secondary:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}
.modal-btn-secondary:active {
  background: #d1d5db;
}
@keyframes modalSlideIn {
  0% {
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.field-application-section {
  padding: 0px 0px 90px;
  max-width: 1340px;
  margin: 0 auto;
}
.field-application-section h3 {
  color: #fff;
  font-weight: 600 !important;
}
.application-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.application-card {
  position: relative;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.application-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.application-card-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.application-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  text-align: center;
}
.application-card-title {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  line-height: 1.3;
  color: white;
  margin-bottom: 20px;
}
.application-card-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.application-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.application-card-list li {
  font-size: .9rem;
  color: white;
  margin-bottom: 2px;
  text-align: left;
}
.application-card-list li::before {
  content: "●";
  margin-right: 5px;
}
.roi-section {
  background: #f5f5f5;
  padding: 80px 0px 90px;
  margin: 0;
}
.roi-container {
  max-width: 1200px;
  margin: 0 auto;
}
.roi-content {
  display: flex;
  gap: 40px;
  align-items: center;
}
.roi-chart {
  flex: 0 0 500px;
}
.roi-chart img {
  width: 100%;
  height: auto;
  display: block;
}
.roi-description {
  flex: 1;
}
.roi-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}
.roi-note {
  font-size: 14px;
  color: #999;
  font-style: italic;
  margin-top: 30px;
}
.case-studies-section {
  padding: 0px;
  max-width: 100%;
  margin: 0 auto;
}
.case-item {
  display: flex;
  justify-content: center;
}
.case-item:nth-child(even) {
  background: #f5f5f5;
  padding: 0;
}
.case-item-in {
  display: flex;
  gap: 40px;
  max-width: 1300px;
  margin: 80px auto;
  align-items: flex-start;
}
.case-thumbnails {
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.thumbnail-item {
  width: 100px;
  height: 100px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 0px;
}
.thumbnail-item:hover {
  border-color: #5bcaf4;
  transform: scale(1.05);
}
.thumbnail-item.active {
  border-color: #5bcaf4;
}
.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-main-image {
  flex: 0 0 500px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.case-main-image:hover {
  transform: scale(1.02);
}
.case-main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
}
.case-content {
  flex: 1;
  padding: 20px 0;
  color: rgb(68, 68, 68);
  font-size: 1rem;
  line-height: 1.8;
}
.case-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.case-title {
  font-size: 1.4rem !important;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
  text-align: left !important;
}
.case-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}
.comparison-table {
  width: 100%;
  margin-top: 30px;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.comparison-table th, .comparison-table td {
  padding: 12px 15px;
  text-align: left;
  border: none;
}
.comparison-table th {
  background: #333;
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.comparison-table td {
  font-size: 14px;
  color: #666;
}
.comparison-table tr:nth-child(even) {
  background: #f9f9f9;
}
.comparison-table .highlight {
  background: #ececec;
  font-weight: 600;
  color: #333;
}
.carbon-section {
  padding: 0px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.carbon-section h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}
.main-slogan {
  text-align: center;
  padding: 0px 0px 60px;
  background: white;
}
.main-slogan h3 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
}
.main-slogan h3 .highlight {
  color: #007bbf;
}
.main-slogan p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 900px;
  margin: 0 auto 15px;
}
.we-doing-section {
  background: #f5f5f5;
  padding: 80px 0 60px;
}
.we-doing-section h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
}
.pie-chart-container {
  max-width: 920px;
  margin: 0 auto 40px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.pie-chart-container:hover {
  transform: scale(1.02);
}
.pie-chart-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.chart-caption {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 30px;
  margin-bottom: 20px;
}
.chart-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}
.we-think-section {
  background: #f5f5f5;
  padding: 0 0 90px;
}
.we-think-section h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}
.we-think-section p {
  text-align: center;
  margin-bottom: 0;
}
.net-zero-section {
  background: white;
  padding: 80px 0 100px;
}
.net-zero-title {
  font-size: 42px;
  color: #333;
  text-align: center;
  margin-bottom: 80px;
  font-weight: 700;
  line-height: 1.4;
}
.steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-card {
  text-align: center;
  flex: 0 0 auto;
  width: 280px;
  transition: transform 0.3s ease;
}
.step-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover .step-icon {
  transform: scale(1.05);
}
.step-icon::after {
  content: '';
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid currentColor;
}
.step-card:last-child .step-icon::after {
  display: none;
}
.step-1 .step-icon {
  border: 8px solid #60a5fa;
  color: #60a5fa;
}
.step-2 .step-icon {
  border: 8px solid #f59e0b;
  color: #f59e0b;
}
.step-3 .step-icon {
  border: 8px solid #a855f7;
  color: #a855f7;
}
.step-4 .step-icon {
  border: 8px solid #22c55e;
  color: #22c55e;
}
.step-icon-image {
  width: 120px !important;
  height: 120px !important;
  object-fit: contain;
}
.step-label {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  min-height: 50px;
}
.step-description {
  font-size: .9rem;
  line-height: 1.6;
  color: #666;
}
.contact-section {
  background: white;
  padding: 80px 20px;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-header h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-header p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.contact-info {
  background: #f9fafb;
  padding: 40px;
  border-radius: 12px;
}
.contact-info h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #5bcaf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
.contact-info-content h4 {
  font-size: 16px;
  color: #999;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.contact-info-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}
.contact-info-content a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info-content a:hover {
  color: #3b82f6;
}
.contact-form {
  background: white;
}
.contact-form h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 0px;
  font-weight: 700;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group label .required {
  color: #ef4444;
  margin-left: 4px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-help {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
  line-height: 1.5;
}
.field-error {
  display: block;
  font-size: 14px;
  color: #ef4444;
  margin-top: 8px;
  padding: 8px 12px;
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  border-radius: 4px;
}
.form-section-title {
  margin: 2rem 0 1rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.form-section-title h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-section-title p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.file-upload-wrapper {
  position: relative;
}
.file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.file-upload-label:hover {
  border-color: #60a5fa;
  background: #eff6ff;
}
.file-upload-label i {
  font-size: 2.5rem;
  color: #60a5fa;
  margin-bottom: 1rem;
}
.file-upload-text {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.file-upload-limit {
  font-size: 13px;
  color: #6b7280;
}
.file-list {
  margin-top: 1rem;
}
.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.file-item-name {
  font-size: 14px;
  color: #333;
  flex: 1;
}
.file-item-size {
  font-size: 13px;
  color: #6b7280;
  margin-right: 1rem;
}
.file-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.file-item-remove:hover {
  background: #fef2f2;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.captcha-group {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #f9fafb;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
.captcha-question {
  flex: 0 0 auto;
}
.captcha-canvas {
  background: white;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.captcha-canvas:hover {
  border-color: #60a5fa;
  box-shadow: 0 4px 8px rgba(96, 165, 250, 0.2);
  transform: translateY(-2px);
}
.captcha-input {
  flex: 1;
  min-width: 0;
}
.captcha-input input {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fff;
}
.captcha-refresh {
  flex: 0 0 auto;
}
.refresh-btn {
  background: white;
  border: 2px solid #e5e7eb;
  padding: 14px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #5bcaf4;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.refresh-btn:hover {
  background: #5bcaf4;
  color: white;
  border-color: #5bcaf4;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(96, 165, 250, 0.3);
}
.refresh-btn i {
  transition: transform 0.3s ease;
}
.form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 0px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.form-checkbox input[type="checkbox"] {
  width: auto;
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
}
.form-checkbox label a {
  color: #007bbf;
  text-decoration: none;
  cursor: pointer;
}
.form-checkbox label a:hover {
  text-decoration: underline;
}
.form-submit {
  flex-shrink: 0;
}
.submit-btn {
  background: #5bcaf4;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.submit-btn:hover {
  background: #5bcaf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(96, 165, 250, 0.3);
}
.submit-btn:active {
  transform: translateY(0);
}
.success-message {
  display: none;
  background: #10b981;
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  align-items: center;
  gap: 12px;
}
.success-message.show {
  display: flex;
}
.success-message i {
  font-size: 20px;
}
.error-message {
  display: none;
  background: #ef4444;
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  align-items: center;
  gap: 12px;
}
.error-message.show {
  display: flex;
}
.error-message i {
  font-size: 20px;
}
.privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.privacy-modal.show {
  display: flex;
}
.privacy-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.privacy-modal-header {
  padding: 30px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.privacy-modal-header h3 {
  font-size: 28px;
  color: #333;
  margin: 0;
  font-weight: 700;
}
.privacy-modal-close {
  background: #f3f4f6;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #666;
  font-size: 20px;
}
.privacy-modal-close:hover {
  background: #ef4444;
  color: white;
}
.privacy-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}
.privacy-modal-body h4 {
  font-size: 20px;
  color: #333;
  margin: 30px 0 15px;
  font-weight: 700;
}
.privacy-modal-body h4:first-child {
  margin-top: 0;
}
.privacy-modal-body p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}
.privacy-modal-body ul {
  margin: 15px 0;
  padding-left: 25px;
}
.privacy-modal-body li {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
}
.privacy-content, .terms-content {
  background: white;
  padding: 0 20px;
}
.privacy-container, .terms-container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-intro, .terms-intro {
  text-align: center;
  margin-bottom: 60px;
}
.privacy-intro h2, .terms-intro h2 {
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}
.privacy-intro p, .terms-intro p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
.privacy-section, .terms-section {
  margin-bottom: 50px;
}
.privacy-section h3, .terms-section h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid #00d4ff;
  text-align: left;
}
.privacy-section h4, .terms-section h4 {
  font-size: 20px;
  color: #1a1a1a;
  margin: 30px 0 10px;
  font-weight: 700;
}
.privacy-section p, .terms-section p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}
.privacy-section ul, .terms-section ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}
.privacy-section li, .terms-section li {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.privacy-section li:before, .terms-section li:before {
  content: "•";
  color: #444;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 5px;
  line-height: 1.5;
}
.privacy-highlight {
  background: rgba(91, 202, 244, .1);
  border-left: 4px solid #00d4ff;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}
.terms-highlight {
  background: rgba(91, 202, 244, .1);
  border-left: 4px solid rgba(91, 202, 244, 1.00);
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}
.privacy-highlight p, .terms-highlight p {
  margin: 0;
  color: #333;
}
.terms-highlight p {
  font-weight: 600;
}
.privacy-contact, .terms-contact {
  background: #f9fafb;
  padding: 40px;
  border-radius: 12px;
  margin-top: 60px;
}
.privacy-contact h3, .terms-contact h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  border: none;
  padding: 0;
}
.privacy-contact-item, .terms-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.privacy-contact-icon, .terms-contact-icon {
  width: 40px;
  height: 40px;
  background: #5bcaf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.privacy-contact-text, .terms-contact-text {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}
.privacy-contact-text a, .terms-contact-text a {
  color: #60a5fa;
  text-decoration: none;
}
.privacy-contact-text a:hover, .terms-contact-text a:hover {
  text-decoration: underline;
}
.privacy-update, .terms-update {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}
.privacy-update p, .terms-update p {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.product-section {
  padding: 0px 0px 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.black-section {
  background: #000;
  padding: 80px 0;
  margin: 0;
}
.white-section {
  background: #fff;
  padding: 90px 0;
  margin: 0;
}
.turbomax-logo-section {
  background: #000;
  padding: 0;
  text-align: center;
}
.turbomax-logo-large {
  font-size: 12rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #ccc;
  text-stroke: 2px #666;
  letter-spacing: 10px;
  font-style: italic;
}
.turbomax-logo-large .max {
  color: #5bcaf4;
  -webkit-text-stroke: 2px #5bcaf4;
}
.product-intro {
  background: #000;
  color: white;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.product-intro p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0px;
  color: #fff;
  text-align: center;
}
.product-intro p:before {
  content: '✓';
  color: #666;
  margin-right: 5px;
  font-size: 20px;
}
.three-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
  justify-content: center;
}
.feature-card-large {
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.feature-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.feature-card-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.feature-card-img {
  background-repeat: no-repeat;
  width: 100%;
  height: 350px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}
.feature-card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.feature-card-content h3 span {
  font-size: 1.4rem;
  margin-top: .8rem;
  display: block;
}
.feature-card-content ul {
  list-style: none;
  padding: 30px 30px 40px;
  margin: 0;
  background-color: #1a1a1a;
  color: #fff;
}
.feature-card-content ul li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0px;
  padding-left: 20px;
  position: relative;
}
.feature-card-content ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #666;
}
.product-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 auto;
  padding: 0;
  max-width: 1300px;
}
.product-type-item {
  text-align: center;
}
.product-type-image {
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
.product-type-image img {
  width: auto;
  height: 350px !important;
  display: block;
}
.product-type-item h3 {
  font-size: 22px;
  color: white;
  font-weight: 600;
  margin-top: 3rem;
}
.series-selector {
  text-align: center;
  margin: 0 0 60px;
  justify-content: center;
}
.series-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.series-btn {
  padding: 12px 70px;
  font-size: 1rem;
  border: 2px solid white;
  background: white;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: transparent;
}
.series-btn:hover {
  background: transparent;
  color: white;
}
.series-btn.active {
  background: white;
  color: #000;
}
.product-gallery-view {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
}
.product-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.thumbnail-gallery {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  max-height: 550px;
  align-content: flex-start;
  flex-shrink: 0;
}
.main-product-image {
  flex: 1;
  height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}
.main-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.main-product-image picture {
  height: 100%;
}
.thumbnail-item {
  width: 90px;
  height: 90px;
  border: 3px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}
.thumbnail-item:hover {
  border-color: #5bcaf4;
  transform: scale(1.05);
}
.thumbnail-item.active {
  border-color: #5bcaf4;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}
.thumbnail-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-series-label {
  color: white;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
}
.product-series-content {
  display: none;
}
.product-series-content.active {
  display: block;
}
.product-image-showcase {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}
.product-image-showcase img {
  width: 100%;
  height: auto;
  display: block;
}
.maxcon-intro {
  max-width: 1200px;
  margin: 90px auto 60px;
  color: white;
  text-align: center;
}
.maxcon-intro p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0px;
  text-align: center;
  color: #fff;
}
.system-diagram {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0px;
}
.system-diagram img {
  width: 100%;
  height: auto;
  display: block;
}
.iot-title {
  font-size: 64px;
  color: white;
  text-align: center;
  margin: 80px 0 60px;
  font-weight: 700;
}
.iot-diagram {
  max-width: 1200px;
  margin: 0 auto 1rem;
  text-align: center;
}
.iot-diagram img {
  width: 100%;
  height: auto;
  display: block;
}
.tech-content-section {
  padding: 90px 1rem;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}
.tech-content-section:first-child {
  padding-top: 0;
}
.air-bearing-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 60px;
}
.bearing-diagram {
  width: 100%;
}
.bearing-diagram img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.bearing-description h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.feature-card-inline {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.feature-card-inline img {
  width: 60px !important;
}
.feature-card-inline:hover {
  background: #ececec;
  transform: translateX(10px);
}
.feature-card-inline .icon {
  font-size: 2.5rem;
  color: #5bcaf4;
  min-width: 60px;
}
.feature-card-inline .content h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 00;
  font-weight: 600;
}
.feature-card-inline .content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.nstb-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}
.nstb-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}
.comparison-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}
.comparison-item {
  text-align: center;
}
.comparison-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.comparison-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-top: 20px;
  font-weight: 600;
}
.comparison-item p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}
.box-grey {
  background: #eee;
}
.reversible-section {
  max-width: 1200px;
  padding: 90px 1rem;
  margin: 0px auto;
}
.reversible-section p {
  text-align: center;
}
.reversible-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.reversible-item .feature-image {
  width: 100%;
  height: auto;
  background: #e9ecef;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reversible-item .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reversible-item h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}
.reversible-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}
.lifetest-section {
  text-align: center;
}
.lifetest-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
}
.lifetest-chart {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px;
  border-radius: 0px;
}
.lifetest-chart img {
  width: 100%;
  height: auto;
}
.lifetest-description {
  max-width: 800px;
  margin: 30px auto 0;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}
.tech-hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tech-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/chemical-plant.jpg') center/cover;
  opacity: 0.2;
}
.tech-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.tech-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.tech-hero .subtitle {
  font-size: 24px;
  opacity: 0.9;
}
.tech-tabs {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.tech-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
}
.tech-tab {
  padding: 15px 30px;
  margin: 5px;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #374151;
}
.tech-tab:hover {
  background: #e5e7eb;
  transform: translateY(-2px);
}
.tech-tab.active {
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  color: white;
}
.tech-section {
  padding: 90px 0 90px;
  max-width: 1200px;
  margin: 0 auto;
}
.tech-intro {
  background: white;
  padding: 0px;
  border-radius: 0;
  margin-bottom: 0px;
  text-align: center;
}
.tech-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
}
.image-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 60px 0;
  padding: 0 20px;
}
.image-showcase-item {
  border-radius: 12px;
}
.image-showcase-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.image-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}
.tdr-section {
  background: #f5f5f5;
  padding: 90px 0px;
  margin: 0;
}
.tdr-content {
  max-width: 1200px;
  margin: 0 auto;
}
.tdr-text {
  text-align: center;
  margin-bottom: 40px;
}
.tdr-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
}
.machining-section {
  padding: 90px 0px;
}
.machining-content {
  max-width: 1200px;
  margin: 0 auto;
}
.machining-text {
  text-align: center;
  margin-bottom: 40px;
}
.machining-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.feature-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.feature-list li:before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #3b82f6;
  font-size: 20px;
}
.process-section {
  padding: 0 0 90px;
  margin: 0;
}
.process-content {
  max-width: 1200px;
  margin: 0 auto;
}
.process-title {
  font-size: 18px;
  color: #374151;
  margin-bottom: 20px;
  text-align: center;
}
.process-diagram {
  background: #333;
  padding: 30px;
  border-radius: 6px;
  margin: 10px 0;
}
.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.process-step {
  flex: 1;
  min-width: 120px;
  padding: 15px 10px;
  background: #e5e5e5;
  text-align: center;
  font-size: .9rem;
  color: #374151;
  font-weight: 600;
  border-radius: 4px;
}
.process-step.highlight {
  background: #5bcaf4;
  color: white;
  font-weight: 600;
}
.process-arrow {
  font-size: 20px;
  color: #fff;
}
.process-label {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  color: #1e3a8a;
  font-weight: 600;
}
.content-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin: 0 0 22px;
  padding: 0 18px 22px;
  align-items: center;
  border-bottom: 1px dashed rgba(0, 0, 0, .5);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.content-card-image {
  background: #fff;
  padding: 10px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f5f5f5;
}
.content-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.content-card-text h4 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 12px;
  margin-top: 0;
}
.content-card-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 10px;
}
.content-card-text .patent {
  font-size: 14px;
  color: #6b7280;
  margin-top: 15px;
  font-style: italic;
}
.gray-section {
  background: #f5f5f5;
  padding: 90px 0px;
  margin: 0;
}
.system-diagram-content {
  max-width: 1200px;
  margin: 50px auto 100px;
}
.three-column-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0 0;
  padding: 0;
}
.image-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
}
.image-card-image {
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.image-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.image-card-text {
  padding: 0px;
  text-align: center;
  background: white;
  color: #444;
}
.image-card-text h4 {
  font-size: 1rem;
  margin: 1rem 0 0 0;
  font-weight: 500;
  border-top: 1px solid #666;
  padding-top: 1rem;
}
.side-by-side {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.side-by-side-image {
  background: white;
  padding: 20px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.side-by-side-image img {
  width: 100%;
  height: auto;
  display: block;
}
.side-by-side-text h3 {
  font-size: 24px;
  color: #007bbf;
  margin: 0 0 20px 0;
  text-align: left;
}
.side-by-side-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 10px;
}
.side-by-side-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.side-by-side-text ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}
.side-by-side-text ul li:before {
  content: '-';
  position: absolute;
  left: 0;
}
.text-p1 {
  font-size: 1.1rem !important;
}
.white {
  color: #fff !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.p-0 {
  padding: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
@media (max-width: 480px) {}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 20px 0;
}
.pagination-btn, .pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  color: #444;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  font-size: 15px;
}
.pagination-btn:hover, .pagination-number:hover {
  background: rgba(91, 202, 244, .2);
  color: #00d4ff;
}
.pagination-number.active {
  background: #00d4ff;
  color: #fff;
  font-weight: 600;
}
.pagination-btn i {
  font-size: 13px;
}
.blog-article-section {
  padding: 0;
  background: #ffffff;
}
.article-header-wrapper {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 40px;
}
.article-meta-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
}
.article-category-badge {
  display: inline-block;
  background: #5bcaf4;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: .2rem;
}
.meta-item i {
  color: #00d4ff;
}
.meta-divider {
  color: #ddd;
}
.article-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: left;
  display: block;
  width: 100%;
}
.article-featured-image {
  width: 100%;
  margin: 0 0 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.article-main-content {
  min-width: 0;
}
.article-lead {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid #00d4ff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px;
}
.article-lead p {
  font-size: 18px;
  line-height: 1.8;
  color: #1e40af;
  margin: 0;
}
.article-body {
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}
.article-body h2 {
  color: #1a1a1a;
  margin: 50px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00d4ff;
  font-weight: 600;
  text-align: left;
  font-size: 1.9rem;
}
.article-body h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin: 15px 0 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #5bcaf4;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.article-body p {
  margin-bottom: 10px;
}
.article-body strong {
  color: #1a1a1a;
  font-weight: 600;
}
.custom-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.custom-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 2px;
  line-height: 1.8;
}
.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
}
.highlight-box {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin: 50px 0;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.3);
}
.highlight-box h4 {
  font-size: 24px;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.highlight-box h4 i {
  color: #00d4ff;
}
.case-intro {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat-item {
  text-align: center;
  padding: 25px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}
.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar-widget {
  background: #f8fafc;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
}
.widget-title {
  font-size: 1.3rem !important;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
  text-align: left !important;
}
.share-widget {
  background: white;
  border: 1px solid #e2e8f0;
}
.social-share-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  background: #f5f5f5;
}
.share-btn i {
  display: block;
}
.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.share-btn:active {
  transform: translateY(-1px);
}
.share-btn.facebook {
  background: #1877f2;
}
.share-btn.facebook:hover {
  background: #0d5dbf;
}
.share-btn.instagram {
  background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
}
.share-btn.instagram:hover {
  background: linear-gradient(135deg, #c13584 0%, #833ab4 50%, #5b51d8 100%);
}
.share-btn.lineicon {
  background: #06c755;
}
.share-btn.lineicon:hover {
  background: #00b900;
}
.share-btn.copy-link {
  background: #666;
}
.share-btn.copy-link:hover {
  background: #1f2937;
}
.share-btn.copied {
  background: #5bcaf4 !important;
}
.category-widget {
  background: white;
  border: 1px solid #e2e8f0;
}
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li {
  border-bottom: 1px solid #f0f0f0;
}
.category-list li:last-child {
  border-bottom: none;
}
.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.category-list a:hover {
  color: #00d4ff;
  padding-left: 8px;
}
.category-list .count {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
.related-articles {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid #e2e8f0;
}
.related-articles .section-title {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.related-card {
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.related-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all 0.3s ease;
}
.related-card:hover .related-card-image::before {
  background: rgba(0, 0, 0, 0.1);
}
.related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-card:hover .related-card-image img {
  transform: scale(1.1);
}
.related-card-content {
  padding: 25px;
}
.related-category {
  display: inline-block;
  background: #00d4ff;
  color: white;
  padding: 4px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.related-card-content h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin: 0 0 15px;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00d4ff;
  font-size: 14px;
  font-weight: 600;
}
.read-more i {
  transition: transform 0.3s ease;
}
.related-card:hover .read-more i {
  transform: translateX(5px);
}
.hero-background-image {
  animation: heroImageFadeIn 0.6s ease-in;
}
@keyframes heroImageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2c3e50 25%, #34495e 50%, #2c3e50 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 0;
}
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.hero-background.loaded::before {
  display: none;
}
@supports not (object-fit: cover) {
  .hero-background-image {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .page-hero {
    display: block;
  }
  .page-hero .container {
    padding-top: 150px;
  }
}
.media-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}
.media-link:hover {
  text-decoration: none;
}
.media-link:visited {
  color: inherit;
}
.media-link:focus {
  outline: none;
}
.oil-pic {
  max-width: 800px;
}