html {
  scroll-behavior: smooth;
}
/* from src/assets/base.css */
:root {
  --vt-c-white: #ffffff;
  --vt-c-white-soft: #f8f8f8;
  --vt-c-white-mute: #f2f2f2;

  --vt-c-black: #181818;
  --vt-c-black-soft: #222222;
  --vt-c-black-mute: #282828;

  --vt-c-indigo: #2c3e50;

  --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
  --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
  --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
  --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

  --vt-c-text-light-1: var(--vt-c-indigo);
  --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
  --vt-c-text-dark-1: var(--vt-c-white);
  --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  position: relative;
  font-weight: normal;
}

body {
  min-height: 100vh;
  color: var(--vt-c-text-light-1);
  background: var(--vt-c-white);
  transition: color 0.5s, background-color 0.5s;
  line-height: 1.6;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu,
    Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* from src/assets/main.css */
body {
  background-color: #1a1a1a;
  color: #f4f4f4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #FFD700; /* Gold */
}

/* from src/App.vue */
#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

main {
  flex: 1;
}

/* from src/components/Navbar.vue */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

nav.scrolled {
  background-color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  top: 1rem;
  left: 2rem;
  right: 2rem;
}

.logo a {
  text-decoration: none;
  display: inline-block;
}

.logo-image {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #f4f4f4;
  font-weight: 500;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #f4f4f4;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
    border-radius: 0 0 10px 10px;
    padding: 1rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }
  
  nav {
    padding: 1rem 2rem;
  }

  nav.scrolled {
    left: 1rem;
    right: 1rem;
  }
}

/* from src/components/Hero.vue */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f4f4f4;
  padding-top: 8rem;
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.hero-content {
  padding-left: 10%;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding-top: 6rem;
  }

  .hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    white-space: normal;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .rotating-words {
    width: 12rem;
  }
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #FFD700; /* Gold */
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.rotating-words {
  display: inline-block;
  position: relative;
  text-align: left;
  width: 20rem; /* Adjust as needed */
  vertical-align: top;
}

.word {
  opacity: 0;
  position: absolute;
  width: 100%;
  animation: rotate-word 9.99s linear infinite 0s;
  left:0;
}

.word:nth-child(2) {
  animation-delay: 3.33s;
}
.word:nth-child(3) {
  animation-delay: 6.66s;
}

@keyframes rotate-word {
  0% { opacity: 0; transform: translateY(-30px); }
  5% { opacity: 1; transform: translateY(0px); }
  17% { opacity: 1; transform: translateY(0px); }
  22% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 0; }
}

/* from src/components/Partners.vue */
.partners-container {
  padding: 2rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

.partners-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  white-space: nowrap;
}

.partners-slide {
  display: flex;
  animation: 35s slide infinite linear;
}

.logo-item {
  margin: 0 40px;
  display: inline-block;
}

.logo-item img {
  height: 80px;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .logo-item {
    margin: 0 20px;
  }
  .logo-item img {
    height: 60px;
  }
}

.logo-item:hover img {
  filter: grayscale(0%);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* from src/components/About.vue */
.about {
  padding: 4rem 2rem;
  text-align: center;
}
.about h2 {
  margin-bottom: 2rem;
}
.about-content {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}
.about-text {
  flex: 1;
  text-align: left;
  min-height: 250px;
}
#typed-text {
  font-size: 1.1rem;
  line-height: 1.6;
}
.about-image {
  flex: 1;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 500px;
  position: relative;
}

#gecko-balloon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-20%, -150%);
  background-color: #ffffff;
  padding: 10px 15px;
  border-radius: 15px;
  border: 1px solid #ccc;
  font-family: sans-serif;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.5s;
  color: #000;
}

#gecko-balloon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20%;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
}
.about-image img {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: 8px;
}

#gecko-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}

/* from src/components/Services.vue */
.services {
  padding: 4rem 2rem;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  perspective: 1000px;
  flex-wrap: wrap;
}

.service-card {
  padding: 2rem;
  border: 1px solid #FFD700; /* Gold */
  border-radius: 5px;
  max-width: 300px;
  transform-style: preserve-3d;
  transition: transform 0.1s;
}

@media (max-width: 768px) {
  .services {
    padding: 4rem 1rem;
  }
  .service-card {
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* from src/components/Product.vue */
.products {
  padding: 4rem 2rem;
  text-align: center;
}

.product-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  perspective: 1000px;
}

.product-card {
  padding: 2rem;
  border: 1px solid #FFD700; /* Gold */
  border-radius: 5px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  transition: transform 0.1s;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin-bottom: 0.5rem;
}

.product-card p {
  margin-bottom: 1rem;
}

.product-card .btn {
  margin-top: auto;
  background-color: #FFD700;
  color: #000;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.product-card .btn:hover {
  background-color: #e6c300;
}

@media (max-width: 768px) {
  .products {
    padding: 4rem 1rem;
  }
  .product-card {
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* News Section */
.news {
  padding: 4rem 2rem;
  text-align: center;
}

.news-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  perspective: 1000px;
}

.news-card {
  padding: 1rem;
  border: 1px solid #FFD700; /* Gold */
  border-radius: 5px;
  width: 350px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.1s;
  background-color: #222;
  cursor: pointer;
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

.news-card h3 {
  margin: 0.5rem 0;
  color: #FFD700;
}

.click-to-read {
  color: #ccc;
  font-size: 0.9rem;
  margin-top: auto;
}

.news-card .btn:hover {
  background-color: #e6c300;
}

@media (max-width: 768px) {
  .news {
    padding: 4rem 1rem;
  }
  .news-card {
    max-width: 100%;
    flex-basis: 100%;
  }
}

.view-all-container {
  margin-top: 2rem;
  text-align: center;
}

/* from src/components/Contact.vue */
.contact {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #1a1a1a;
  color: #fff;
}

.contact h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.contact p {
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: #ccc;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  flex-wrap: wrap;
}

.contact-card {
  padding: 2rem;
  border: 1px solid #FFD700; /* Gold */
  border-radius: 5px;
  background-color: #222;
  display: flex;
  flex-direction: column;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #FFD700; /* Gold */
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid #FFD700; /* Gold */
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.submit-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  background-color: #FFD700; /* Gold */
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1.1rem;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #FFFFE0; /* Lighter gold */
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact {
    padding: 4rem 1rem;
  }
}

/* from src/components/Footer.vue */
footer {
  padding: 2rem;
  text-align: center;
  background-color: #333;
  color: #f4f4f4;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 1rem;
  }
}
/* Scroll Fade-in Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}