@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 {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #f4f6f8;
  color: #2c3338;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.6;
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

p {
  color: #2c3338;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  p {
    margin-bottom: 0.8rem;
  }
}

.section-subtitle {
  color: #6f7a87;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

/* 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-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #113f6c;
  text-align: center;
  position: relative;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}
.section-title span {
  display: block;
  font-size: 0.875rem;
  color: #66a6d9;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section-title span {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
}
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: #1a6fb9;
  margin-top: 1rem;
  border-radius: 2px;
  box-shadow: 50px 0 0 #66a6d9;
}
@media (max-width: 768px) {
  .section-title::after {
    width: 30px;
    height: 3px;
    box-shadow: 40px 0 0 #66a6d9;
  }
}

.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: #2766a3;
}

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: #2766a3;
}
.cta-link a.tel svg #background {
  fill: #2766a3;
}
.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: 0.5s;
  background: white;
}
.navbar .navbar-brand {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar-brand span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2766a3;
}
.navbar .navbar-brand img {
  width: 80px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 80px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    padding-top: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    gap: 0.5rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #2766a3;
}

#hero-split {
  margin-top: 72.45px;
  position: relative;
  background-color: #113f6c;
  background: linear-gradient(50deg, #113f6c, #2766a3);
  overflow: hidden;
}
@media (max-width: 991px) {
  #hero-split {
    min-height: auto;
    padding-bottom: 3rem;
  }
}
#hero-split .content-side {
  padding: 6rem 4rem 6rem 8rem;
}
@media (max-width: 1400px) {
  #hero-split .content-side {
    padding: 5rem 3rem 5rem 4rem;
  }
}
@media (max-width: 991px) {
  #hero-split .content-side {
    padding: 4rem 2rem;
    order: 2;
  }
}
#hero-split .content-side .hero-content-wrapper {
  max-width: 600px;
}
#hero-split .content-side .hero-content-wrapper h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  #hero-split .content-side .hero-content-wrapper h1 {
    font-size: 2rem;
  }
}
#hero-split .content-side .hero-content-wrapper .lead {
  font-size: 1.15rem;
  color: #c7ddf0;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  #hero-split .content-side .hero-content-wrapper .hero-btns {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  #hero-split .content-side .hero-content-wrapper .hero-btns .btn {
    flex-grow: 1;
  }
}
#hero-split .content-side .hero-content-wrapper .hero-btns .btn-accent {
  background-color: #1a6fb9;
  border-color: #1a6fb9;
  color: #ffffff;
  padding: 0.875rem 2rem;
  font-weight: 600;
  box-shadow: 0 10px 20px -10px rgba(26, 111, 185, 0.5);
}
#hero-split .content-side .hero-content-wrapper .hero-btns .btn-accent:hover {
  background-color: rgb(22.8578199052, 97.5853080569, 162.6421800948);
  transform: translateY(-3px);
}
#hero-split .content-side .hero-content-wrapper .hero-btns .btn-outline-light {
  border-width: 2px;
  padding: 0.875rem 2rem;
  font-weight: 600;
}
#hero-split .content-side .hero-content-wrapper .hero-btns .btn-outline-light:hover {
  background-color: #ffffff;
  color: #113f6c;
  transform: translateY(-3px);
}
#hero-split .content-side .hero-content-wrapper .trust-badges {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(199, 221, 240, 0.2);
}
@media (max-width: 576px) {
  #hero-split .content-side .hero-content-wrapper .trust-badges {
    gap: 1.5rem;
    flex-direction: column;
  }
}
#hero-split .content-side .hero-content-wrapper .trust-badges .badge-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
#hero-split .content-side .hero-content-wrapper .trust-badges .badge-item .icon-wrap {
  font-size: 2rem;
  color: #66a6d9;
  line-height: 1;
}
#hero-split .content-side .hero-content-wrapper .trust-badges .badge-item .text-wrap {
  display: flex;
  flex-direction: column;
}
#hero-split .content-side .hero-content-wrapper .trust-badges .badge-item .text-wrap .title {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.05rem;
}
#hero-split .content-side .hero-content-wrapper .trust-badges .badge-item .text-wrap .desc {
  font-size: 0.875rem;
  color: #c7ddf0;
  opacity: 0.8;
}
#hero-split .image-side {
  position: relative;
  min-height: 400px;
}
@media (max-width: 991px) {
  #hero-split .image-side {
    order: 1;
    height: 50vh;
  }
}
#hero-split .image-side .image-container {
  background-image: url("../images/banner/img-1.avif");
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
#hero-split .image-side .image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(17, 63, 108, 0.3) 0%, rgba(17, 63, 108, 0) 20%);
  pointer-events: none;
}
@media (max-width: 991px) {
  #hero-split .image-side .image-container {
    clip-path: none;
    border-bottom: 5px solid #1a6fb9;
  }
}

#about {
  background-color: #ffffff;
}
#about .about-content {
  padding-right: 2rem;
}
@media (max-width: 991px) {
  #about .about-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
#about .about-content .lead-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2766a3;
}
@media (max-width: 768px) {
  #about .about-content .lead-text {
    font-size: 1.125rem;
  }
}
#about .about-content .highlight-quote {
  background-color: #f4f6f8;
  border-left: 4px solid #1a6fb9;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  #about .about-content .highlight-quote {
    padding: 1rem;
  }
}
#about .about-content .highlight-quote i {
  font-size: 1.5rem;
  color: #66a6d9;
}
#about .about-content .highlight-quote p {
  margin: 0;
  font-weight: 500;
  color: #113f6c;
}
#about .about-image-wrapper {
  position: relative;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
#about .about-image-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 80%;
  background-color: #c7ddf0;
  border-radius: 12px;
  z-index: 0;
}
#about .about-image-wrapper .main-img {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(17, 63, 108, 0.08);
}
#about .about-image-wrapper .floating-badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  z-index: 2;
  background-color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #f4f6f8;
}
@media (max-width: 768px) {
  #about .about-image-wrapper .floating-badge {
    right: 1rem;
    bottom: 1rem;
    padding: 0.5rem 1rem;
  }
}
#about .about-image-wrapper .floating-badge i {
  color: #1a6fb9;
  font-size: 1.25rem;
}
#about .about-image-wrapper .floating-badge span {
  font-weight: 600;
  color: #113f6c;
  font-size: 0.95rem;
}

#services {
  background-color: #f4f6f8;
  background: #2766a3;
  background: linear-gradient(to bottom, #2766a3, #113f6c);
}
@media (max-width: 768px) {
  #services .section-subtitle {
    color: white;
  }
}
#services .section-title {
  color: white;
}
#services .service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
@media (hover: hover) {
  #services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(17, 63, 108, 0.08);
    border-color: #c7ddf0;
  }
  #services .service-card:hover .icon-box {
    background-color: #2766a3;
    color: #ffffff;
    transform: scale(1.05);
  }
}
#services .service-card .img-box {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #services .service-card .img-box {
    height: 300px;
  }
}
#services .service-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .service-card .img-box .icon-box {
  position: absolute;
  right: 1.5rem;
  bottom: 10px;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #1a6fb9;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 2;
}
#services .service-card .text-box {
  padding: 2.5rem 1.5rem 1.5rem;
}
@media (max-width: 768px) {
  #services .service-card .text-box {
    padding: 2rem 1.25rem 1.25rem;
  }
}
#services .service-card .text-box h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #113f6c;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  #services .service-card .text-box h3 {
    font-size: 1.05rem;
  }
}
#services .service-card .text-box p {
  font-size: 0.95rem;
  color: #6f7a87;
  margin: 0;
}

#process {
  background-color: #ffffff;
}
#process .process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #process .process-timeline {
    gap: 1rem;
  }
}
#process .process-timeline .process-item {
  background-color: #f4f6f8;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #process .process-timeline .process-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }
}
#process .process-timeline .process-item:hover {
  background-color: #fff;
  box-shadow: 0 10px 25px rgba(39, 102, 163, 0.05);
  border-left-color: #1a6fb9;
}
#process .process-timeline .process-item .step-num {
  font-size: 3rem;
  font-weight: 800;
  color: #c7ddf0;
  line-height: 1;
  opacity: 0.5;
  font-family: Arial, sans-serif;
}
@media (max-width: 768px) {
  #process .process-timeline .process-item .step-num {
    font-size: 2.5rem;
  }
}
#process .process-timeline .process-item .content-box {
  flex: 1;
}
#process .process-timeline .process-item .content-box h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2766a3;
  margin-bottom: 0.5rem;
}
#process .process-timeline .process-item .content-box p {
  margin: 0;
  color: #6f7a87;
  font-size: 0.95rem;
}

.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 .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #2766a3;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

#contact {
  background-color: #f4f6f8;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 3rem;
  }
}
#contact .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  #contact .contact-info-wrapper {
    gap: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #contact .contact-box {
    padding: 1.25rem;
    gap: 1rem;
  }
}
@media (hover: hover) {
  #contact .contact-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17, 63, 108, 0.08);
    border-color: #c7ddf0;
  }
  #contact .contact-box:hover .action-link i {
    transform: translateX(4px);
  }
}
#contact .contact-box .icon-box {
  background: #2766a3;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  color: #ffffff;
}
@media (max-width: 768px) {
  #contact .contact-box .icon-box {
    width: 48px;
    height: 48px;
  }
}
#contact .contact-box .icon-box i {
  font-size: 1.75rem;
}
#contact .contact-box .icon-box svg {
  fill: #ffffff;
}
#contact .contact-box .icon-box.fb-box {
  background: #1877f2;
}
#contact .contact-box .icon-box.line-box {
  background: #33cc66;
}
#contact .contact-box .text-box {
  display: flex;
  flex-direction: column;
}
#contact .contact-box .text-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #6f7a87;
  margin-bottom: 0.25rem;
}
#contact .contact-box .text-box p {
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #113f6c;
}
#contact .contact-box .text-box .contact-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: #113f6c;
  text-decoration: none;
  transition: color 0.3s ease;
}
#contact .contact-box .text-box .contact-link:hover {
  color: #1a6fb9;
}
#contact .contact-box .text-box .action-link {
  color: #2766a3;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.3s ease;
}
#contact .contact-box .text-box .action-link.small {
  font-size: 0.875rem;
}
#contact .contact-box .text-box .action-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
#contact .contact-box .text-box .action-link:hover {
  color: #1a6fb9;
}
#contact .map-wrapper {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  min-height: 350px;
  border: 1px solid #c7ddf0;
}
@media (max-width: 991px) {
  #contact .map-wrapper {
    margin-top: 1rem;
    min-height: 300px;
  }
}

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