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

html, body {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  background-color: #FFFFFF;
  color: #0A0A0A;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  height: 40px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #0A0A0A;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #0EC7F0;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
  background: linear-gradient(to bottom right, #FFFFFF, #F0FBFD);
  position: relative;
}

.hero-content {
  z-index: 2;
}

.hero-visual {
  max-width: 400px;
  margin-top: 40px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(10, 10, 10, 0.75);
  margin-bottom: 40px;
}

.cta {
  display: inline-block;
  padding: 16px 36px;
  background: #0EC7F0;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta:hover {
  background: #0AA8D0;
  transform: translateY(-3px);
}

/* STORYTELLING SECTION */
.story {
  text-align: center;
  padding: 120px 20px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.story p {
  font-size: 1.1rem;
  color: rgba(10, 10, 10, 0.85);
}

/* DARK SPLIT SECTION */
.split-dark {
  background: #0A0A0A;
  color: white;
}

/* CTA REPEAT SECTION */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: #FFFFFF;
}

/* FOOTER */
footer {
  background: #0A0A0A;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 40px 20px;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0EC7F0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-visual {
    max-width: 300px;
  }

  .navbar {
    padding: 20px;
  }
}


/* LOTTIE ROW */
.lottie-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .lottie-row {
    flex-direction: column;
    align-items: center;
  }
}

.split-dark {
  background: #0f0f10;
  color: #f6f6f6;
  position: relative;
  z-index: 1;
}

.story {
  padding: 100px 24px;  /* increased padding */
  text-align: left;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story p {
  color: #d6d6d6;       /* brighter for visibility */
  font-size: 1rem;
  line-height: 1.6;
}