body {
  margin: 0;
  font-family: 'Gotham', sans-serif;
  background: #fff;
}

/* ----------- HERO SECTION ----------- */
.hero {
  height: 100vh;
  background: url("Logo_LM/image.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  color: #fff;
  text-align: center;
}

.hero-logo {
  height: 200px;
  margin-bottom: -80px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

    header {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      background: rgba(65, 64, 64, 0.404);
      border-radius: 20px;
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .logo {
      font-family: 'Pacifico', cursive;
      font-size: 1.8rem;
      color: #4ea3f1;
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav ul {
      display: flex;
      gap: 20px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    nav ul li {
      display: block;
      font-size: 1.2rem;
    }

    nav a {
      text-decoration: none;
      color: rgba(12, 10, 10, 0.521);
      font-weight: 500;
    }

.cta-button {
  display: inline-block;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #2563eb;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

/* ----------- ABOUT US ----------- */
.about {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.about h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.about p {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

.about-videos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.about-videos iframe {
  width: 30%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

/* ----------- LOGO STRIPE ----------- */
.logo-stripe {
  background: #fff;
  overflow: hidden;
  padding: 30px 0;
  border-top: 1px solid #eee;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 200px;
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------- BOOKSHELF DIVIDER ----------- */
.bookshelf-divider {
  position: relative;
  text-align: center;
  margin: 40px 0;
  height: 400px;
  background: url("Logo_LM/editng.jpeg") no-repeat center center/cover;
  background-attachment: fixed;
}

.bookshelf-divider .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 42px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  white-space: nowrap;
}

/* ----------- GOALS SECTION ----------- */
.goals {
  background: #fff;
  padding: 100px 100px;
  display: flex;
  flex-direction: column;
}

.goal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.goal.reverse {
  flex-direction: row-reverse;
}

.goal-text {
  flex: 1;
}

.goal-text h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 20px;
}

.goal-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.goal-link {
  font-size: 18px;
  font-weight: bold;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.goal-link:hover {
  color: #1e40af;
}

.goal-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.goal-image img {
  max-width: 50%;
  height: auto;
  border-radius: 12px;
}

.goal-logo {
  max-width: 280px;
  height: 200px;
  margin-bottom: -70px;
}

/* Responsive */
@media (max-width: 900px) {
  .goal, .goal.reverse {
    flex-direction: column;
    text-align: center;
  }
  .goal-image {
    margin-top: 30px;
  }
}

/* ----------- FOOTER ----------- */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #fff;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
}

.social-icons img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* Libra AI Footer Column */
.ai-info {
  text-align: left;
}

.ai-info .ai-logo {
  height: 100px;
  margin-bottom: -40px;
}

.ai-info p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}
