* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica', sans-serif;

}

/* Import Noto Sans JP for Japanese Characters */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); */

/* Default font for all elements */
/* * {
  font-family: 'Noto Sans', 'Montserrat', sans-serif;
} */

/* Japanese font applied only when body has 'japanese' class */
/* body.japanese .polyglot,
body.japanese [data-polyglot],
body.japanese h1,
body.japanese h2, 
body.japanese h3,
body.japanese p,
body.japanese span,
body.japanese li,
body.japanese button,
body.japanese div {
  font-family: 'Noto Sans', 'Helvetica', sans-serif !important;
}

/* English font explicitly applied when body has 'english' class */
/* body.english .polyglot,
body.english [data-polyglot],
body.english h1,
body.english h2,
body.english h3,
body.english p,
body.english span,
body.english li,
body.english button,
body.english div {
  font-family: 'Montserrat', 'Helvetica', sans-serif !important;
}  */

body {
  background-color: #f8f8f8;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  z-index: 50;
  padding: 0 2rem;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-container .logo img {

  height: 40px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #2a2a2a;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
}

.navbar-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.navbar-menu li a {
  font-size: 18px;
  font-family: 'Helvetica', sans-serif;
}

.navbar-menu li span {
  font-size: 13px;
}

.nav-link:hover {
  color: #666;
}

/* 
.navbar-dropdown {
    position: relative;
} */

/* .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
} */

.Language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-button {
  background: transparent;
  border: 1px solid #e0e0e0;
  color: #2a2a2a;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 400;
}

.lang-button:hover {
  background: #f0f0f0;
}

.lang-button.active {
  background: #2a2a2a;
  color: #ffffff;
  border-color: #2a2a2a;
}


.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #2a2a2a;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hide full text on mobile, show abbreviated */
.lang-button .full-text {
  display: inline;
}

.lang-button .short-text {
  display: none;
}

.dropdown {
  position: relative;
  max-width: 138px;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-icon {
  transition: transform 0.3s ease;
  width: 16px;
  height: 16px;
}

.dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown.active .dropdown-trigger {
  background-color: rgba(225, 225, 225, 1);
  padding: 8px 12px;
}

.dropdown.active span[data-polyglot="nav.company.sub"] {
  background-color: rgba(225, 225, 225, 1);
  padding: 0 0 0 12px;
}

.dropdown.active span[data-polyglot="nav.recruit.sub"] {
  background-color: rgba(225, 225, 225, 1);
  padding: 0 0 0 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(225, 225, 225, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  height: fit-content;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  width: 137px;
}

.dropdown.active .recruit {
  width: 120px;
}

/* .dropdown-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.dropdown-subtitle {
    margin: 0 0 20px 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
} */

.dropdown-list {
  list-style: none;
  padding: 21px 0 14px 12px;
  margin: 0;
}

/* .dropdown-list li {
    margin-bottom: 12px;
} */

.dropdown-list li:last-child {
  margin-bottom: 0;
}

.dropdown-list li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-weight: 400;
}

.dropdown-list li a:hover {
  background-color: #000;
  color: #fff;
  border-left-color: #fff;
  margin-right: 16px;
}

.navbar-menu li.dropdown {
  z-index: 1001;
}







.section-1 {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
  position: relative;
}

.content-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 1rem;
}

.content-container h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  letter-spacing: -0.025em;
  line-height: 1.2;

  color: rgb(0, 0, 0);
  word-wrap: break-word;
}

.section-1 .background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5;
}

section.section-2 {
  height: 657px;
  width: 100vw;
}

section.section-2 .container {
  width: 100%;
  margin-top: 120px;
  margin-left: 200px;
  padding: 36px 33px;
}

section.section-2 header.hero h1 {
  margin: 0 0 6px 0;
  font-size: 34px;
  letter-spacing: 0.2px;
  font-weight: bold;
}

section.section-2 p.subtitle {
  margin: 0;
  color: rgba(128, 128, 128, 1);
  font-weight: bold;
  font-size: 12px;
  font-family: 'Helvetica', sans-serif;
}

section.section-2 .content {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  align-items: flex-start;
}

section.section-2 .left {
  flex: 1;
  min-width: 260px;
}

section.section-2 a.tag {
  padding: 12px 20px;
  font-weight: 600;
  cursor: default;
  min-width: auto;
  width: 22px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #070707;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

section.section-2 .row {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

section.section-2 .label {
  width: 110px;
  font-size: 14px;
  color: rgb(77, 77, 77);
}

section.section-2 .value {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(128, 128, 128, 1);
}

section.section-2 .right {
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22.4px;
}

section.section-2 .feature {
  display: flex;
  gap: 18.54px;
  align-items: center;
  width: 700px;
}

section.section-2 a.tag {
  text-align: center;
  padding: 8px 12px;
  color: rgba(128, 128, 128, 1);
  font-weight: 100;
  cursor: default;
  min-width: 235px;
  text-align: center;
  border-color: rgba(128, 128, 128, 1);
}

section.section-2 .feature p {
  margin: 0;
  font-size: 13px;
  color: rgba(128, 128, 128, 1);
  line-height: 1.4;
}



.section-3 {
  padding-top: 100px;
  height: 351.52px;
  width: 100%;
  background: url('building.png') no-repeat center center #00000091;
}

.business-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.business_inner {
  text-align: center;

}

.business_inner .titles {
  margin-bottom: 100px;
}

.business_title {
  margin: 0;
  color: rgba(246, 246, 246, 1);
  font-size: 44px;
  line-height: 1;
  font-weight: bolder;
  letter-spacing: 0.2px;

}

.business_subtitle {
  margin: 8px 0 18px 0;
  font-size: 12px;
  text-transform: none;
  opacity: 0.95;
  color: rgba(246, 246, 246, 1);
  text-wrap: wrap;
}

.business_line {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(246, 246, 246, 1);
}





.section-4 {
  height: 1110.93px;
  width: 100%;
  margin-top: 100px;
  position: relative;
}

.section-4 .background {
  position: absolute;
  top: 100px;
  background-color: black;
  width: 100vw;
  z-index: -1;
  height: 85%;
  margin-top: 71px;
}

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

.section-4 .network-section {
  margin-left: 182px;
}

.section-4 .network-section h1 {
  color: #000;
  font-size: 44px;
  font-weight: bold;
  margin: 0;
}

.section-4 .network-section span {
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-4 .container .cards-section {
  display: flex;
  gap: 50px;
}

.section-4 .container .cards-section .divider-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.section-4 .cards-section .divider-1 .cards:nth-child(2) {
  background-color: rgba(77, 77, 77, 1);
}

.section-4 .cards-section .divider-1 .cards:nth-child(2) .card-left .country,
.section-4 .cards-section .divider-1 .cards:nth-child(2) .card-left h1,
.section-4 .cards-section .divider-1 .cards:nth-child(2) .card-left .postal,
.section-4 .cards-section .divider-1 .cards:nth-child(2) .card-left .address,
.section-4 .cards-section .divider-1 .cards:nth-child(2) .card-left .phone {
  color: white;
}

.section-4 .container .cards-section .divider-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 120px;
}

.section-4 .cards-section .divider-2 .cards:nth-child(1) {
  background-color: rgba(77, 77, 77, 1);
}

.section-4 .cards-section .divider-2 .cards:nth-child(1) .card-left .country,
.section-4 .cards-section .divider-2 .cards:nth-child(1) .card-left h1,
.section-4 .cards-section .divider-2 .cards:nth-child(1) .card-left .postal,
.section-4 .cards-section .divider-2 .cards:nth-child(1) .card-left .address,
.section-4 .cards-section .divider-2 .cards:nth-child(1) .card-left .phone {
  color: white;
}

.section-4 .container .cards {
  width: 554.609985454px;
  height: 362.5498434px;
  display: flex;
  background-color: white;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.45);
}

.section-4 .container .cards .card-left {
  margin: 32px;
  flex: 1;
}

.section-4 .container .cards .card-left a {
  color: rgba(51, 166, 171, 1);
  text-decoration: none;
}

.section-4 .container .cards .card-left .country {
  margin-bottom: 48px;
  font-size: 12px;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
}

.section-4 .container .cards .card-left h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #000;
}

.section-4 .container .cards .card-left .postal {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.section-4 .container .cards .card-left .address {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.section-4 .container .cards .card-left .phone {
  margin-bottom: 50px;
  font-size: 14px;
  color: #333;
}

.section-4 .container .cards .card-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.read-more-container {
  display: flex;
  gap: 3px;
  align-items: center;
}

.read-more-container svg{
      margin-top: 2.00000000013px;
}

/* Hide carousel controls by default */
.carousel-container {
  display: none;
}

.carousel-navigation {
  display: none;

}


/* Specific margins for individual cards under 326px */
.section-4 .carousel-card:nth-child(1) {
  margin-left: 112px !important;
}

.section-4 .carousel-card:nth-child(2) {
  margin-left: -20px !important;
}

.section-4 .carousel-card:nth-child(3) {
  margin-left: -6px !important;
}

.section-4 .carousel-card:nth-child(4) {
  margin-left: 1px !important;
}

.carousel-card .card-left h3 {
  font-size: 14px !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
}



.carousel-card .card-left p {
  font-size: 11px !important;
  line-height: 1.4 !important;
  margin-bottom: 4px !important;
}

.carousel-card .card-right {
  min-width: 60px !important;
  height: 60px !important;
}

/* .carousel-wrapper {
    gap: 8px !important;
  } */




.section-5 {
  height: 269.52px;
  width: 100vw;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


.news-container {
  display: flex;
  width: 700px;
  font-family: Arial, sans-serif;
}


/* Left side */
.news-left {
  flex: 1;
  padding: 15px;
  margin-bottom: 28px;
}


.news-left h2 {
  font-size: 31px;
}


.news-left p {
  margin: 5px 0 15px;
  font-size: 11px;
  font-weight: bold;
}


.news-left a {
  background-color: transparent;
  padding: 10px 34px;
  border: 1px solid #000;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  width: 180px;
}


/* Right side */
.news-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}


.news-right .news-text {
  color: rgba(128, 128, 128, 1);
}

.news-right .news-date {
  color: rgba(51, 51, 51, 1);
}

.news-item:first-child {
  border-top: 1px solid #999;
}

.news-item {
  display: flex;
  padding: 8px 15px;
  font-size: 13px;
  border-bottom: 1px solid #999;
}


.news-item:last-child {
  border-bottom: 1px solid #999;
}


.news-date {
  width: 100px;
  font-weight: bold;
}


.news-text {
  flex: 1;
  color: #333;
}



.section-6 {
  height: 825px;
  width: 100%;
  background-color: black;
}

.section-6 .text {
  color: white;
  text-align: center;
  padding: 100px 20px 0 20px;

}

.section-6 .cards {
  display: flex;
}

.section-6 .cards .card {
  background-color: #1a1a1a;
  color: white;
  width: 396px;
  height: 441px;
  margin: 90px auto;
  padding: 20px;
  box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-6 .cards .card:nth-child(1) {
  background-image: url('image1.png');
}

.cards .card:nth-child(2) {
  background-image: url('image2.png');

}

.section-6 .cards .card:nth-child(3) {
  background-image: url('image3.png');
}

.section-6 .cards .card:nth-child(4) {
  background-image: url('image4.png');
  margin-top: 150px;
}

.section-6 .cards .card:nth-child(5) {
  background-image: url('image5.png');
}

.section-6 .cards .card:nth-child(2),
.section-6 .cards .card:nth-child(4) {
  margin-top: 150px;
}

/* Style the container div */
.section-6 .cards .card div {
  margin-top: 350px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Style the span text */
.section-6 .cards .card div span {
  color: rgba(51, 166, 171, 1);
  font-size: 14px;
  font-weight: 500;
  z-index: 3;
}

/* Style the SVG */
/* .section-6 .cards .card div svg {
    width: 6px;
    height: 8px;
    flex-shrink: 0;
} */

/* Hover effect */

.section-6-carousel-container {
  display: none;
}

.section-6-carousel-navigation {
  display: none;
}


.section-7 {
  width: 100vw;
  padding: 90px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-7 .vision-pattern {
  margin: 0 auto;
  max-width: 1186px;
}

.section-7 .vision-pattern p {
  margin-top: 20px;
  color: #7b7b7b;
  letter-spacing: 2px;
  /* keep the line in one row */
}




.footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 20px;
}

.footer-column h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 1);
}

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

.footer-column ul li {
  font-size: 13px;
  margin: 4px 0;
  color: rgba(255, 255, 255, 1);
}

.footer-social {
  grid-column: 1 / 2;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  grid-column: 2 / 3;
  justify-self: center;
}

.footer .icons_ {
  /* center the whole row within the footer like footer-top */
  max-width: 1000px;
  margin: 20px auto 0;

  /* layout: left socials | centered logo | empty spacer */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  padding: 16px 0;
}

.footer .icons_ i img {
  height: 26.5px;
  width: 26.5px;
}

.footer-logo img {
  max-height: 40px;
  width: auto;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  padding: 36px 0 0px 0;
}

.icons_ {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* center the logo block */
  padding: 16px 20px;
}

/* Section 6 Read More Button Override - All Breakpoints */
/* .section-6-carousel-card .card-content .read-more-btn,
.section-6-carousel-card .read-more-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(51, 166, 171, 1) !important;
  background-color: rgba(255, 255, 255, 1) !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 12px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
}

.section-6-carousel-card .card-content .read-more-btn:hover,
.section-6-carousel-card .read-more-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.section-6-carousel-card .read-more-btn svg {
  margin-left: 4px !important;
} */