@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Black_Italic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Bold_Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Light_Italic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Medium_Italic.otf")
    format("opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Panel Sans";
  src: url("../fonts/fonnts.com-Panel_Sans_Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* SUIT Thin */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}

/* SUIT ExtraLight */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

/* SUIT Light */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

/* SUIT Regular */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* SUIT Medium */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

/* SUIT SemiBold */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

/* SUIT Bold */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* SUIT ExtraBold */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

/* SUIT Heavy */
@font-face {
  font-family: "SUIT";
  src: url("../fonts/SUIT-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "SUIT", sans-serif;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: #00f2ea;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  width: 100%;
  z-index: 99999;
  background-color: #000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 150px;
  height: 46px;
}

.nav-links {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.3s ease;
  border-radius: 50px;
}

.nav-link.active {
  color: #fff;
}

.nav-link.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #0ff;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link.active::before {
  opacity: 1;
}

.get-in-touch {
  background: #0ff;
  color: #000 !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.get-in-touch:hover {
  background: #fff;
  color: #000;
}

/* Marquee Banner */

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 3;
}

.marquee-left {
  margin-top: 20px;
}

.marquee:first-of-type {
  top: 12%;
}

.marquee:last-of-type {
  bottom: 12%;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 30s linear infinite;
  display: flex;
  align-items: center;
  width: max-content;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.fade-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, #000, transparent);
  z-index: 999;
}

.fade-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to left, #000, transparent);
  z-index: 999;
}

.content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  font-family: "Panel Sans";
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
}

.plus-icon {
  color: #00f2ea;
  font-size: 12px;
  width: 14px;
  height: 14px;
}

/* Main Content */
.main-content {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.title,
.subtitle {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.title {
  top: 42%;
  font-family: "SUIT";
  font-weight: 800;
}

.subtitle {
  top: calc(42% + 8rem);
  font-size: 30px;
  letter-spacing: -1.5px;
  font-family: "SUIT";
  font-weight: 200 !important;
}

.spline-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 512px;
  height: 512px;
}

spline-viewer {
  width: 100%;
  height: 100%;
}

.title {
  font-size: 90px;
  margin-bottom: 1rem;
  height: 108px;
}

.subtitle {
  font-size: 30px;
  height: 108px;
  color: #fff;
}

.section {
  height: 100vh;
  width: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
}

.section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-content {
  text-align: center;
  z-index: 2;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.mouse-wheel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 283px;
  margin-bottom: 278px;
}

.mouse {
  width: 36px;
  height: 72px;
  border: 2px solid #00f2ea;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDots 3s linear infinite;
}

.dot {
  width: 4px;
  height: 4px;
  background: #e0e0e0;
  border-radius: 50%;
  margin: 18px 0;
}

@keyframes scrollDots {
  0% {
    transform: translateX(-50%) translateY(-48px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.about-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-text {
  font-size: 400px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
  position: absolute;
  font-family: sans-serif;
  text-align: center;
}

.about-text span {
  display: inline-block;
}

.innovation-box {
  width: 280px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  z-index: 2;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.innovation-box::before,
.innovation-box::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.innovation-box::before {
  top: -20px;
  left: -20px;
  border-right: none;
  border-bottom: none;
}

.innovation-box::after {
  bottom: -20px;
  right: -20px;
  border-left: none;
  border-top: none;
}

.innovation-title {
  color: #00f2ea;
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.2;
}

.innovation-subtitle {
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
}

.section-number {
  font-size: 150px;
  color: rgba(255, 255, 255, 0.03);
  font-weight: 900;
  z-index: 1;
  margin-top: 50px;
}

.nav-links .about-active {
  background: rgba(0, 242, 234, 0.1);
  border: 1px solid #00f2ea;
  border-radius: 20px;
  padding: 0.5rem 1rem;
}

html {
  scroll-behavior: smooth;
}

.our-service {
  width: 80%;
  flex-direction: row;
}

.service-title {
  font-size: 72px;
  font-weight: bold;
  margin-bottom: 600px;
  text-align: left;
  min-width: 768px;
}

.service-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-item {
  display: flex;
  flex-direction: row;
  max-width: 1152px;
  min-width: 1152px;
}

.service-number {
  font-size: 72px;
  font-weight: bold;
  color: #00ffff;
}

.service-name {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.service-content {
  width: 240px;
}

.button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00ffff;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 80%;
  text-align: center;
  font-size: 20px;
}

.button:hover {
  background-color: white;
  color: #000;
}

.button.secondary:hover {
  background-color: #00ffff;
  color: #000;
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-title {
    font-size: 3rem;
  }

  .service-number {
    font-size: 6rem;
  }

  .service-name {
    font-size: 2rem;
  }

  .content {
    font-size: 14px; /* 필요에 따라 이 값을 조정하세요 */
  }

  .plus-icon {
    width: 12px;
    height: 12px;
  }
}

.footer {
  background-color: #00ffff;
  color: #000;
  padding: 60px 40px;
  font-family: "SUIT", sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.contact-section h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  margin-bottom: 15px;
}

.contact-section address {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.contact-email {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  text-decoration: none;
  color: #000;
}

.copyright {
  margin-top: 40px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.footer-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  height: 30px;
}

.footer-nav div {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.footer-nav img {
  margin-right: 32px;
}

.footer-nav a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav .get-in-touch {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
}

.spline-viewer {
  width: 100%; /* 부모 요소에 맞춰 100% 크기 */
  height: 400px; /* 기본 높이 */
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav nav {
    flex-direction: column;
  }
}

.about-grid-section {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 40px;
  color: #fff;
  padding-top: 120px;
}

.about-grid-title {
  font-family: "Panel Sans";
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  color: #00ffff;
  margin-bottom: 115px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 40px;
  width: 60%;
  margin: 0 auto;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.number-circle {
  width: 60px;
  height: 60px;
  background-color: #00ffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

.grid-item-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.2;
}

.grid-item-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-weight: 300;
  margin-bottom: 158px;
}

.services-section {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: #000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 40px;
  padding-top: 150px;
}

.services-title {
  color: #00ffff;
  font-family: "Panel Sans" !important;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  min-width: 256px;
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 160px;
  width: 43%;
}

.service-block {
  display: flex;
  flex-direction: column;
  align-items: left;
  max-width: 80%;
  margin: 0 auto;
  width: 100%;
  margin-left: 100px;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
}

.service-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: bold;
}

.service-name-prefix {
  color: #00ffff;
  font-family: "Panel Sans";
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
}

.service-name-suffix {
  color: #00ffff;
  font-family: "Panel Sans";
  font-size: 38px;
  font-style: normal;
  font-weight: 200;
}

.service-description {
  width: 100%;
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: left;
}

.service-button {
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.button-try-demo {
  background-color: #00ffff;
  color: #000;
  border: none;
  max-width: 183px;
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.button-try-demo::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.button-try-demo:hover {
  background-color: #fff;
  padding-right: 48px;
}

.button-try-demo:hover::after {
  right: 20px;
  opacity: 1;
}

.button-learn-more {
  background-color: #00ffff;
  color: #000;
  border: none;
  max-width: 183px;
  position: relative;
  display: inline-block;
  padding: 12px 32px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button-learn-more:hover {
  background-color: #00ffff;
  color: #000;
}

.button-learn-more::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.button-learn-more:hover {
  background-color: #fff;
  padding-right: 48px;
}

.button-learn-more:hover::after {
  right: 20px;
  opacity: 1;
}

.button-coming-soon {
  background-color: #afafaf;
  color: #fff;
  border: none;
  cursor: not-allowed;
  max-width: 183px;
}

.join-description {
  color: #fff;
  text-align: center;
  font-family: "SUIT";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 33.578px; /* 167.891% */
  letter-spacing: -0.6px;
}

.join-description span {
  color: #0ff;
  font-family: "Panel Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 33.578px;
  letter-spacing: -0.6px;
}

#careers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin-bottom: 300px;
  margin-top: 100px;
}

.spline-custom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-container {
  width: 100vw;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-join-our {
  background-color: #00ffff;
  color: #000;
  border: none;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  font-family: "SUIT";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 17.972px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  margin-top: 50px;
}

.button-join-our:hover {
  background-color: #fff;
  color: #000;
}

.button-join-our::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.button-join-our:hover::after {
  right: 20px;
  opacity: 1;
}

.button-join-our:hover {
  background-color: #fff;
  padding-right: 48px;
}

.checkbox-group span {
  font-family: "Panel Sans";
}

@media (max-height: 375px) {
  .nav-links.active {
    gap: 0 !important;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 740px) {
  /* Navigation */
  nav {
    padding: 1rem;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
  }

  .logo img {
    width: 120px;
    height: auto;
  }

  .nav-links {
    display: none; /* Hide desktop navigation on mobile */
  }

  .mobile-nav.active {
    height: 100% !important;
  }

  /* Main Content */
  .title {
    font-size: 32px !important;
    height: auto;
    top: 40% !important;
  }

  .subtitle {
    font-size: 12px !important;
    height: auto;
    top: calc(18% + 8rem) !important;
  }

  .spline-container {
    width: 50%;
    height: 50% !important;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* About Section */
  .about-grid-section {
    width: 100%;
    padding: 20px;
    padding-top: 100px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
    width: 90%;
  }

  .grid-item-title {
    color: var(--color-white-solid, #fff);
    text-align: center;
    font-size: 24.824px !important;
    font-style: normal;
    font-weight: 600 !important;
  }

  .grid-item-description {
    color: var(--color-white-solid, #fff);
    text-align: center;
    font-size: 12.412px;
    font-style: normal;
    font-weight: 300 !important;
    margin-bottom: 40px;
    br {
      display: none;
    }
  }

  /* Services Section */
  .services-section {
    width: 100%;
    padding: 40px 20px;
    flex-direction: column;
  }

  .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon img {
    width: 32px;
    height: 30px;
  }

  .services-title {
    min-width: unset;
    margin-bottom: 40px;
    text-align: center;
    margin-top: 50px;
  }

  .services-container {
    gap: 60px;
    width: auto;
  }

  .service-block {
    min-width: unset;
    max-width: 90%;
    padding-left: 0;
    margin: 0 auto !important;
    margin-top: 50px !important;
    width: auto;
  }

  .service-icon-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .service-name {
    font-size: 24px;
  }

  .service-name-prefix,
  .service-name-suffix {
    font-size: 28px;
  }

  .service-description {
    text-align: center;
    color: #e0e0e0;
    font-family: "SUIT";
    font-size: 14px;
    font-style: normal;
    font-weight: var(--font-weight-500, 500);
    line-height: 24px;
    letter-spacing: -0.28px;
    margin-bottom: 36px;
    br {
      display: none;
    }
  }

  .service-button {
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: "SUIT";
    font-style: normal;
    font-weight: 500;
    font-size: 18px !important;
  }

  .button-coming-soon {
    color: #000;
    text-align: center;
    font-family: "SUIT";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
  }

  .button-join-our {
    font-size: 18px !important;
  }

  .join-description {
    max-width: 296px;
    color: #fff;
    text-align: center;
    font-family: "SUIT";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: -0.42px;
  }

  .join-description span {
    color: var(--short-leadership-819034-framer-app-cyan-aqua, #0ff);
    font-family: var(--font-family-Font-3, "Panel Sans");
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: -0.42px;
  }

  .button-join-our {
    color: var(
      --short-leadership-819034-framer-app-black,
      var(--color-black-solid, #000)
    );
    text-align: center;
    font-family: var(--font-family-Font-1, SUIT);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
  }

  /* Footer */
  .footer {
    padding: 40px 20px;
  }

  .footer-nav {
    display: none;
  }

  /* .footer-nav div {
    flex-direction: column;
    gap: 16px;
  }

  .footer-nav img {
    margin-right: 0;
    margin-bottom: 16px;
  } */

  /* Mouse Wheel */
  .mouse-wheel {
    margin: 40px 0;
  }

  /* Modal */
  .request-modal-content {
    width: 90%;
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .checkbox-group {
    flex-direction: column;
    gap: 10px;
  }
}

/* Additional styles for better mobile UX */
@media (max-width: 480px) {
  /* Main Content */
  .title {
    width: 100%;
    font-size: 44px !important;
    height: auto;
    top: 43% !important;
  }

  .subtitle {
    font-size: 16px !important;
    width: 100%;
    height: auto;
    top: calc(37% + 8rem) !important;
  }

  .spline-container {
    width: 100% !important;
    height: 50% !important;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .grid-item-title {
    font-size: 20px;
  }

  .service-name-prefix,
  .service-name-suffix {
    font-size: 24px;
  }

  .fade-left,
  .fade-right {
    width: 100px;
    z-index: 99999;
  }
}

@media (max-width: 375px) {
  /* Main Content */
  .title {
    font-size: 44px !important;
    height: auto;
    top: 43% !important;
  }

  .subtitle {
    font-size: 16px !important;
    height: auto;
    top: calc(35% + 8rem) !important;
  }

  #footer {
    width: 102%;
  }

  .content {
    font-size: 12px !important; /* Further reduce font size for very small screens */
  }

  .plus-icon {
    width: 10px !important;
    height: 10px !important;
  }

  .marquee {
    height: 30px !important; /* Reduce the height of the marquee */
  }
}

/* 모바일 메뉴 버튼 스타일 */
/* 모바일 메뉴 버튼 스타일 */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1000;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}

.mobile-menu-btn span:first-child {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn span:last-child {
  bottom: 0;
}

/* 메뉴 열린 상태 스타일 */
.mobile-menu-btn.active span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:last-child {
  transform: rotate(-45deg);
  bottom: 9px;
}

.back-arrow {
  display: none;
  background: url("../images/back-arrow.png") no-repeat center;
  width: 24px;
  height: 24px;
}

/* 모바일 네비게이션 스타일 */
@media (max-width: 768px) {
  .back-arrow {
    display: block;
  }

  .mobile-menu-btn {
    display: block;
  }
  .mobile-menu-btn.active {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    padding: 80px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999999899;
    padding: 20px;
    overflow-y: auto;
  }

  .nav-links a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }

  .nav-links a.active {
    border: 1px solid #00f2ea;
    color: #00f2ea;
  }

  .nav-links .get-in-touch {
    background: #00f2ea;
    color: #000;
    font-weight: bold;
    margin-top: 40px;
    padding: 15px 40px;
  }

  .back-arrow {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #00f2ea;
    cursor: pointer;
  }

  .content {
    font-size: 14px; /* Adjust this value as needed */
  }

  .plus-icon {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 1000px) {
  .title {
    font-size: 35px;
  }
  .subtitle {
    font-size: 13px;
  }

  .spline-container {
    width: 50%;
    height: 50%;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .subtitle {
    top: calc(22% + 8rem);
  }

  .section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-content {
    margin-top: 3rem;
  }

  .marquee:first-of-type {
    top: 16%;
  }

  .marquee:last-of-type {
    bottom: 8%;
  }

  .about-grid-section {
    height: 100%;
  }

  .service-block {
    margin: 0 0 0 auto;
  }

  #careers {
    height: 100%;
    margin-bottom: 200px;
  }

  .join-description {
    font-size: 13px !important;
  }

  .join-text-bottom {
    font-size: 13px !important;
  }
}

.join-text-bottom {
  color: #fff !important;
  font-weight: 700 !important;
}
