.display-1 {
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: clamp(5rem, 9vw, 7rem);
  text-transform: uppercase;
}

.display-2 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 4rem);
  color: #19345a;
  text-transform: uppercase;
}

.display-3 {
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  color: #19345a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  overscroll-behavior-y: none;
}
body.loaded {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.full-width-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.navbar {
  background: #0b1426;
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
  transform: translateY(-100%);
  max-width: 1920px;
  margin: 0 auto;
}
.navbar.scrolled {
  transform: translateY(0);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1600px) {
  .navbar .container {
    max-width: 1600px;
  }
}
.navbar .navbar-brand .logo-img {
  height: 55px;
  width: auto;
}
.navbar .navbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar .navbar-center .event-date {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navbar .nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #4EAADF !important;
}

.navbar-logo-fixed {
  position: fixed;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  transition: opacity 0.3s ease;
}
.navbar-logo-fixed .logo-img {
  height: 55px;
  width: auto;
}
.navbar-logo-fixed.hidden {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 576px) {
  .navbar-logo-fixed {
    left: calc(50% - 270px + 1rem);
    transform: none;
  }
}
@media (min-width: 768px) {
  .navbar-logo-fixed {
    left: calc(50% - 360px + 1rem);
  }
}
@media (min-width: 992px) {
  .navbar-logo-fixed {
    left: calc(50% - 480px + 1rem);
  }
}
@media (min-width: 1200px) {
  .navbar-logo-fixed {
    left: calc(50% - 570px + 1rem);
  }
}
@media (min-width: 1400px) {
  .navbar-logo-fixed {
    left: calc(50% - 660px + 1rem);
  }
}
@media (min-width: 1600px) {
  .navbar-logo-fixed {
    left: calc(50% - 800px + 1rem);
  }
}

.hero-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  transition: opacity 0.2s ease-out;
  opacity: 1;
  background: radial-gradient(ellipse 120% 80% at 30% 50%, rgba(126, 104, 86, 0.3) 0%, rgba(25, 52, 90, 0.2) 40%, transparent 70%), radial-gradient(ellipse 100% 60% at 70% 30%, rgba(0, 138, 180, 0.25) 0%, rgba(25, 52, 90, 0.15) 50%, transparent 80%), linear-gradient(to right, #7e6856 0%, color-mix(in srgb, #7e6856 70%, #19345a 30%) 15%, color-mix(in srgb, #7e6856 40%, #19345a 60%) 30%, #19345a 45%, #19345a 55%, color-mix(in srgb, #19345a 80%, #008ab4 20%) 70%, color-mix(in srgb, #19345a 60%, #008ab4 40%) 85%, #008ab4 100%);
  background-blend-mode: overlay, multiply, multiply, normal;
}
.hero-section .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease-in 5s forwards;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 20, 38, 0.8) 0%, rgba(27, 42, 71, 0.6) 50%, rgba(25, 52, 90, 0.7) 100%);
  background-blend-mode: overlay;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .hero-section .hero-overlay {
    padding-left: 0rem;
  }
}
.hero-section .hero-content {
  text-align: left;
  color: #FFFFFF;
  max-width: 1200px;
  padding: 3rem 2rem;
  margin-left: 0;
  position: relative;
}
.hero-section .hero-content .hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(5rem, 9vw, 7rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  animation: slideInUp 1.2s ease-out 0.3s forwards;
  word-break: normal;
  overflow-wrap: normal;
}
.hero-section .hero-content .hero-subtitle {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease-out 0.8s forwards;
}
.hero-section .hero-content .hero-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.8s ease-out 1.3s forwards;
}
.hero-section .hero-content .hero-date .date-label {
  font-size: 1.25rem;
  letter-spacing: 1px;
  opacity: 0.8;
  font-style: 400;
}
.hero-section .hero-content .hero-date .date-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 800;
  border: 1px solid #FFFFFF;
  color: #D4A85A;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulseGlow 3s ease-in-out 2.5s infinite;
}

.main-content {
  margin-top: 100vh;
  padding: 0;
  position: relative;
  z-index: 10;
}
.main-content .container-fluid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1600px) {
  .main-content .container-fluid {
    max-width: 1600px;
  }
}

.hero-text-section {
  padding: 4rem 0 6rem;
  position: relative;
  background-color: #F8F9FA;
}
.hero-text-section .scroll-indicator {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #0B1426;
  font-size: 2rem;
  font-weight: bold;
  padding: 0.5rem;
  z-index: 15;
  pointer-events: none;
  animation: pulseArrow 2s infinite ease-in-out;
}
@media (max-width: 768px) {
  .hero-text-section .scroll-indicator {
    display: none;
  }
}
@media (max-width: 1200px) {
  .hero-text-section .scroll-indicator {
    right: 1rem;
  }
}
.hero-text-section .display-1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #0B1426;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  line-height: 1.1;
  opacity: 1;
  transition: transform 0.6s ease-out;
}
.hero-text-section .hero-text-grid {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 3rem 1rem;
  scroll-behavior: smooth;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, black 90%, transparent 100%);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  scrollbar-width: none;
}
.hero-text-section .hero-text-grid::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .hero-text-section .hero-text-grid {
    flex-direction: column;
    gap: 0rem;
    margin-top: 2rem;
    padding: 0 1rem 1rem;
    width: 100%;
    overflow-x: visible;
  }
}
.hero-text-section .hero-text-item {
  flex: 0 0 460px;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-text-section .hero-text-item {
    flex: 1 1 auto;
    width: 100%;
  }
}
@media (max-width: 992px) and (min-width: 769px) {
  .hero-text-section .hero-text-item {
    flex: 0 0 400px;
  }
}
.hero-text-section .hero-text-item .hero-text-image {
  width: 100%;
  padding-bottom: 60%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-text-section .hero-text-item .hero-text-content {
  flex: 1;
  padding-top: 1rem;
}
.hero-text-section .hero-text-item .hero-text-headline {
  font-family: "Montserrat", sans-serif;
  color: #19345a;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero-text-section .hero-text-item .hero-text-separator {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #4EAADF 0%, #19345a 100%);
  margin-bottom: 1.5rem;
}
.hero-text-section .hero-text-item .hero-text-subtitle {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.7;
  margin-bottom: 0;
}
.hero-text-section .hero-text-item .hero-text-subtitle strong {
  color: #0B1426;
  font-weight: 600;
}

.sections-grid {
  background-color: #FFFFFF;
}
.sections-grid .row {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.sections-grid .section-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: auto;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.sections-grid .section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.sections-grid .section-card .card-content {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.sections-grid .section-card .card-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
.sections-grid .section-card .card-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.sections-grid .section-card .card-content .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.sections-grid .section-card .card-content .card-link i {
  transition: transform 0.3s ease;
}
.sections-grid .section-card .card-content .card-link:hover i {
  transform: translateX(5px);
}
.sections-grid .section-card.superyacht-village {
  background: linear-gradient(135deg, #7e6856 0%, #7e6856 90%);
  color: #FFFFFF;
}
.sections-grid .section-card.superyacht-village .card-link {
  color: #FFFFFF;
}
.sections-grid .section-card.superyacht-village .card-link:hover {
  color: rgb(95.7, 178.5, 226.2);
}
.sections-grid .section-card.new-build-hub {
  background: linear-gradient(135deg, #19345a 0%, rgb(33.5869565217, 69.8608695652, 120.9130434783) 100%);
  color: #FFFFFF;
}
.sections-grid .section-card.new-build-hub .card-link {
  color: #4EAADF;
}
.sections-grid .section-card.new-build-hub .card-link:hover {
  color: #FFFFFF;
}
.sections-grid .section-card.innovation-corner {
  background: linear-gradient(135deg, #B7D489 0%, rgb(175.1962732919, 207.3394409938, 124.2105590062) 100%);
  color: #2C3E50;
}
.sections-grid .section-card.innovation-corner .card-link {
  color: #19345a;
}
.sections-grid .section-card.innovation-corner .card-link:hover {
  color: #0B1426;
}
.sections-grid .section-card.refit-repair {
  background: linear-gradient(135deg, #A6A6A3 50%, rgb(211.39, 211.39, 209.92) 100%);
  color: #2C3E50;
}
.sections-grid .section-card.refit-repair .card-link {
  color: #19345a;
}
.sections-grid .section-card.refit-repair .card-link:hover {
  color: #0B1426;
}
.sections-grid .section-card.equipment {
  background: linear-gradient(135deg, #4EAADF 0%, rgb(52.5086124402, 157.7583732057, 218.3913875598) 100%);
  color: #FFFFFF;
}
.sections-grid .section-card.equipment h3 {
  color: #FFFFFF;
}
.sections-grid .section-card.equipment .card-link {
  color: #FFFFFF;
}
.sections-grid .section-card.equipment .card-link:hover {
  color: rgb(131.1, 195.5, 232.6);
}

.site-footer {
  color: #FFFFFF;
  padding: 4rem 0 2rem;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 15;
  background: radial-gradient(ellipse 120% 80% at 30% 50%, rgba(126, 104, 86, 0.3) 0%, rgba(25, 52, 90, 0.2) 40%, transparent 70%), radial-gradient(ellipse 100% 60% at 70% 30%, rgba(0, 138, 180, 0.25) 0%, rgba(25, 52, 90, 0.15) 50%, transparent 80%), linear-gradient(to right, #7e6856 0%, color-mix(in srgb, #7e6856 70%, #19345a 30%) 15%, color-mix(in srgb, #7e6856 40%, #19345a 60%) 30%, #19345a 45%, #19345a 55%, color-mix(in srgb, #19345a 80%, #008ab4 20%) 70%, color-mix(in srgb, #19345a 60%, #008ab4 40%) 85%, #008ab4 100%);
  background-blend-mode: overlay, multiply, multiply, normal;
}
@media (min-width: 1600px) {
  .site-footer .container {
    max-width: 1600px;
  }
}
.site-footer h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.site-footer p {
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.site-footer .footer-logo {
  text-align: right;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .site-footer .footer-logo {
    text-align: center;
    margin-top: 3rem;
  }
}
.site-footer .footer-logo img {
  max-width: 350px;
  height: auto;
  opacity: 0.9;
}
.site-footer .footer-divider {
  border-color: white;
  margin: 3rem 0 2rem;
}
.site-footer .copyright {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}
.site-footer .footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  justify-content: flex-end;
}
.site-footer .footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.site-footer .footer-links a:hover {
  opacity: 1;
  color: #D4A85A;
}
.site-footer .social-icons {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}
.site-footer .social-icons a {
  color: #FFFFFF;
  font-size: 2rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.site-footer .social-icons a:hover {
  color: #D4A85A;
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes waveAnimation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1440px 0;
  }
}
.wave-separator {
  background-color: transparent;
  height: 100px;
  max-height: 100px; /* Increased height for better visibility */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3e%3cpath fill='%23FFFFFF' fill-opacity='1' d='M0,50C120,90,240,10,360,50C480,90,600,10,720,50C840,90,960,10,1080,50C1200,90,1320,10,1440,50L1440,100L0,100Z'%3e%3c/path%3e%3c/svg%3e");
  rotate: 0deg; /* Flip the wave to face upwards */
  z-index: 2; /* Ensures it overlaps the video but stays below other content */
  opacity: 0.9;
  background-repeat: repeat-x; /* Repeat the wave horizontally */
  animation: waveAnimation 5s linear infinite; /* Add animation for wave motion */
  position: relative; /* Ensure it aligns properly with the next section */
  margin-bottom: 0px; /* Overlap slightly to remove gaps */
  background-position: bottom; /* Align the image to the bottom of the div */
}
@media screen and (max-width: 1440px) {
  .wave-separator {
    height: 70px; /* Adjust height for smaller screens */
  }
}
@media screen and (max-width: 1080px) {
  .wave-separator {
    height: 50px; /* Adjust height for smaller screens */
  }
}
@media screen and (max-width: 768px) {
  .wave-separator {
    height: 30px; /* Adjust height for smaller screens */
  }
}

.key-facts-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 4rem 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 0px; /* Overlap slightly to remove gaps */
}
.key-facts-section .display-1 {
  position: relative;
  z-index: 1;
}
.key-facts-section .fact-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 2rem;
  transition: none;
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: translateY(60px);
  transition: transform 0.6s ease-out;
}
.key-facts-section .fact-card:hover {
  transform: none;
  box-shadow: none;
}
.key-facts-section .fact-card .fact-number {
  font-weight: 800;
}
.key-facts-section .fact-card .fact-label {
  font-size: 1.2rem;
  opacity: 0.9;
}
.key-facts-section .fact-card i {
  color: #4EAADF;
}
.key-facts-section .row .col-md-4:nth-child(2) {
  position: relative;
}
.key-facts-section .row .col-md-4:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(25, 52, 90, 0.7);
  z-index: 10;
}
.key-facts-section .row .col-md-4:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(25, 52, 90, 0.7);
  z-index: 10;
}

@media (max-width: 992px) {
  .navbar-center {
    display: none;
  }
  .hero-content .hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
  }
  .hero-overlay {
    padding-left: 1rem;
  }
  .sections-grid .section-card {
    height: auto;
  }
  .sections-grid .section-card .card-content {
    padding: 2rem;
  }
  .sections-grid .section-card .card-content h3 {
    font-size: 1.5rem;
  }
  .site-footer .footer-links {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
  }
  .site-footer .social-icons {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .hero-overlay {
    padding-left: 1rem;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
    padding: 2rem 1rem;
    margin-left: 0;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
  }
  .sections-grid .section-card {
    height: auto;
  }
  .sections-grid .section-card .card-content {
    padding: 1.5rem;
  }
  .sections-grid .section-card .card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  .sections-grid .section-card .card-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .site-footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  .site-footer .footer-logo {
    margin-top: 2rem;
  }
  .site-footer .footer-links,
  .site-footer .social-icons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-section .container {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .hero-section .hero-content .hero-title {
    font-size: clamp(3.5rem, 5vw, 3.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
  .hero-section .hero-content .hero-date .date-text {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
}
/* Contact form input fields inherit background color */
.contact-form-section {
  background: rgba(248, 249, 250, 0.9);
  padding: 4rem 0;
}
.contact-form-section h2 {
  color: #0B1426;
  margin-bottom: 2rem;
}
.contact-form-section input.form-control,
.contact-form-section select.form-select,
.contact-form-section textarea.form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #2C3E50;
  color: #2C3E50;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.contact-form-section input.form-control::placeholder,
.contact-form-section select.form-select::placeholder,
.contact-form-section textarea.form-control::placeholder {
  color: #6C757D;
}
.contact-form-section input.form-control:focus,
.contact-form-section select.form-select:focus,
.contact-form-section textarea.form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #0B1426;
}
.contact-form-section textarea.form-control {
  border: 1px solid #2C3E50;
  min-height: 150px;
}
.contact-form-section textarea.form-control:focus {
  border-color: #0B1426;
}
.contact-form-section label {
  color: #2C3E50;
  font-weight: bold;
}
.contact-form-section .btn {
  background: transparent;
  color: #0B1426;
  border: 1px solid #0B1426;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  transition: all 0.3s ease;
}
.contact-form-section .btn:hover {
  background: #0B1426;
  color: #FFFFFF;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(212, 168, 90, 0.3);
  }
  to {
    text-shadow: 0 0 30px rgba(212, 168, 90, 0.6), 0 0 40px rgba(212, 168, 90, 0.4);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroTitleBold {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pulseArrow {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }
}
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
