@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #f5f2ec;
  color: #333;
}

.h2-box {
  margin-bottom: 3rem;
  color: #333;
}
@media (max-width: 768px) {
  .h2-box {
    margin-bottom: 2rem;
  }
}
.h2-box h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.h2-box h3 {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .h2-box h3 {
    font-size: 1.5rem;
  }
}

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

a {
  text-decoration: none;
  color: #184b44;
}

.navbar.scrolled {
  background: rgba(245, 242, 236, 0.618);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
  .navbar.scrolled {
    background: rgba(245, 242, 236, 0.8);
  }
}
.navbar.scrolled .navbar-brand {
  transition: 0.5s;
}
.navbar.scrolled .navbar-brand img {
  width: 70px;
  transition: 0.5s;
  filter: invert(0);
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 50px;
  }
}
.navbar.scrolled .navbar-collapse {
  flex-grow: 0;
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: rgb(0, 0, 0);
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item.cta {
  background: #184b44;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-toggler-icon {
    filter: invert(0);
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-toggler-icon {
    filter: invert(1);
  }
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 80px;
  transition: 0.5s;
  filter: invert(1);
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 60px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #184b44;
}

#hero {
  width: 100%;
  height: 90vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.438);
}
@media (max-width: 768px) {
  #hero .cta-box {
    display: none;
    padding: 2rem 1rem;
    position: static;
    background: none;
  }
}
#hero .cta-box .cta-content {
  text-align: center;
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    background: rgba(105, 122, 137, 0.5);
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 {
    font-size: 2rem;
  }
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content p {
    font-size: 1rem;
  }
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box {
    flex-direction: column;
  }
}
#hero .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 10rem;
  transition: 0.5s;
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-box .cta-content .btn-box a:first-child {
  background: #184b44;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
  border: 1px solid white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #184b44;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about p {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 3rem;
}
#about a {
  display: inline-block;
  padding: 0.5rem 2rem;
  background: #184b44;
  color: white;
  border-radius: 2rem;
  font-size: 1.1rem;
}

#services {
  background: #697a89;
}
#services .h2-box {
  color: white;
}
#services .services-card {
  background: white;
  padding: 2rem 2.5rem 1rem;
  border-radius: 1rem;
}
#services .services-card .img-box {
  margin-bottom: 1.5rem;
}
#services .services-card .img-box img {
  width: 30%;
}
#services .services-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #services .services-card h4 {
    font-size: 1.3rem;
  }
}
#services .services-card p {
  color: gray;
}

#contact {
  background: #f2f2f2;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box h3 {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #contact .contact-box h3 {
    font-size: 1.1rem;
  }
}
#contact .contact-box .icon-box {
  background: #184b44;
  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: #184b44;
  font-weight: 600;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  #contact .contact-box a {
    font-size: 1.2rem;
  }
}
#contact .contact-box a.small {
  font-size: 1rem;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  background: #f2f2f2;
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
}

.service-flow-section {
  background: #f8f8f8;
  padding: 60px 0 40px 0;
}
.service-flow-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-flow-section .service-flow-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  color: #222;
}
.service-flow-section .service-flow-desc {
  text-align: center;
  color: #697a89;
  font-size: 1.08rem;
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}
.service-flow-section .service-flow-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  counter-reset: flow-step;
  position: relative;
}
.service-flow-section .service-flow-list::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 32px;
  bottom: 32px;
  width: 4px;
  background: linear-gradient(to bottom, #697a89 0%, #184b44 100%);
  z-index: 0;
  border-radius: 2px;
}
.service-flow-section .service-flow-list li {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 28px 24px 28px 5rem;
  font-size: 1.15rem;
  color: #333;
  min-height: 60px;
  display: flex;
  align-items: center;
  counter-increment: flow-step;
  transition: box-shadow 0.2s, border 0.2s;
  border-left: 4px solid transparent;
  z-index: 1;
}
.service-flow-section .service-flow-list li i {
  font-size: 2rem;
  padding-right: 0.5rem;
}
.service-flow-section .service-flow-list li:hover {
  box-shadow: 0 8px 32px rgba(182, 161, 121, 0.18);
  border-left: 4px solid #184b44;
}
.service-flow-section .service-flow-list li::before {
  content: attr(data-icon);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #184b44;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(182, 161, 121, 0.12);
  border: 2px solid #fff;
  z-index: 2;
}

#works .work-card {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1rem 2rem;
  position: relative;
  transition: 0.5s;
}
#works .work-card .icon-box {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.8);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#works .work-card .icon-box i {
  font-size: 2rem;
  color: #8b8b8b;
}
#works .work-card:hover {
  transform: scale(1.05);
}
#works .work-card:hover::after {
  background: none;
}
#works .work-card img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .work-card h4 {
  color: #333;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.3rem;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #184b44;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

.icon-box {
  background: #184b44;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.icon-box i {
  color: white;
  font-size: 2rem;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: #184b44;
}

.quickly-link {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 1040;
  opacity: 0.8;
}
.quickly-link:hover {
  opacity: 1;
}
.quickly-link .icon-box {
  background: #184b44;
  border: 2px solid white;
}/*# sourceMappingURL=style.css.map */