* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}

#main-header {
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
  transition: top 0.3s ease;
}
.mobile-logo,
.menu-toggle {
  display: none;
}

.menu-toggle {
  flex-direction: column;
  cursor: pointer;
  z-index: 2000;
  margin-left: auto;
}
.bar {
  width: 30px;
  height: 3px;
  background-color: #ff8c00;
  margin: 4px 0;
  transition: 0.4s;
  border-radius: 2px;
}
.menu-toggle.is-active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}
.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active-link {
  color: #ff8c00;
  border-bottom: 2px solid #ff8c00;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -5px;
}
h1.logo-top {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}
.logo-line {
  width: 100%;
  max-width: 180px;
  height: 3px;
  background-color: #ff8c00;
  margin: 5px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.logo-bottom {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 4px;
  display: block;
  text-shadow: 0 2px 5px rgba(255, 255, 255, 0.9);
}

.technology {
  position: relative;
  width: 100%;
  height: 135vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
}
.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.9);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.1)
  );
  pointer-events: none;
}

.hero-bg-title {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9vw;
  font-weight: 900;
  z-index: 5;
  margin: 0;
  width: 100%;
  padding: 0 40px;
  line-height: 1;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.title-word-wrapper {
  display: block;
  white-space: nowrap;
  margin-bottom: 20px;
}

.hero-subtitle-small {
  display: block;
  font-size: 2.5vw;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-large {
  display: block;
  font-size: 5.5vw;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-top: 5px;
}

.filled-text {
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.half-s-start,
.half-s-end {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  z-index: 2;
}
.half-s-start {
  background-image: linear-gradient(90deg, transparent 50%, #ffffff 50%);
}
.half-s-end {
  background-image: linear-gradient(90deg, #ffffff 50%, transparent 50%);
}
.half-s-start::before,
.half-s-end::before {
  content: attr(data-letter);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 3px #ffffff;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.training {
  padding: 80px 20px;
  background-color: #fff;
  min-height: auto;
}
.training-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}
.training-content {
  flex: 1;
  max-width: 600px;
}
.training-content h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #333;
  text-transform: uppercase;
}
.text-orange {
  color: #ffa736;
}
.training-content p {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 40px;
  font-weight: 400;
}
.training-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand-icon {
  width: 30px;
  height: auto;
}
.training-brand span {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a1a;
}
.training-img-box {
  flex: 1.2;
  display: flex;
  justify-content: flex-end;
}
.training-img-box img {
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.phone {
  padding: 80px 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  min-height: auto;
}
.phone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  width: 100%;
  background: linear-gradient(to right, #f5b754 45%, #ffa736 45%);
  border-radius: 30px;
  padding: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 600px;
}
.phone-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.phone-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
  transform: rotate(-5deg);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}
.phone-info {
  flex: 1.2;
  padding: 60px 80px 60px 40px;
  text-align: right;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.phone-info h2 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
  text-transform: uppercase;
}
.phone-info p {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 600px;
}
.phone-icons-row {
  display: flex;
  gap: 20px;
}
.p-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.industrial-solutions-text {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}
.industrial-solutions-text .hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.industrial-solutions-text .hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.overlay-blue {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-text h3 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.cta-text h1 {
  font-size: 90px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  line-height: 0.9;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.footer-end {
  background-color: #ffffff;
  padding: 60px 20px 20px 20px;
  color: #333;
  border-top: 4px solid #ff8c00;
  position: relative;
  z-index: 50;
  font-size: 0.9rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col {
  flex: 1;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-icon {
  width: 50px;
  height: auto;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  color: #1a1a1a;
  text-transform: uppercase;
}
.footer-logo-text .subtitle {
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 14px;
  margin-top: 2px;
}
.footer-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 25px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  display: inline-block;
  min-width: 200px;
}
.footer-info p,
.footer-links li a {
  text-transform: uppercase;
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li a {
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}
.footer-links li a:hover {
  color: #ff8c00;
}
.footer-copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  #main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #0e0e0e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  .mobile-logo {
    display: block;
    width: 40px;
    height: auto;
    z-index: 2001;
  }
  .mobile-logo img {
    width: 100%;
    height: auto;
  }
  .menu-toggle {
    display: flex;
    position: static;
    margin: 0;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #0e0e0e;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-right: 40px;
    padding-top: 70px;
    transition: 0.5s ease-in-out;
    z-index: 1000;
    gap: 0;
  }
  nav.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }
  nav .logo {
    display: none;
  }

  .nav-links {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    text-align: right;
  }
  .nav-links.left {
    margin-bottom: 40px;
  }
  .nav-links a {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover {
    border-bottom: 2px solid #ff8c00;
  }

  .hero-bg-title {
    font-size: 13vw;
  }
  .hero-subtitle-small {
    font-size: 3.5vw;
  }
  .hero-subtitle-large {
    font-size: 7.5vw;
  }

  .training-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .training-brand,
  .training-img-box {
    justify-content: center;
  }
  .training-content h2 {
    font-size: 42px;
  }

  .phone-card {
    flex-direction: column;
    padding: 0;
    height: auto;
    background: linear-gradient(to bottom, #f5b754 50%, #ffa736 50%);
  }
  .phone-visual img {
    transform: rotate(0);
  }
  .phone-info {
    align-items: flex-end;
    text-align: right;
    width: 100%;
    padding: 40px 60px;
  }
  .phone-icons-row {
    justify-content: flex-end;
  }

  .cta-text h1 {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  #main-header {
    top: 0;
  }

  .hero-bg-title {
    font-size: 10vw;
    top: 30%;
    text-align: center;
  }
  .hero-subtitle-small {
    font-size: 3.5vw;
  }
  .hero-subtitle-large {
    font-size: 5vw;
  }

  .half-s-start::before,
  .half-s-end::before {
    -webkit-text-stroke: 2px #ffffff;
  }

  .technology {
    height: 60vh;
    min-height: 400px;
  }

  .phone-visual {
    width: 100%;
    padding: 60px 20px 40px 20px;
  }
  .phone-visual img {
    max-width: 250px;
  }
  .phone-info {
    width: 100%;
    padding: 20px 30px 60px 30px;
    align-items: center;
    text-align: center;
  }
  .phone-info h2 {
    font-size: 28px;
  }
  .phone-info p {
    font-size: 16px;
  }
  .phone-icons-row {
    justify-content: center;
  }

  .cta-text h3 {
    font-size: 20px;
  }
  .cta-text h1 {
    font-size: 48px;
  }
  .industrial-solutions-text {
    min-height: 60vh;
  }

  .footer-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
    align-items: center;
  }
  .footer-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-left {
    gap: 30px;
  }
  .footer-logo-box {
    flex-direction: column;
  }
  .footer-heading {
    display: block;
    width: 100%;
    text-align: center;
  }
}
