@charset "UTF-8";

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: -5;
  pointer-events: none;
  user-select: none;
}

/* --- Hero Section --- */
.sec-hero .hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sec-hero .hero-left {
  max-width: 527px;
}

.sec-hero .hero-text h1 {
  line-height: 1.5;
  margin-bottom: 20px;
  background: linear-gradient(
    110deg,
    #0a4f14 0%,
    #28c341 25%,
    #67f077 50%,
    #28c341 75%,
    #0b5015 100%
  );
  color: transparent;
  font-size: 45px;
  font-weight: 700;
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.cursor {
  font-size: 50px;
  font-weight: bold;
  color: var(--clr-primary);
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.sec-hero .hero-text p {
  margin-bottom: 20px;
  color: var(--clr-neutral-300);
}

.sec-hero .hero-right {
  max-width: 600px;
  flex: 1;
}

.fade-slider {
  display: grid;
  width: 100%;
}

.fade-slide {
  grid-area: 1 / 1;
  opacity: 0;
  animation: crossfade 10.5s infinite;
}

.fade-slide .slider-text {
  text-align: center;
}


.fade-slide .slider-text .slide-ttl {
  font-size: 24px;
  font-weight: 500;
  margin-top: 10px;
}

.fade-slide img {
  max-width: 100%;
  height: auto;
  display: block;
}

.slide-1 {
  animation-delay: 0s;
}

.slide-2 {
  animation-delay: 3.5s;
}

.slide-3 {
  animation-delay: 7s;
}

@keyframes crossfade {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  11% {
    opacity: 1;
    transform: scale(1);
  }

  33% {
    opacity: 1;
    transform: scale(1);
  }

  44% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

.sec-hero .hero-image img {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  height: auto;
}

.hero-dots {
  display: flex;
  margin-top: 24px;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.hero-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6eede;
  animation: dot-active 10.5s infinite;
}

.hero-dots .dot-1 {
  animation-delay: 0s;
}

.hero-dots .dot-2 {
  animation-delay: 3.5s;
}

.hero-dots .dot-3 {
  animation-delay: 7s;
}

@keyframes dot-active {
  0%,
  33% {
    background: #28c341;
  }

  38%,
  100% {
    background: #d6eede;
  }
}

/* Pagination dots under hero image */
.hero-dots {
  display: flex;
  margin-top: 18px;
  gap: 8px;
  justify-content: center;
}

.hero-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06) inset;
  background: #c6c6c6;
}

.hero-dots span.active {
  box-shadow: 0 4px 12px rgba(40, 195, 65, 0.2);
  background: var(--clr-primary);
}

/* --- Package Software Section --- */
.software .package-card {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 40px 50px;
}

.package-card .card-shadow {
  box-shadow: 0px 0px 16px 0px rgba(172, 192, 222, 0.25);
  background: var(--card-gradient);
  border: 2px solid var(--clr-neutral-100);
  border-radius: 20px;
  padding: 40px;
  width: 98%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.package-card .software-detail {
  display: grid;
  grid-template-columns: 70% 1fr;
  align-items: center;
  justify-items: end;
  width: 100%;
}

.package-card .software-text .icon-ttl-gp {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}

.package-card .software-text .software-ttl {
  color: var(--clr-primary);
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 700;
}

.package-card .software-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.package-card .software-features li {
  display: flex;
  gap: 10px;
}

.software-features .list-ico {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/common/ico_list.png) no-repeat center/contain;
  flex-shrink: 0;
}

/* --- Stats Banner --- */
.sec-status {
  color: var(--clr-neutral-100);
}

.sec-status .stats-grid {
  display: grid;
  justify-items: center;
  padding: 40px 20px;
  border-radius: 20px;
  font-family: var(--font-secondary);
  text-align: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: var(--clr-primary);
}

.sec-status .stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-status .stat-item img {
  max-width: 45px;
  height: auto;
}

.sec-status .stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 100px;
}

.sec-status .stat-info p {
  font-size: 14px;
  text-align: left;
  text-wrap: nowrap;
}

.stat-info .stat-count {
  font-size: 20px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  text-align: left;
}

/* --- Application Section --- */

.sec-app.software {
  padding-top: 50px;
}

.sec-app.software,
.sec-institute,
.sec-carrier {
  border-top: 1px solid #aaaaaa30;
}

.sec-app.app {
  margin-top: 40px;
  background: var(--card-gradient);
}

.sec-app.app .app-swiper {
  margin-top: 4dvh;
}

.app-swiper-slide {
  gap: 40px;
}

.app-swiper-slide .app-text {
  max-width: 500px;
}

.app-swiper-slide .app-image {
  max-width: 450px;
}

.swiper-slide {
  height: auto;
  cursor: grab;
}

.sec-app .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-swiper {
  width: 100%;
  margin-top: 40px;
}

.menu-swiper .swiper-slide {
  text-align: center;
  padding: 10px 15px;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-secondary);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-swiper .swiper-slide:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.menu-swiper .swiper-slide-thumb-active {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.thumb-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
}

.thumb-nav-wrapper .menu-swiper {
  width: calc(100% - 100px);
  margin: 0;
}

.thumb-btn-prev,
.thumb-btn-next {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--clr-neutral-300);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  user-select: none;
}

.thumb-btn-prev:hover,
.thumb-btn-next:hover {
  color: var(--clr-primary);
}

.sec-app .app-ttl {
  color: var(--clr-primary);
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-secondary);
}

.app-text ul {
  list-style: none;
  margin-block: 20px;
}

.app-text ul li {
  display: flex;
  margin-bottom: 15px;
  gap: 10px;
}

.sec-app .store-buttons {
  display: flex;
  gap: 15px;
}

.sec-app .store-buttons img {
  max-width: 130px;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease-in;
}

.sec-app .store-buttons img:hover {
  opacity: 0.7;
}

/* --- Services Section --- */
.service {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

.service .service-card {
  display: flex;
  padding: 20px;
  border: 2px solid var(--clr-neutral-100);
  border-radius: 20px;
  box-shadow: 0px 0px 16px 0px rgba(172, 192, 222, 0.25);
  background: var(--card-gradient);
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.service-card .card-ttl {
  display: flex;
  padding-bottom: 10px;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 600;
  gap: 10px;
  border-bottom: 1px solid #f7f7f7;
}

.service-card .card-ttl .card-number {
  color: var(--clr-primary);
  text-wrap: nowrap;
}

.service-card .card-ttl h3 {
  font-weight: 600;
  font-size: 20px;
}

.service-card .btn-primary {
  display: flex;
  align-self: self-end;
}

/* --- Section carrier ---*/
.sec-carrier .career-card {
  padding: 20px 40px;
  border: 1px solid var(--clr-neutral-100);
  border-radius: 20px;
  box-shadow: 0px 0px 16px 0px rgba(172, 192, 222, 0.25);
  background: var(--card-gradient);
  gap: 40px;
  align-items: center;
}

.sec-carrier .career-img {
  flex-shrink: 0;
  max-width: 200px;
}

.sec-carrier .career-ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* --- Institute Section --- */

.sec-institute .institute-grid {
  display: grid;
  margin-top: 40px;
  text-align: left;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sec-institute .package-card {
  border-radius: 20px;
  background: var(--card-gradient);
  box-shadow: 0px 0px 16px 0px rgba(222, 233, 251, 0.25);
  border: 2px solid var(--clr-neutral-100);
  font-family: var(--font-secondary);
  padding: 20px;
}

.sec-institute .package-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.package-card .institute-txt {
  padding-top: 20px;
}

.package-card .institute-txt .card-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.institute-txt .card-lang .lang {
  padding: 3px 10px;
  background-color: var(--clr-primary);
  color: var(--clr-neutral-100);
  border-radius: 20px;
}

.sec-institute .course-info {
  list-style: none;
  color: var(--clr-neutral-300);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  text-wrap: nowrap;
}

.package-card .institute-txt .btn-primary {
  width: 100%;
  margin-top: 15px;
  z-index: 1;
  transition: all 0.3s ease-in;
}

.package-card .institute-txt .btn-primary:hover {
  opacity: 0.7;
}

.sec-institute .course-ttl {
  font-size: 20px;
  font-weight: 600;
  padding-block: 10px;
}

.sec-institute .course-info .circle {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--clr-neutral-300);
}

.sec-institute .swiper-pagination {
  position: unset;
  margin-top: 10px;
}

.sec-institute .swiper-pagination-bullet-active {
  background-color: var(--clr-primary);
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

@keyframes arrowMove {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(20px);
    opacity: 0;
  }

  50% {
    transform: translateX(-20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .sec-hero .hero-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .sec-hero .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .sec-hero .hero-text h1 {
    font-size: 30px;
  }

  .sec-hero .hero-image {
    text-align: center;
  }

  .sec-hero .hero-left {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .sec-language .lang-switch span {
    font-size: 3.59vw;
  }

  .sec-hero .hero-text h1 {
    font-size: 6.667vw;
    margin-bottom: 15px;
  }

  .fade-slide .slider-text .slide-ttl {
    font-size: 4.615vw;
    margin-bottom: 1.282vw;
  }

  .software .package-card {
    margin-block: 6.41vw 8.974vw;
  }

  .package-card .card-shadow {
    padding: 6.41vw 3.846vw;
    width: 100%;
  }

  .package-card .software-detail {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    margin-bottom: 5.128vw;
  }

  .package-card .software-text .icon-ttl-gp {
    justify-content: center;
    margin-bottom: 3.846vw;
  }

  .package-card .software-text .software-ttl {
    font-size: 5.641vw;
  }

  .package-card .software-image {
    max-width: 41.026vw;
  }

  .package-card .software-features {
    grid-template-columns: 1fr;
    gap: 3.077vw;
    margin-bottom: 6.41vw;
  }

  .thumb-btn-prev,
  .thumb-btn-next {
    font-size: 4.103vw;
  }

  /* status section */
  .sec-status .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5.128vw 0;
    padding: 7.692vw 3.846vw;
    border-radius: 3.846vw;
    justify-items: unset;
  }

  .sec-status .stat-info p {
    font-size: 3.077vw;
  }

  .sec-status .stat-item {
    padding-left: clamp(0px, 11.598vw - 44.072px, 45px);
  }

  .sec-status .stat-item:nth-of-type(2n) {
    margin-left: 7.692vw;
  }

  /* Application Section */
  .sec-app.app {
    margin-top: 3.077vw;
  }

  .sec-app .app-ttl {
    font-size: 4.615vw;
  }

  .app-swiper-slide {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .app-swiper-slide .app-text {
    max-width: 100%;
  }

  .app-text ul {
    text-align: left;
  }

  .app-swiper-slide .app-image {
    max-width: 71.795vw;
    margin-inline: auto;
  }

  .sec-app .store-buttons img {
    max-width: 30.769vw;
  }

  .thumb-nav-wrapper {
    display: none;
  }

  .menu-swiper .swiper-slide {
    font-size: 3.333vw;
    padding: 2.051vw 1.282vw;
  }

  .software-text .icon-ttl-gp img {
    max-width: 8.974vw;
  }

  /* Services Section */
  .service {
    grid-template-columns: 1fr;
    gap: 5.128vw;
  }

  .service .service-card {
    padding: 3.846vw;
  }

  .service-card .card-ttl,
  .service-card .card-ttl h3,
  .timeline-step .step-title {
    font-size: 4.615vw;
  }

  .timeline-step .step-number {
    font-size: 4.103vw;
  }

  /* Institute Section */
  .sec-institute .package-card {
    padding: 3.846vw;
  }

  .sec-institute .course-ttl {
    font-size: 4.103vw;
    padding-block: 1.282vw;
  }

  .sec-institute .course-info {
    text-wrap: wrap;
    gap: 1.282vw 2.564vw;
    font-size: 3.077vw
  }

  .institute-txt .card-lang .lang {
    font-size: 3.077vw;
  }

  /* Career Section */
  .sec-carrier .career-card {
    flex-direction: column;
    padding: 6.41vw 3.846vw;
    gap: 3.846vw;
    margin-top: 5.128vw;
  }

  .sec-carrier .career-card:nth-child(2) {
    flex-direction: column-reverse;
  }

  .sec-carrier .career-img {
    max-width: 41.026vw;
    margin-inline: auto;
  }

  .sec-carrier .career-ttl {
    font-size: 4.615vw;
    margin-bottom: 3.077vw;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .sec-status .stat-item:nth-of-type(2n) {
    margin-left: unset;
  }
}
