/* styles.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container2 {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  height:fit-content;
  display: flex;
  justify-content: space-between;
}

.container3 {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color:#f9f9f9;
}

.hero {
  display: flex;
  justify-content: space-between;
  padding: 2rem 1rem;
  background-color: #ffffff;
  text-align: center;
}

.hero-text h2 {
  font-size: 2.5rem;
}

.hero-text h3 {
  padding:1rem;
  text-align: center;
  font-size: 1.7rem;
  color: #0073e6;
}

.hero-text p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

.hero-image img {
  max-width: 200px;
  height: auto;
  margin-right:50px;
  margin-left:50px;
}

.hero-image .hero-img-prototype {
  max-width: 450px;
}

.hero-image .hero-img-bio {
  max-width: 300px;
}

.hero-img-print {
  max-width: 400px;
  max-height:300px;
  border-radius: 15px;
}

.image-overlay-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-overlay-container img {
  display: block;
}

/* Container for stacked overlay boxes */
.overlay-box-container-left {
  position: absolute;
  top:5%;
  left:-150px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space between boxes */
  align-items: flex-start;
}

/* Container for stacked overlay boxes */
.overlay-box-container-left2 {
  position: absolute;
  top: 10%;
  left:-20px;
  display: flex;
  flex-direction: column;
  gap: 4rem; /* space between boxes */
  align-items: flex-start;
}

.overlay-box-container-left3 {
  position: absolute;
  top: 60%;
  left:60px;
  display: flex;
  flex-direction: column;
  gap: 4rem; /* space between boxes */
  align-items: flex-start;
}

.overlay-box-container-right {
  position: absolute;
  top: 10%;
  margin-right: 50px;
  right:-20px;
  display: flex;
  flex-direction: column;
  gap: 4rem; /* space between boxes */
  align-items: flex-end;
}

.overlay-box {
  background: rgba(0, 193, 243, 0.01);
  color: #0f172a;
  padding: 6px 8px;
  border-radius: 10px;
  max-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 0.7rem;
  line-height: 1.4;
}


.overlay-box-1 {
  background: rgba(0, 193, 243, 0.01);
  color: #0f172a;
  padding: 6px 8px;
  border-radius: 10px;
  max-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 0.7rem;
  line-height: 1.4;
}


.overlay-box h4, .overlay-box-1 h4 {
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #007bff;
}

/* Start hidden */
.overlay-box,
.overlay-box-1 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

/* Fade + slide up when hero is visible */
.hero.in-view .overlay-box {
  opacity: 1;
  transform: translateY(0);
}

.hero.in-view .overlay-box-1 {
  opacity: 1;
  transform: translateY(0);
}

/* Slight delay for layered animation */
.hero.in-view .overlay-box:nth-child(1) {
  transition-delay: 0.2s;
}
.hero.in-view .overlay-box:nth-child(2) {
  transition-delay: 0.4s;
}
.hero.in-view .overlay-box:nth-child(3) {
  transition-delay: 0.6s;
}
.hero.in-view .overlay-box:nth-child(4) {
  transition-delay: 0.8s;
}


/* Responsive stacking for mobile */
@media (max-width: 900px) {
  
  .overlay-box, .overlay-box-1 {
    display: none;
  }
}



.button-spacer {
  margin-top: 2rem;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  width:100%;
  justify-content: center;
  align-items: center;
}

.button-wrapper p {
  width:95%;
  justify-content: space-evenly;
  text-align: left;
  margin: 0 auto;
  margin-top:30px;
  padding:10px;
  background-color: #f1f1f1;
  border-radius: 15px;
}

.stat-section {
  position: relative;
  display: flex;
  width: 100%;
  height: 250px;
  align-items: center;
  justify-content: center;
  background-color: #0073e6;
}

.stat-wrapper{
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1500px;
  height: 250px;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stat-title {
  font-size: 1.2rem;
  text-align: center;
  color: white;
  line-height: 1.4;
}

.stat-year {
  position:absolute;
  top:1rem;
  left:13%;
  font-size: 1.2rem;
  text-align: center;
  color: white;
  line-height: 1.4;
}

.counter {
  font-variant-numeric: tabular-nums;
  font-weight: bold;
}

.outer-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 2.7rem;
  padding: 10px;
  width: 100%;
  max-width: 1100px;
  justify-content: left;
  color:#0073e6;
}

.section-wrapper h4 {
  font-size: 2rem;
  margin-top:20px;
}

.section-wrapper h5 {
  font-size: 1.5rem;
  margin-top:20px;
}

.section-wrapper h6 {
  font-size: 1rem;
  margin-bottom:20px;
  color:rgb(117, 117, 117);
}

.section-wrapper p{
  margin-top:25px;
  font-size: 0.9rem;
  color:black;
}

model-viewer {
  --progress-bar-color: transparent;
  justify-content: center;
  align-items:center;
  width:100%;
  height:300px;
}

.quote-button {
  margin-top: 2rem;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  border: 2px solid transparent;
}

.quote-button:hover, .general-button:hover, .material-button:hover {
  background-color: white;
  color: #007bff;
  border: 2px solid #007bff;
}


.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 450px; /* set fixed or min height */
}

.hero-slider .hero {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-slider .hero.active {
  opacity: 1;
}

.hero-slider .hero.hprev {
  transform: translateX(-100%); /* slide out left */
}

.hero-slider .hero.hnext {
  transform: translateX(100%); /* slide out right */
}

.hero-slider .hero.enter-right {
  transform: translateX(0); /* slide in from right */
}

.hero-slider .hero.enter-left {
  transform: translateX(0); /* slide in from left */
}

.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width:100px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.arrow-hero {
  cursor: pointer;
  font-size: 0.75rem;
  color: #bebebe;
  padding: 5px 10px;
  user-select: none;
}

.arrow-hero:hover {
  color:white;
  background-color:rgb(0, 191, 243);
}

.arrow-hero.hprev {
  margin-right: 10px;
}
.arrow-hero.hnext {
  margin-left: 10px;
}


.dot-background {
  background-color: #ccc;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dots {
  display: flex;
  gap: 8px;
  color:white;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  transition: opacity 0.3s;
  cursor: pointer;
}

.dots span.active {
  opacity: 1;
  background: #007BFF;
}

.support-label{
  margin-top: 25px;
}

.support-icons{
  font-size: 1.25rem;
}

.general-section {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 350px;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: rgb(255, 255, 255);
}

.service-section {
  position: relative;
  display: flex;
  width: 100%;
  height: 350px;
  justify-content: center;
  background: linear-gradient(to right, rgba(98, 0, 255, 0.5), rgba(0, 43, 214, 0.5));
}

.service-wrapper{
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1920px;
  height: 350px;
  background-image:  
  url("../content/imgs/index1.webp");
  background-size: 100%;           /* Scale image to 50% width */
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
  justify-content: center;
}

.general-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  width: 100%;
}

.general-text {
  flex: 1;                /* Each column takes equal width */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 250px;
  text-align: center;
  color:rgb(0, 0, 0);
}

.general-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: black;
}

.white-title {
  position: relative;
  font-size: 1.25rem;
  padding: 10px 15px;
  font-weight: bold;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  display: inline-block;
  z-index: 0;
}

.general-benefits {
  padding: 0;
  color:black;
  text-align: left;
}

.general-benefits li {
  margin-bottom: 0.2rem;
  color:black;
  font-size: 1rem;
  margin-left:70px;
}

.general-benefits-grey {
  padding: 10px;
  color:black;
  text-align: justify;
  background-color: #f1f1f1;
}

.general-benefits-grey li {
  margin-bottom: 0.2rem;
  color:black;
  font-size: 1rem;
  margin-left:0;
  text-align: left;
}

/* CTA band */
.svc-band{position: relative;border-radius:16px;border:1px solid #e2e8f0; color:black; width: 90%;;max-width:1100px; margin:0 auto; margin-top:20px; margin-bottom:20px;
  padding:22px;display:flex;align-items:center;justify-content:space-between;gap:18px;background:#fff
}
.svc-btn{display:inline-flex;text-align: center;align-items:center;gap:10px;padding:12px 16px;border-radius:12px;border:1px solid #e2e8f0;font-weight:600;text-decoration:none}
.svc-primary{background:#0a7aff;border-color:#0a7aff;color:#fff}
.svc-primary:hover{filter:brightness(.95)}

@media (max-width: 900px) {
  .svc-band {
      flex-direction: column;
      align-items: flex-start;
      width:90%;
      margin-top:30px;
  }

}

.model-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  position: relative;
}

.bubble-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-bubble {
  background-color: #007BFF;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}

.material-section {
  position: relative;
  display: flex;
  width: 100%;
  height: 350px;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: black;
}

.material-wrapper{
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1920px;
  height: 350px;
  background-image: linear-gradient(to bottom, black 0%, transparent 10%),
  linear-gradient(to top, black 0%, transparent 10%),
  linear-gradient(to right, transparent 90%, black 100%),
  url("../content/imgs/index2.webp");
  background-size: 50%;           /* Scale image to 50% width */
  background-repeat: no-repeat;
  background-position: left;
  background-color: rgb(0, 0, 0);
  align-items: center;
  justify-content: center;
}

.material-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  width: 90%;
}

.material-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:40px;
  height: 200px;
}

.general-button, .material-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  border: 2px solid transparent;
}

.service-button {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  background-color: white;
  color: #007bff;
  border: 2px solid #007bff;
}

.revolver-container {
  width: 400px;
  height: 200px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.revolver {
  height: 120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  overflow: hidden;
  position: relative;
  gap: 10px;
}

.material-item {
  transition: all 0.3s;
  opacity: 0.8;
  font-size: 0.7rem;
  color: white;
}

.material-item.center {
  font-size: 1rem;
  font-weight: bold;
  opacity: 1;
}

.arrow {
  color: white;
  font-size: 0.9rem;
  padding: 4px 8px;
  margin: 5px 0;
  cursor: pointer;
  border-radius: 4px;
  user-select: none;
}
.arrow:hover {
  background:#007BFF;
}

.features {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  width: 300px;
}


.material-row {
  display: flex;
  flex-wrap: wrap;
  align-items: left;
  gap: 15px;
  margin-left:15px;
}

.features-inline {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.feature-bubble {
  background: #00ff2f;
  color: rgb(0, 0, 0);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight:bold;
  white-space: nowrap;
  opacity: 0;
  animation: fadeInBubble 0.4s ease-out forwards;
}

@keyframes fadeInBubble {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.general-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.model-layout {
  display: flex;
  align-items: top;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  width: 90%;
  margin-top: 50px;
}

.model-text {
  flex: 1;                /* Each column takes equal width */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  text-align: justify;
  color:rgb(0, 0, 0);
}

.model-text p{
  background-color: #f1f1f1;
  padding:10px;
  min-height: 120px;
}

.model-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: black;
  border-bottom: 3px solid rgb(0, 191, 243);
}

.products-section {
  position: relative;
  display: flex;
  width: 100%;
  height: 350px;
  justify-content: center;
}

.products-wrapper{
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1920px;
  height: 350px;
  background-image:  
  url("../content/imgs/mat6.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  align-items: center;
  justify-content: center;
}

.products-section2 {
  position: relative;
  display: flex;
  width: 100%;
  height: 350px;
  justify-content: center;
  background: white;
}

.products-wrapper2{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  height: 350px;
  background-image:  
  url("../content/imgs/mat6.webp");
  background-size: 100%;           /* Scale image to 50% width */
  background-repeat: no-repeat;
  background-position:center;
  align-items: center;
  justify-content: center;
}

.prod-title {
  position: relative;
  font-size: 1.25rem;
  padding: 10px 15px;
  font-weight: bold;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 105, 243, 0.7);
  border-radius: 10px;
  display: inline-block;
  z-index: 0;
}

.icon-wrapper {
  display: flex;
  flex-direction: row;
  gap:25px;
}

.img-icon {
  max-width:40px;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.img-icon2 {
  max-width:50px;
  transition: transform 0.6s ease;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  background-color: rgb(0, 0, 0);
}

.img-icon:hover {
  transform: scale(1.2);
}

.img-icon-c img {
  width:50px;
}

img.img-icon-d {
  filter: blur(10px) !important;
}

#sub-form {
  align-items: flex-start;
  justify-content: center;
}

.contact-form {
  padding: 2rem 1rem;
  background-color: #fff;
  max-width: 1100px;
  height: fit-content;
  margin:0 auto;
}

.contact-form h2 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #111;
  text-align: left;
}

.contact-form label {
  margin-top: 1rem;
}

.g-recaptcha {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: row;
  max-width: 1000px;
  gap:50px;
  margin: auto;
  justify-content: space-evenly;
  align-items: center;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.75rem;
  border: none;
  background-color: #0073e6;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.form-column {
  display:flex;
  flex-direction: column;
  text-align: left;
  width:450px;
  height: fit-content;
}


.info-columns {
  display: flex;
  justify-content: space-around;
  padding: 2rem 5rem;
  background-color: #f1f1f1;
  text-align: center;
}

.info-columns2 {
  display: flex;
  justify-content: space-around;
  gap:50px;
  padding: 2rem 5rem;
  background-color: #f1f1f1;
  text-align: center;
  max-width:1920px;
}

.info {
  max-width: 300px;
}

.info-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.6s, color 0.6s;
  border-radius: 10px;
  padding:10px;
}

.info-link:hover {
  background: #007bff;
  color:white
}

.logo-scroll-section {
  height: 250px;
  background-color: #eee;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-scroll-section h2 {
  position:absolute;
  top:1rem;
  left:13%;
  font-size: 1rem;
  color: #969696;
}

.logo-scroll-wrapper {
  display: flex;
  flex-direction: row;
  max-width: 1500px;
  overflow: hidden;
  position: relative;
  align-items: center;
  width: 100%;
  height:250px;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.logo-set {
  display: flex;
}

.logo-track img {
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s, filter 0.3s;
  margin-left: 25px;
  margin-right: 25px;
}

.logo-track img:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin: 0 5px;
  text-align: center;
}

.logo-item img {
  max-width: 80px;
  height: auto;
  margin-bottom: 8px;
  filter: brightness(1) contrast(1);
  transition: transform 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.05);
}


/* CONTACT PAGE */

.invite {
  width: 100%;
  max-width: 500px;
}

.contact-title, .invite-title, .about-title{
  font-size: 2rem;
  color:#0073e6;
  font-weight: bold;
}


#googlemap {
  top:5px;
  height: 300px; /* Adjust the height as needed */
  width: 90%;
  max-width: 800px; /* Set a maximum width for responsiveness */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* ABOUT PAGE */
.container4 {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

/* Timeline Section */
.timeline-section {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  padding: 1rem;
  border-radius: 10px;
}

.timeline-title {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #007bff;
}

.timeline {
  position: relative;
  border-left: 3px solid #007bff;
  padding-left: 25px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 25px;
}

.timeline-dot {
  position: absolute;
  top: 6px;
  left: -11px;
  width: 16px;
  height: 16px;
  background-color: #007bff;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #007bff;
}

.timeline-content h3 {
  font-size: 1rem;
  color: #007bff;
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 0.8rem;
  margin: 0;
  color: #333;
  line-height: 1.5;
}


.about-content {
  flex: 1;
  background-color: #f8fafc;
  min-width: 300px;
  max-width: 700px;
  padding: 1rem;
  border-radius: 10px;
}

.about-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #007bff;
  text-align: center;
}

.about-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

.container2-invite{
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
  height:fit-content;
  display: flex;
  gap:25px;
  justify-content: space-between;
}

.invite-text {
  margin-top: 30px;
  font-weight: bold;
  color: #007bff;
  font-size: 1rem;
}

.img-card{
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
}


/* Scroll to Top Button */
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  background-color: #007bff;
  color: white;
  border: none;
  outline: none;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 10px;
  width: fit-content;
  height: fit-content;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

#scrollTopBtn.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- ORDER PROCESS ABBREVIATION --- */
.order-abbr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 20px 0 30px 0;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  flex-wrap: wrap;
}

.order-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 auto;
}

.step-num {
  background: #007bff;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.step-text {
  font-size: 0.85rem;
  line-height: 1.3;
  color: #333;
}

.order-arrow {
  font-weight: 600;
  color: #007bff;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

@media (max-width: 600px) {
  .order-abbr, .order-step, .step-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .order-arrow {
    display: none;
  }

  .order-step {
    gap: 8px;
    text-align: left;
  }

  .step-text strong {
    margin-right: 5px;
  }
}

/* =========================================================
   RESPONSIVE STYLING FOR MOBILE DEVICES
========================================================= */

/* === GLOBAL RESET ADJUSTMENTS === */
@media (max-width: 1024px) {

  .hero-slider {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 700px;
  }

  .hero-img {
    height:300px !important;
    padding:20px !important;
  }

  .hero-img-print {
    padding:20px;
  }

  .hero-img-bio {
    height:250px !important;
    padding:20px;
  }


  .container,
  .container2,
  .container3 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .container2-invite {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

}

/* === HERO SECTION === */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    padding:0px;
    gap: 20px;
  }

  .hero-slider .hero {
    height:unset;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text h3 {
    font-size: 1.4rem;
  }

  .hero-image img {
    max-width: 250px;
    margin: 0;
  }

  .hero-img-prototype {
    max-width: 400px !important;
  }

  .hero-img-print, .hero-img-bio {
    max-width: 300px !important;
    height: auto;
  }

  .button-wrapper p {
    font-size: 0.8rem;
  }

  .general-section, .general-layout, .general-benefits {
    position: relative;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    justify-content: center;
    width: 90%;
    margin:0 auto;
  }

  .revolver-container{
    width: 90%;
  }

    .container2-invite {
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
    }

    .model-text {
      width: 90%;
    }
  
}

/* === STAT SECTION === */
@media (max-width: 900px) {
  .stat-section,
  .stat-wrapper {
    flex-direction: column;
    height: auto;
    padding: 20px 10px;
    gap: 15px;
  }

  .stat-year {
    position: static;
    order: -1;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-title {
    font-size: 1rem;
  }
}

/* === GENERAL / MATERIAL / SERVICE SECTIONS === */
@media (max-width: 900px) {
  model-viewer {
    --progress-bar-color: transparent;
    top:0;
    justify-content: center;
    align-items:center;
    width:150px;
    height:200px;
  }

  .info-bubble{
    font-size: 0.5rem;
  }

  .general-layout,
  .material-layout {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .general-text,
  .material-text {
    height: fit-content;
    text-align: center;
    gap:20px;
  }

  .general-benefits li,
  .general-benefits-grey li {
    margin-left: 20px;
    font-size: 0.7rem;
  }

  .general-title,
  .white-title {
    font-size: 1rem;
  }

  .service-wrapper,
  .material-wrapper {
    height: auto;
    background-size: cover;
    background-position: center;
  }
}

/* === MODEL SECTION === */
@media (max-width: 900px) {
  .model-layout {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 90%;
  }

  .model-text {
    height: auto;
  }

  .model-text p {
    font-size: 0.9rem;
    min-height: auto;
  }
}

/* === PRODUCT SECTION === */
@media (max-width: 900px) {
  .products-wrapper {
    height: auto;
    background-size: contain;
  }

  .icon-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .prod-title {
    font-size: 1.25rem;
  }
}

/* === CONTACT FORM === */
@media (max-width: 900px) {
  .contact-form form {
    flex-direction: column;
    align-items: center !important;
    gap: 20px;
  }

  .form-column {
    width: 100%;
    max-width: 400px;
  }

  .contact-form h2 {
    font-size: 2rem;
    text-align: center;
  }

  #googlemap {
    width: 100%;
    height: 250px;
  }

  .invite {
    margin-right: 0;
    text-align: center;
  }
}

/* === INFO COLUMNS === */
@media (max-width: 900px) {
  .info-columns,
  .info-columns2 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 2rem 1rem;
  }

  .info {
    max-width: 90%;
  }
}

/* === LOGO SCROLL SECTION === */
@media (max-width: 900px) {
  .logo-scroll-wrapper {
    height: 180px;
  }

  .logo-track img {
    max-width: 60px;
    height: 90px;
    margin: 10px;
  }

  .logo-scroll-section h2 {
    font-size: 1rem;
    left: 10%;
  }
}

/* === ABOUT PAGE === */
@media (max-width: 900px) {
  .container4 {
    flex-direction: column;
    align-items: center;
  }

  .timeline-section,
  .about-content {
    max-width: 100%;
    padding: 1rem;
  }

  .timeline-title,
  .about-title {
    font-size: 1rem;
  }
}

/* === DROPDOWN LANGUAGE MENU === */
@media (max-width: 600px) {
  .dropdown-content {
    left: 0;
    right: auto;
  }

  .dropdown-content .lang a {
    padding: 8px;
    font-size: 1rem;
  }
}

/* === NAVIGATION (Stacked Menu for Very Small Screens) === */
@media (max-width: 700px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  li a,
  .dropbtn {
    padding: 10px;
    font-size: 1rem;
  }
}

/* === SCROLL TO TOP BUTTON === */
@media (max-width: 600px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
    font-size: 0.8rem;
    padding: 8px;
  }
}

/* === BUTTONS === */
@media (max-width: 600px) {
  .quote-button,
  .general-button,
  .material-button,
  .service-button {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* =========================================================
   HAMBURGER MENU STYLES
========================================================= */

/* Hide by default on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  background-color: black;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animate when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile layout for navigation */
@media (max-width: 900px) {
  .container {
    flex-direction: row;
  }

  .hamburger {
    display: flex;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }
  nav.open {
    display: flex;
    animation: fadeInDown 0.3s ease forwards;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }

  nav.open {
    display: flex;
    animation: fadeInDown 0.3s ease forwards;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  nav li {
    display: block;
    width: 100%;
    text-align: center;
  }

  nav a {
    padding: 10px;
    display: block;
    width: 100%;
  }
}

/* Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

