<<<<<<< HEAD
/* Navbar container */
.navbar {
  background-color: white;
  border-bottom: 1px solid #e5e7eb; /* Tailwind's gray-200 */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem; /* roughly py-3 px-6 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem; /* matches inline style */
}

/* Logo */
.logo img {
  height: 40px;
  display: block;
}

/* Menu */
.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #374151; /* Tailwind gray-700 */
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu li a:hover,
.menu li a:focus {
  color: #22c55e; /* Tailwind green-500 */
  outline: none;
}

/* CTA Button */
.cta-button {
  background-color: #22c55e; /* Tailwind green-500 */
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.25rem; /* roughly py-2 px-5 */
  border-radius: 9999px; /* fully rounded */
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #16a34a; /* Tailwind green-600 */
  outline: none;
}

/* Responsive tweaks - optional */
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .menu {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* --- Scrolling Message Section --- */

/* Animation Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.globe-spin {
  animation: spinY 20s linear infinite;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}


/* Scrolling Wrapper */
.scrolling-wrapper {
  display: inline-flex;
  animation: scroll 5s linear infinite;
  will-change: transform;
  white-space: nowrap;
  gap: 4rem; /* space between message spans */
  font-weight: 500;
  font-size: 1.125rem; /* text-lg */
  color: #4b5563; /* Tailwind gray-700 */
}
#globeViz {
  width: 100%;
  height: 600px;
  margin: 0 auto;
  display: block;
  background: transparent; /* transparent instead of black */
}

=======
/* Navbar container */
.navbar {
  background-color: white;
  border-bottom: 1px solid #e5e7eb; /* Tailwind's gray-200 */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem; /* roughly py-3 px-6 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem; /* matches inline style */
}

/* Logo */
.logo img {
  height: 40px;
  display: block;
}

/* Menu */
.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #374151; /* Tailwind gray-700 */
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu li a:hover,
.menu li a:focus {
  color: #22c55e; /* Tailwind green-500 */
  outline: none;
}

/* CTA Button */
.cta-button {
  background-color: #22c55e; /* Tailwind green-500 */
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.25rem; /* roughly py-2 px-5 */
  border-radius: 9999px; /* fully rounded */
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #16a34a; /* Tailwind green-600 */
  outline: none;
}

/* Responsive tweaks - optional */
@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .menu {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* --- Scrolling Message Section --- */

/* Animation Keyframes */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.globe-spin {
  animation: spinY 20s linear infinite;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}


/* Scrolling Wrapper */
.scrolling-wrapper {
  display: inline-flex;
  animation: scroll 5s linear infinite;
  will-change: transform;
  white-space: nowrap;
  gap: 4rem; /* space between message spans */
  font-weight: 500;
  font-size: 1.125rem; /* text-lg */
  color: #4b5563; /* Tailwind gray-700 */
}
#globeViz {
  width: 100%;
  height: 600px;
  margin: 0 auto;
  display: block;
  background: transparent; /* transparent instead of black */
}

>>>>>>> 6e7306167f253ab91fb25cc7f4c5a208785c930f
