@charset "UTF-8";
:root {
  --color-purple: #9812c2;
  --color-pink: #cc2fe8;
  --hover-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat-Bold-subset.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html {
  font-size: 16px;
}

body {
  color: #fff;
  font-family: Arial, "Sofia Sans", "Microsoft JhengHei", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

header .navbar {
  background-color: rgba(0, 0, 0, 0.8);
}
header .navbar .nav-link {
  color: #fff !important;
  transition: color 0.3s;
}
header .navbar .nav-link:hover {
  color: var(--color-pink) !important;
}
header .select_custom {
  background-color: transparent;
  color: #fff;
  border: none;
  outline: none;
  -webkit-appearance: none; /* 移除原生箭頭 */
  -moz-appearance: none;
  appearance: none;
  padding-right: 2rem; /* 避免文字蓋到箭頭 */
  cursor: pointer;
  /* 自訂白色小三角 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 9'%3E%3Cpolygon fill='white' points='0,0 10,0 5,8.66'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 0.65rem auto;
}
header .select_custom > option {
  background-color: #000; /* 下拉選項黑底 */
  color: #fff; /* 下拉選項白字 */
}
header .select_custom:focus {
  box-shadow: none;
}

.toggle_btn {
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.achore {
  padding-top: 66px !important;
}

.offcanvas-start {
  width: 90vw;
}

.offcanvas-body a {
  color: #000;
  display: block;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.text_black {
  color: #000000;
}

.text_blue {
  color: #1974eb;
}

.bg_white {
  background-color: #ffffff;
}

.bg_gray {
  background-color: #fafafa;
}

.bg_blue {
  background-color: #252d3b;
}

.btn_purple {
  background-color: var(--color-purple);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 50px;
}
.btn_purple:hover {
  background-color: #7a0e9c;
  color: #fff;
  transition: all 0.3s;
}

.btn_pink_outline {
  border: 2px solid var(--color-pink);
  color: var(--color-pink);
  background-color: #fff;
  border-radius: 8px;
  padding: 14px 50px;
}
.btn_pink_outline:hover {
  background-color: var(--color-pink);
  color: #fff;
  transition: all 0.3s;
}

.section_title {
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .section_title {
    line-height: 1.2;
  }
}

.section_content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-10px);
  }
}
.section1 {
  padding: 173px 0 132px;
  background-image: url("../img/section_1_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.section1 .content_box > div {
  margin-bottom: 38px;
}
.section1 .section_title {
  font-size: 64px;
}
.section1 .section_content {
  font-size: 20px;
}

.section2 {
  padding: 70px 0;
}
.section2 .section_content {
  font-size: 20px;
  color: #4b5563;
}
.section2 .btn_title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: flex-start;
}
.section2 .btn_title > span {
  padding-left: 1rem;
}
.section2 .btn_content {
  color: #4b5563;
  margin-top: 1rem;
}
.section2 .ui_btn {
  background-color: #fff;
  border-radius: 0;
  padding: 10px 16px;
  text-align: left;
  border: 3px solid;
  -o-border-image: linear-gradient(90deg, #fff, #fff) 1;
     border-image: linear-gradient(90deg, #fff, #fff) 1;
  transition: all 0.3s;
}
.section2 .ui_btn.active {
  background-color: #fff;
  box-shadow: var(--hover-shadow);
  -o-border-image: linear-gradient(90deg, #cc2fe8, #12beef) 1;
     border-image: linear-gradient(90deg, #cc2fe8, #12beef) 1;
  transition: all 0.3s;
}
.section2 .ui_content {
  display: none;
}
.section2 .ui_content.active {
  display: block;
}
.section2 .ui_content.active > img {
  animation: fadeIn 0.8s forwards;
}

.section3 {
  padding: 108px 0;
}
.section3 .top {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  display: inline-flex;
}
@media (max-width: 991.98px) {
  .section3 .top {
    font-size: 36px;
  }
}
.section3 .top img {
  margin-right: 1rem;
  margin-top: 1.5rem;
}
.section3 .bottom {
  font-size: 18px;
  font-weight: 400;
  padding-top: 20px;
  color: #1d1d1d;
}

.section4 {
  background-image: url("../img/section4_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 76px 0;
}
.section4 .section_title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 44px;
}
.section4 .system_title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}
.section4 .system_btn_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 10px;
}
@media (max-width: 991.98px) {
  .section4 .system_btn_container {
    gap: 20px 10px;
  }
}
.section4 .system_btn {
  display: inline-flex;
  align-items: flex-start;
  background-color: transparent;
  border: none;
}
.section4 .system_btn:nth-child(1) {
  order: 1;
}
.section4 .system_btn:nth-child(2) {
  order: 3;
}
.section4 .system_btn:nth-child(3) {
  order: 5;
}
.section4 .system_btn:nth-child(4) {
  order: 2;
}
.section4 .system_btn:nth-child(5) {
  order: 4;
}
@media (max-width: 991.98px) {
  .section4 .system_btn:nth-child(1) {
    order: 1;
  }
  .section4 .system_btn:nth-child(2) {
    order: 2;
  }
  .section4 .system_btn:nth-child(3) {
    order: 3;
  }
  .section4 .system_btn:nth-child(4) {
    order: 4;
  }
  .section4 .system_btn:nth-child(5) {
    order: 5;
  }
}
.section4 .system_btn .icon_num {
  padding-right: 1rem;
}
.section4 .system_btn.active .icon_img {
  opacity: 1;
  transform: translateY(-10px);
  transition: all 0.3s;
}
.section4 .system_btn.active .icon_img > img:first-child {
  display: none;
}
.section4 .system_btn.active .icon_img > img:last-child {
  display: block;
}
.section4 .system_btn .icon_img {
  transform: translateY(0px);
  transition: all 0.3s;
}
.section4 .system_btn .icon_img > img {
  max-height: 85px;
  width: auto;
}
.section4 .system_btn .icon_img > img:first-child {
  display: block;
}
.section4 .system_btn .icon_img > img:last-child {
  display: none;
}
.section4 .system_content {
  font-size: 14px;
  display: none;
  width: 300px;
  padding-left: 30px;
}
@media (max-width: 991.98px) {
  .section4 .system_content {
    padding-left: 10px;
    width: auto;
  }
}
.section4 .system_content.active {
  display: block;
  animation: fadeIn 0.5s forwards;
}
.section4 .system_content ul {
  list-style: none;
  padding-left: 0;
}
.section4 .system_content ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 24px; /* 為圓形預留空間 */
}
.section4 .system_content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px; /* 垂直置中調整 */
  width: 8px;
  height: 8px;
  background-color: #12beef;
  border-radius: 50%;
}

.section5 {
  padding: 52px 0;
}
.section5 .section_title {
  text-align: center;
  padding-bottom: 40px;
}
.section5 .card_box {
  margin-top: 8rem;
}
.section5 .card_custom {
  padding: 3rem 2rem;
  background-color: #fff;
  border-style: solid;
  border-width: 3px;
  -o-border-image: linear-gradient(90deg, #cc2fe8, #12beef) 1;
     border-image: linear-gradient(90deg, #cc2fe8, #12beef) 1;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}
.section5 .card_custom:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-10px);
}
.section5 .card_image {
  display: flex;
  justify-content: flex-end;
  margin-top: -156px;
  padding-bottom: 20px;
  padding-right: 30px;
}
.section5 .card_subtitle {
  font-size: 14px;
  color: #1974eb;
  margin-bottom: 10px;
}
.section5 .card_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section5 ul {
  color: #4b5563;
  font-size: 16px;
}
.section5 ul li {
  margin-bottom: 1rem;
}

.section6 {
  padding: 70px 0;
}
.section6 .section_title {
  font-size: 36px;
}
.section6 .section_content {
  font-size: 20px;
}
.section6 .section_list {
  padding-left: 130px;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .section6 .section_list {
    padding-left: 0;
  }
}
.section6 .section_list ul {
  list-style: none;
  padding-left: 0;
}
.section6 .section_list ul li {
  padding-left: 24px; /* 12px 圓形 + 間距 */
  margin-bottom: 1.5rem;
  font-size: 18px;
  position: relative;
}
.section6 .section_list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px; /* 垂直置中調整 */
  width: 12px;
  height: 12px;
  background-color: #12beef;
  border-radius: 50%;
}

.section7 {
  padding: 40px 0 100px;
}
.section7 .section_title {
  margin-bottom: 40px;
  text-align: center;
}
.section7 p {
  text-indent: 1rem;
}

.section8 {
  padding: 54px 0 70px;
}
.section8 .section_content {
  font-size: 18px;
  padding: 30px 0;
}

.globe-container {
  position: relative;
  width: 100%;
  max-width: 90vw;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .globe-container {
    max-width: 360px;
  }
}
.globe-container.grabActive {
  cursor: grab;
}

.globe-container.grabActive:active {
  cursor: grabbing;
}

canvas {
  width: 100%;
  height: 100%;
  position: relative;
}

.label {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
}

.label::after {
  content: attr(data-label);
  position: absolute;
  bottom: 20px;
  left: 50%;
  color: white;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  border-width: 6px 6px 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  opacity: 1;
}

.controls {
  color: #fff;
  text-align: center;
  margin-top: 1rem;
  font-size: 14px;
}

.controls button {
  margin: 0 5px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.controls button:active {
  background: rgba(255, 255, 255, 0.2);
}

footer {
  background-color: #000;
  padding: 40px 0;
}
footer .btns > a {
  padding: 0 1rem 0 0.5rem;
  text-decoration: none;
  color: #fff;
  border-right: 2px solid #fff;
}
footer .btns > a:hover {
  color: var(--color-pink);
  transition: color 0.3s;
}
footer .btns > a:first-child {
  padding-left: 0;
}
footer .btns > a:last-child {
  border-right: none;
}

.toTopBtn {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 180px;
  right: 26px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 1000;
}
.toTopBtn:hover {
  background-color: var(--color-pink);
  transition: background-color 0.3s;
}
.toTopBtn img {
  width: 27px;
  height: 27px;
  margin-bottom: 2px;
}
.toTopBtn.active {
  opacity: 1;
  transition: opacity 0.3s;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.loading.active {
  opacity: 1;
}

[data-animation=fadeUp] {
  opacity: 0;
  transform: translateY(0);
}
[data-animation=fadeUp].active {
  opacity: 1;
  transform: translateY(-10px);
  transition: all 0.5s ease-in-out;
}

[data-animation=fadeIn] {
  opacity: 0;
}
[data-animation=fadeIn].active {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}/*# sourceMappingURL=index.css.map */