.hero-container {
  min-height: 100vh;
  background: linear-gradient(#fff7eb, #ffffff);
  display: flex;
  align-items: center;
}

.heroContent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.heroTextBox {
  flex: 1 1 300px;
}

.heroText {
  font-size: 3.25rem;
  color: #01204e;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: -3px 0 0 #faaa68, -6px 0 8px rgba(0, 0, 0, 0.2);
}

.highlightedText {
  color: #fff7eb;
  background-color: #01204e;
  padding: 0 0.5rem;
  box-shadow: 0 8px 0 #028393, 0 16px 0 #f65625, 0 32px 0 #faaa68;
  display: inline-block;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .heroContent {
    margin-top: 250px;
  }

  .heroText {
    font-size: 2rem;
  }

  #modelview1 {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    aspect-ratio: auto;
    min-height: 250px;
  }
}

@media (max-width: 992px) {
  .heroContent {
    margin-top: 250px;
  }
}

.hero-container {
  min-height: 100vh;
  background: linear-gradient(#fff7eb, #ffffff);
  display: flex;
  align-items: center;
}

.heroContent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.heroTextBox {
  flex: 1 1 300px;
}

.heroText {
  user-select: none;
  font-size: 3.25rem;
  font-weight: 700;
  color: #01204e;
  line-height: 1.3;
  text-shadow: -3px 0 0 #faaa68, -6px 0 8px rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease;
}

.heroText:hover {
  cursor: pointer;
}

.highlightedText {
  user-select: none;
  color: #fff7eb;
  background-color: #01204e;
  padding: 0 0.5rem;
  text-shadow: -3px 0 0 #faaa68, -6px 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 0 #028393, 0 16px 0 #f65625, 0 32px 0 #faaa68;
  display: inline-block;
  transition: transform 0.3s ease;
}

.highlightedText:hover {
  transform: translateX(10px);
}

#modelview1 {
  flex: 1 1 400px;
  min-height: 300px;
  border-radius: 50px;
  animation: float 4s ease-in-out infinite;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modelview1 model-viewer {
  width: 100%;
  height: 100%;
  animation: float 4s ease-in-out infinite;
}

.learnMoreBtn {
  font-size: 1.125rem;
  color: #000000c9;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  padding-top: 25px;
}

.learnMoreBtn:hover {
  cursor: pointer;
  transform: translateX(10px);
  text-decoration: underline;
}

.modelviewbox {
  background: #ffffff;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Mobile responsiveness
@media (max-width: 768px) {
  .heroText {
    font-size: 2rem;
  }

  #modelview1 {
    flex: 1 1 100%;
    margin-top: 1.5rem;
    aspect-ratio: auto;
    min-height: 250px;
  }
}

/*#modelview2 {
  position: absolute;
  right: 52%;
}

#modelview3 {
  position: absolute;
  left: 52%;
}

model-viewer {
  animation: float 4s ease-in-out infinite;
}*/

/*@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 1200px) {
  .heroContent {
    margin-top: 5%;
    width: 42%;
  }

  .heroText {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
}

@media (max-width: 992px) {
  #modelview1 {
    display: none;
  }

  .heroContent {
    width: auto;
    margin-top: 200px;
    margin-right: 100px;
    text-align: center;
  }

  .heroText {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    text-align: center;
  }

  .heroText {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 576px) {
  .heroContent {
    max-width: auto;
  }

  .heroText {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-left: 50px;
  }

  .highlightedText {
    box-shadow: 0 4px 0 #028393, 0 8px 0 #f65625, 0 16px 0 #faaa68;
  }

  #LearnMoreBtn {
    margin-left: 35px;
  }
}

