@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

body {
  background-color: #fafafa;
  font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", sans-serif;
  color: #1e1e1e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* CSS */
[data-aos=blur-up] {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(10px);
  transition: all 0.1s ease;
}

[data-aos=blur-up].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.section-header {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}
.section-header h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
}
.section-header h2 {
  font-weight: 700;
  color: #1e1e1e;
  position: relative;
  padding-left: 1.5rem;
}
.section-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 6px;
  background-color: #247bff;
  border-radius: 2px;
}
.section-header h2 .en-title {
  display: block;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .section-header h2 .en-title {
    font-size: 0.875rem;
  }
}
.section-header h2 .en-title {
  color: #247bff;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: sans-serif;
}
.section-header.light-mode h2 {
  color: #fff;
}

.split {
  display: inline-block;
  overflow: hidden;
  text-shadow: 0 1.3em currentColor; /* 和 JS 位移一致 */
  will-change: transform;
  padding: 1 1rem;
}

.char {
  display: inline-block;
  position: relative;
}

section {
  padding: 8rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

a {
  text-decoration: none;
  color: #247bff;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.all-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.35;
}
.all-bg img {
  width: 100%;
  height: 100%;
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
  /* 避免子項目被等寬拉伸，同時維持靠右貼齊 */
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.cta-link a.line {
  background: #39cd00;
}
.cta-link a.tel {
  background: #247bff;
}
.cta-link a.tel svg #background {
  fill: #247bff;
}
.cta-link a.tel svg #icon {
  fill: white;
}
.cta-link a .icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.cta-link a .icon svg {
  width: 50px;
}
.cta-link a .label {
  white-space: nowrap;
  overflow: hidden;
  color: white;
  /* 用可動畫屬性取代 display */
  opacity: 0;
  visibility: hidden;
  max-width: 0; /* 或用 width，依喜好 */
  margin-left: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.cta-link a:hover {
  gap: 0.5rem;
}
.cta-link a:hover .label {
  opacity: 1;
  visibility: visible;
  max-width: 200px;
  margin-left: 0rem;
  padding-right: 1rem;
  transform: translateX(0);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s;
}
.cta-link .dropdown-menu {
  margin-right: 0.25rem;
  margin-left: 0;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: all 0.4s ease-in-out;
  padding: 1rem 0;
  background: transparent;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}
.navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(36, 123, 255, 0.5);
}
.navbar .navbar-brand {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    gap: 0.5rem;
  }
}
.navbar .navbar-brand .logo-container-yisheng {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .navbar .navbar-brand .logo-container-yisheng {
    height: 32px;
    width: 32px;
  }
}
.navbar .navbar-brand .logo-container-yisheng .logo-yisheng {
  height: 180%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.5s;
}
.navbar .navbar-brand .logo-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 4px;
}
@media (max-width: 768px) {
  .navbar .navbar-brand .logo-divider {
    height: 18px;
    margin: 0 2px;
  }
}
.navbar .navbar-brand .logo-img-yixuan {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .navbar .navbar-brand .logo-img-yixuan {
    height: 32px;
  }
}
.navbar .navbar-brand .brand-name {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .navbar .navbar-brand .brand-name {
    font-size: 1.1rem;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background-color: #2f3336;
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
}
.navbar .navbar-collapse .navbar-nav {
  gap: 2rem;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav {
    gap: 0;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: 0.3s;
}
.navbar .navbar-collapse .navbar-nav .nav-link:hover, .navbar .navbar-collapse .navbar-nav .nav-link.active {
  color: #247bff;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse .navbar-nav .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}
.navbar.scrolled {
  background: #2f3336;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
}
.navbar.scrolled .navbar-brand .logo-container-yisheng {
  height: 60px;
  width: 60px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand .logo-container-yisheng {
    height: 28px;
    width: 28px;
  }
}
.navbar.scrolled .navbar-brand .logo-img-yixuan {
  height: 50px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand .logo-img-yixuan {
    height: 28px;
  }
}
.navbar.scrolled .navbar-brand .brand-name {
  color: #fff;
}

.parallax-fixed {
  position: relative;
  height: 100vh; /* 可自行調整高度 */
  overflow: hidden;
}
.parallax-fixed .parallax-img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 120%;
}
.parallax-fixed .parallax-img img {
  width: 100%;
  height: 100%;
}

.parallax-dynamic {
  position: relative;
  /* 高度交給圖片本身決定 */
}
.parallax-dynamic .parallax-media {
  overflow: hidden;
  line-height: 0; /* 移除 img 作為 inline 元素的行高縫隙 */
}
.parallax-dynamic .parallax-media img {
  display: block;
  width: 100%;
  height: auto;
  /* 關鍵：先往上、並放大一點，避免上下兩端出現空白 */
  transform: translateY(-12%) scale(1.12);
  transform-origin: center;
  will-change: transform;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #2f3336;
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
}
#hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
}
#hero .swiper {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
}
#hero .swiper .swiper-wrapper .swiper-slide {
  overflow: hidden;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 768px) {
  #hero .swiper .swiper-wrapper .swiper-slide img {
    -o-object-position: center center;
       object-position: center center;
  }
}
#hero .swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
  transform: scale(1.15);
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
#hero .cta-box .cta-content {
  text-align: center;
  color: white;
  background: transparent;
  padding: 0;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
#hero .cta-box .cta-content::before {
  content: "";
  display: block;
  width: 2px;
  height: 60px;
  background-color: #247bff;
  margin: 0 auto 2rem auto;
  box-shadow: 0 0 10px rgba(36, 123, 255, 0.5);
}
#hero .cta-box .cta-content .sub-badge {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 500;
  opacity: 0.9;
}
#hero .cta-box .cta-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 {
    font-size: 2.2rem;
  }
}
#hero .cta-box .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box {
    flex-direction: column;
    gap: 1rem;
  }
}
#hero .cta-box .cta-content .btn-box a {
  text-decoration: none;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-shadow: none;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a {
    width: 100%;
    padding: 0.8rem 1rem;
  }
}
#hero .cta-box .cta-content .btn-box a i,
#hero .cta-box .cta-content .btn-box a svg {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}
#hero .cta-box .cta-content .btn-box .btn-primary-custom {
  background-color: #247bff;
  color: white;
  border: 2px solid #247bff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
#hero .cta-box .cta-content .btn-box .btn-primary-custom:hover {
  background-color: rgb(10.5, 107.6301369863, 255);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(36, 123, 255, 0.5);
}
#hero .cta-box .cta-content .btn-box .btn-outline-custom {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}
#hero .cta-box .cta-content .btn-box .btn-outline-custom:hover {
  background-color: white;
  color: #1e1e1e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}
#hero .cta-box .cta-content .btn-box .btn-outline-custom:hover i {
  transform: translateX(5px);
}

#about.bg-deep {
  background-color: #2f3336;
}
#about .about-content .text-secondary-light {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}
@media (max-width: 768px) {
  #about .about-content .text-secondary-light {
    font-size: 1rem;
  }
}
#about .about-content .quote-box {
  padding-left: 1.5rem;
  margin-top: 2rem;
  background: linear-gradient(90deg, rgba(36, 123, 255, 0.1) 0%, transparent 100%);
  padding: 1.5rem;
}
@media (max-width: 768px) {
  #about .about-content .quote-box {
    padding: 1rem;
  }
}
#about .about-content .quote-box .text-primary {
  margin-top: 0.5rem !important;
}
#about .about-visual {
  position: relative;
  padding: 2rem;
}
@media (max-width: 768px) {
  #about .about-visual {
    padding: 0;
    margin-bottom: 2rem;
  }
}
#about .about-visual .about-swiper {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  #about .about-visual .about-swiper {
    aspect-ratio: 3/2;
  }
}
#about .about-visual .about-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
#about .about-visual .about-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.8s ease;
}
#about .about-visual .about-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}
#about .about-visual .about-swiper .swiper-pagination {
  position: absolute;
  bottom: 15px !important;
  width: 100%;
  text-align: center;
  z-index: 10;
}
#about .about-visual .about-swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}
#about .about-visual .about-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #247bff;
  width: 24px;
  border-radius: 4px;
}
#about .about-visual .decorative-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 80%;
  border: 2px solid #247bff;
  z-index: 1;
  opacity: 0.5;
}
@media (max-width: 768px) {
  #about .about-visual .decorative-box {
    display: none;
  }
}

#services {
  background-color: #e9ecef;
}
#services .service-card {
  background: #fff;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}
#services .service-card:hover {
  transform: translateY(-10px);
  border-bottom-color: #247bff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
#services .service-card:hover .service-img .icon-badge {
  background-color: #247bff;
  color: #fff;
}
#services .service-card .service-img {
  position: relative;
  overflow: hidden;
  height: 350px;
  z-index: 100;
}
@media (max-width: 768px) {
  #services .service-card .service-img {
    height: 200px;
  }
}
#services .service-card .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .service-card .service-img .icon-badge {
  position: absolute;
  bottom: 5px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: #fff;
  color: #1e1e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 100;
}
#services .service-card .service-body {
  padding: 2.5rem 2rem 2rem;
  z-index: -1;
}
@media (max-width: 768px) {
  #services .service-card .service-body {
    padding: 2rem 1.5rem;
  }
}
#services .service-card .service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e1e1e;
}
#services .service-card .service-body p {
  color: #5e6e7e;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#services .service-card .service-body .read-more {
  display: block;
  font-size: 0.85rem;
  color: #247bff;
  font-weight: 500;
  border-top: 1px solid #cfe2ff;
  padding-top: 1rem;
}

#process {
  background-color: #fff;
  position: relative;
}
#process .process-wrapper {
  position: relative;
}
#process .process-item {
  position: relative;
  padding: 2rem;
  background: #fafafa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  height: 100%;
  transition: transform 0.3s ease;
  z-index: 1;
}
#process .process-item:hover {
  transform: translateY(-5px);
  border-color: #cfe2ff;
  box-shadow: 0 10px 20px rgba(36, 123, 255, 0.05);
}
#process .process-item:hover .step-num {
  background-color: #247bff;
  color: #fff;
  border-color: #247bff;
}
#process .process-item.final-step {
  border-color: #247bff;
  background: rgba(36, 123, 255, 0.02);
}
#process .process-item .step-num {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid #cfe2ff;
  color: #247bff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  transition: all 0.3s ease;
}
#process .process-item .content {
  margin-top: 0.5rem;
}
#process .process-item .content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#process .process-item .content h4 .en {
  font-size: 0.75rem;
  color: #5e6e7e;
  font-weight: 400;
  text-transform: uppercase;
  background: #e9ecef;
  padding: 2px 8px;
  border-radius: 4px;
}
#process .process-item .content p {
  font-size: 0.95rem;
  color: #5e6e7e;
  margin-bottom: 1rem;
  line-height: 1.5;
}
#process .process-item .content .note {
  font-size: 0.85rem;
  color: #247bff;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
}
#process .process-item .content .note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  background-color: #247bff;
  border-radius: 50%;
}

.auto-carousel {
  padding: 0;
}
.auto-carousel .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
.auto-carousel .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
.auto-carousel .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 300px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#works {
  background-color: #fafafa;
}
#works .gallery-section {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  #works .gallery-section {
    margin-bottom: 3.5rem;
  }
}
#works .gallery-section .slider-header {
  position: relative;
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  overflow: hidden;
}
#works .gallery-section .slider-header::before {
  content: attr(data-en);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  font-weight: 800;
  color: #e9ecef;
  opacity: 0.6;
  z-index: 0;
  white-space: nowrap;
  letter-spacing: 0.5rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  #works .gallery-section .slider-header::before {
    font-size: 2.8rem;
    letter-spacing: 0.2rem;
  }
}
#works .gallery-section .slider-header .title-wrapper {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
#works .gallery-section .slider-header .title-wrapper .en {
  font-family: "Noto Serif TC", serif;
  font-size: 0.9rem;
  color: #247bff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
#works .gallery-section .slider-header .title-wrapper .zh {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e1e1e;
  letter-spacing: 2px;
  margin: 0;
}
@media (max-width: 768px) {
  #works .gallery-section .slider-header .title-wrapper .zh {
    font-size: 1.5rem;
  }
}
#works .works-swiper {
  padding-bottom: 60px;
  padding-top: 10px;
}
#works .works-swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #fff;
}
#works .works-swiper .swiper-slide:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  border-bottom-color: #247bff;
}
#works .works-swiper .swiper-slide:hover img.work-img {
  transform: scale(1.05);
}
#works .works-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#works .works-swiper img.work-img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (max-width: 768px) {
  #works .works-swiper img.work-img {
    height: 240px;
  }
}
#works .works-swiper .swiper-button-next,
#works .works-swiper .swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.95);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #247bff;
  transition: all 0.3s ease;
}
#works .works-swiper .swiper-button-next::after,
#works .works-swiper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}
#works .works-swiper .swiper-button-next:hover,
#works .works-swiper .swiper-button-prev:hover {
  background-color: #247bff;
  color: #fff;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  #works .works-swiper .swiper-button-next,
  #works .works-swiper .swiper-button-prev {
    display: none;
  }
}
#works .works-swiper .swiper-button-prev {
  left: 10px;
}
#works .works-swiper .swiper-button-next {
  right: 10px;
}
#works .works-swiper .swiper-pagination {
  bottom: 10px !important;
}
#works .works-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #5e6e7e;
  opacity: 0.3;
  transition: all 0.3s ease;
  margin: 0 6px !important;
}
#works .works-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #247bff;
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

#contact {
  background-color: #2f3336;
}
#contact h2 {
  color: white;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  color: white;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #247bff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #247bff;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  color: white;
  background-color: #2f3336;
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
}/*# sourceMappingURL=all.css.map */