@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&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;
}

html,
body {
  font-family: "Noto Sans TC", sans-serif;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-padding {
  padding: 80px 0;
  scroll-margin-top: 5rem;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-title {
  margin-bottom: 50px;
}
.section-title .sub-title {
  display: block;
  color: #0077b6;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004e89;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #0077b6;
}
.text-center .section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }
}
.section-title p {
  margin-top: 15px;
  color: #666666;
  font-size: 1.1rem;
}

#navbar {
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
#navbar .navbar-brand img {
  width: 100px;
}
@media (max-width: 768px) {
  #navbar .navbar-brand img {
    width: 70px;
  }
}
#navbar .navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}
#navbar .navbar-brand .brand-text .main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #004e89;
  line-height: 1.2;
}
#navbar .navbar-brand .brand-text .sub {
  font-size: 0.75rem;
  color: #666666;
  letter-spacing: 0.5px;
}
#navbar .navbar-nav .nav-item {
  margin: 0 5px;
}
#navbar .navbar-nav .nav-item .nav-link {
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  position: relative;
}
#navbar .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #0077b6;
  transition: width 0.3s ease;
}
#navbar .navbar-nav .nav-item .nav-link:hover, #navbar .navbar-nav .nav-item .nav-link.active {
  color: #0077b6;
}
#navbar .navbar-nav .nav-item .nav-link:hover::before, #navbar .navbar-nav .nav-item .nav-link.active::before {
  width: 80%;
}
#navbar .navbar-toggler {
  border: none;
  box-shadow: none;
}
#navbar .navbar-toggler:focus {
  outline: none;
}

.fixed-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .fixed-cta {
    bottom: 20px;
    right: 20px;
  }
}
.fixed-cta .cta-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.fixed-cta .cta-btn:hover {
  transform: scale(1.1);
}
.fixed-cta .cta-btn.line {
  background-color: #06c755;
}
.fixed-cta .cta-btn.phone {
  background: linear-gradient(135deg, #0077b6, #004e89);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 119, 182, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 119, 182, 0);
  }
}
#hero {
  margin-top: 80px;
  height: calc(100vh - 80px);
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 110px;
    height: 70vh;
  }
}
#hero .swiper,
#hero .swiper-slide {
  height: 100%;
  width: 100%;
}
#hero .swiper-slide {
  position: relative;
}
#hero .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.6);
  z-index: 1;
}
#hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
}
#hero .hero-content .text-box {
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
#hero .hero-content .text-box h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  color: #ff9f1c;
}
@media (max-width: 768px) {
  #hero .hero-content .text-box h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}
#hero .hero-content .text-box h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #hero .hero-content .text-box h1 {
    font-size: 2.2rem;
  }
}
#hero .hero-content .text-box p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  #hero .hero-content .text-box p {
    font-size: 1rem;
    padding: 0 20px;
  }
}
#hero .hero-content .text-box .btn-group {
  gap: 15px;
}
#hero .hero-content .text-box .btn-group .btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
}
#hero .hero-content .text-box .btn-group .btn.btn-primary {
  background-color: #0077b6;
  border-color: #0077b6;
}
#hero .hero-content .text-box .btn-group .btn.btn-primary:hover {
  background-color: #005683;
}
#hero .hero-content .text-box .btn-group .btn.btn-outline-light {
  border-width: 2px;
}
#hero .hero-content .text-box .btn-group .btn.btn-outline-light:hover {
  color: #004e89;
}

#news {
  background-color: #ffffff;
}
#news .news-board {
  background: linear-gradient(135deg, #004e89 0%, #003156 100%);
  background: #0077b6;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 15px 30px rgba(0, 48, 73, 0.15);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #news .news-board {
    padding: 40px 20px;
  }
}
#news .news-board .section-title {
  margin-bottom: 40px;
}
#news .news-board .section-title .sub-title {
  color: rgba(255, 255, 255, 0.7);
}
#news .news-board .section-title h2 {
  color: #ffffff;
}
#news .news-board .section-title h2::after {
  background: #ff9f1c;
}
#news .news-board .news-img-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #ffffff;
  background: #ffffff;
}
#news .news-board .news-img-card .img-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
#news .news-board .news-img-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
#news .news-board .news-img-card .img-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#news .news-board .news-img-card .img-box .overlay i {
  color: white;
  font-size: 2.5rem;
  transform: scale(0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#news .news-board .news-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
#news .news-board .news-img-card:hover .img-box img {
  transform: scale(1.1);
}
#news .news-board .news-img-card:hover .img-box .overlay {
  opacity: 1;
}
#news .news-board .news-img-card:hover .img-box .overlay i {
  transform: scale(1);
}

#about .about-img-box {
  position: relative;
  padding: 20px;
}
#about .about-img-box img {
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}
#about .about-img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: rgba(0, 119, 182, 0.1);
  z-index: -1;
  border-radius: 20px;
}
#about .about-img-box .exp-badge {
  position: absolute;
  bottom: 40px;
  right: 0px;
  background: linear-gradient(135deg, #0077b6 0%, #004e89 100%);
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#about .about-img-box .exp-badge .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#about .about-img-box .exp-badge .text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}
#about .about-content .lead {
  font-weight: 500;
  color: #004e89;
  margin-bottom: 20px;
}
#about .about-content p {
  color: #666666;
  margin-bottom: 20px;
  text-align: justify;
}
#about .about-content .feature-list {
  margin-top: 30px;
}
#about .about-content .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 500;
}
#about .about-content .feature-list li i {
  color: #06c755;
  font-size: 1.4rem;
  margin-right: 10px;
}

#services {
  background-color: #eaebed;
}
#services .service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}
#services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  border-top-color: #0077b6;
}
#services .service-card:hover .icon-wrapper {
  background-color: #0077b6;
  color: #ffffff;
}
#services .service-card:hover .read-more {
  color: #004e89;
}
#services .service-card:hover .read-more i {
  margin-left: 10px;
}
#services .service-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 119, 182, 0.1);
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
#services .service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333333;
}
#services .service-card p {
  color: #666666;
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 0.95rem;
}
#services .service-card .read-more {
  color: #666666;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}
#services .service-card .read-more i {
  margin-left: 5px;
  transition: margin 0.3s ease;
}
#services .service-card.feature-highlight {
  background-color: #004e89;
  color: #ffffff;
  border: none;
  display: flex;
  justify-content: center;
}
#services .service-card.feature-highlight .content {
  width: 100%;
}
#services .service-card.feature-highlight h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}
#services .service-card.feature-highlight .check-list {
  padding-left: 0;
}
#services .service-card.feature-highlight .check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  #services .service-card.feature-highlight .check-list li {
    padding-left: 1rem;
  }
}
#services .service-card.feature-highlight .check-list li i {
  margin-right: 12px;
  color: #ff9f1c;
  font-size: 1.4rem;
  flex-shrink: 0;
}

#process {
  background-color: #eaebed;
}
#process .timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
#process .timeline-wrapper .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #e0e0e0;
  transform: translateX(-50%);
  border-radius: 4px;
  z-index: 0;
}
@media (max-width: 768px) {
  #process .timeline-wrapper .timeline-line {
    left: 20px;
  }
}
#process .timeline-wrapper .timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
  z-index: 1;
}
#process .timeline-wrapper .timeline-item::after {
  content: "";
  display: block;
  clear: both;
}
#process .timeline-wrapper .timeline-item.left {
  left: 0;
  padding-right: 50px;
  text-align: right;
}
#process .timeline-wrapper .timeline-item.left .timeline-badge {
  right: -25px;
}
#process .timeline-wrapper .timeline-item.left .timeline-content::after {
  right: -10px;
  border-left: 10px solid #ffffff;
}
#process .timeline-wrapper .timeline-item.right {
  left: 50%;
  padding-left: 50px;
  text-align: left;
}
#process .timeline-wrapper .timeline-item.right .timeline-badge {
  left: -25px;
}
#process .timeline-wrapper .timeline-item.right .timeline-content::after {
  left: -10px;
  border-right: 10px solid #ffffff;
}
#process .timeline-wrapper .timeline-item .timeline-badge {
  position: absolute;
  top: 20px;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1px solid #0077b6;
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 0 0 5px #eaebed;
  transition: all 0.3s ease;
}
#process .timeline-wrapper .timeline-item .timeline-content {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}
#process .timeline-wrapper .timeline-item .timeline-content::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
#process .timeline-wrapper .timeline-item .timeline-content h4 {
  font-weight: 700;
  color: #004e89;
  margin-bottom: 15px;
}
#process .timeline-wrapper .timeline-item .timeline-content p {
  color: #666666;
  margin-bottom: 10px;
  line-height: 1.6;
}
#process .timeline-wrapper .timeline-item .timeline-content .step-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  font-size: 0.9rem;
  color: #333333;
  font-weight: 500;
}
#process .timeline-wrapper .timeline-item:hover .timeline-badge {
  background: #004e89;
  color: #ffffff;
  border-color: #004e89;
  transform: scale(1.1);
}
#process .timeline-wrapper .timeline-item:hover .timeline-content {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  #process .timeline-wrapper .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    left: 0 !important;
    text-align: left !important;
    margin-bottom: 30px;
  }
  #process .timeline-wrapper .timeline-item .timeline-badge {
    left: -5px !important;
    right: auto !important;
  }
  #process .timeline-wrapper .timeline-item .timeline-content::after {
    left: -10px !important;
    right: auto !important;
    border-right: 10px solid #ffffff !important;
    border-left: none !important;
  }
}

#works {
  background-color: #eaebed;
}
#works .nav-pills {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-bottom: 0;
  margin-bottom: 30px;
  overflow-x: visible;
}
@media (max-width: 576px) {
  #works .nav-pills {
    display: grid;
    grid-template-columns: 2fr;
    width: 100%;
    gap: 8px;
  }
}
@media (max-width: 576px) {
  #works .nav-pills .nav-item {
    width: 100%;
  }
}
#works .nav-pills .nav-item .nav-link {
  border-radius: 50px;
  padding: 8px 24px;
  color: #0077b6;
  background-color: #ffffff;
  border: 1px solid rgba(0, 119, 182, 0.3);
  font-weight: 500;
  white-space: normal;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}
#works .nav-pills .nav-item .nav-link:hover {
  border-color: #004e89;
  color: #004e89;
  background-color: rgba(0, 78, 137, 0.05);
}
#works .nav-pills .nav-item .nav-link.active {
  background-color: #004e89;
  color: white;
  border-color: #004e89;
  box-shadow: 0 4px 10px rgba(0, 78, 137, 0.3);
}
#works .work-desc-container {
  background-color: white;
  border-left: 4px solid #ff9f1c;
  padding: 15px 20px;
  margin-bottom: 30px;
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
#works .work-desc-container i {
  font-size: 2rem;
  color: rgba(0, 78, 137, 0.2);
}
#works .work-desc-container p {
  margin: 0;
  color: #0077b6;
  font-size: 1rem;
  line-height: 1.6;
}
#works .gallery-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  cursor: pointer;
}
#works .gallery-card .img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
#works .gallery-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
#works .gallery-card .img-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 78, 137, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#works .gallery-card .img-box .overlay i {
  color: white;
  font-size: 2rem;
  transform: scale(0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#works .gallery-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}
#works .gallery-card:hover .img-box img {
  transform: scale(1.1);
}
#works .gallery-card:hover .img-box .overlay {
  opacity: 1;
}
#works .gallery-card:hover .img-box .overlay i {
  transform: scale(1);
}

#contact .contact-container {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
}
#contact .contact-container .contact-info-bg {
  background: #004e89;
  padding: 50px;
  color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  #contact .contact-container .contact-info-bg {
    padding: 30px;
  }
}
#contact .contact-container .contact-info-bg h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#contact .contact-container .contact-info-bg p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
#contact .contact-container .contact-info-bg .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}
#contact .contact-container .contact-info-bg .info-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #ff9f1c;
  margin-top: 3px;
}
#contact .contact-container .contact-info-bg .info-item strong {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 2px;
}
#contact .contact-container .contact-info-bg .info-item a,
#contact .contact-container .contact-info-bg .info-item span {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
}
#contact .contact-container .contact-info-bg .info-item a:hover {
  color: #ff9f1c;
}
#contact .contact-container .contact-info-bg .social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s;
}
#contact .contact-container .contact-info-bg .social-links a:hover {
  background: #ffffff;
  color: #004e89;
}
#contact .contact-container .map-box {
  height: 100%;
  min-height: 400px;
}

footer {
  background: #1a1a1a;
  padding: 30px 0;
  color: #888;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #0077b6;
}/*# sourceMappingURL=all.css.map */