/* General Styling */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4fc; /* Slightly higher contrast off-white */
  color: #080808;
  line-height: 1.6;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(90deg, #4b39ef, #7c72ff);
  color: white;
  box-shadow: 0 2px 8px rgba(75, 57, 239, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #dcd6ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover,
nav a[aria-current="page"] {
  background-color: #a39dff;
  color: #fff;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger div {
  background-color: white;
  height: 3px;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #4b39ef, #a39dff);
  color: white;
  animation: fadeIn 1.5s ease-in-out;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.15);
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin: 8px 0 0;
  font-weight: 300;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

.age-warning {
  font-size: 12px;
  color: #dcd6ff;
  margin-top: 12px;
  font-weight: 400;
  font-style: italic;
}

/* Call to Action Button */
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 36px;
  background: #fff;
  color: #4b39ef;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 0 6px 12px rgba(75, 57, 239, 0.3);
  transition: all 0.3s ease;
  animation: bounceIn 1s ease-in-out;
}

.cta-button:hover {
  background: linear-gradient(90deg, #7c72ff, #4b39ef);
  color: #fff;
  box-shadow: 0 8px 18px rgba(75, 57, 239, 0.5);
}

/* Section Styling */



.about, .features, .assist-bot, .vision, .cta {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 30px;
  color: #2e2e3a;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Headings */
.about h2, .features h2, .assist-bot h2, .vision h2, .cta h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #4b39ef;
}

/* Paragraphs */
.about p, .vision p, .cta p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
}

/* Tick List Styling */
.features ul, .assist-bot ul, .cta ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444454;
}

.features li, .assist-bot li, .cta li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.features li::before, .assist-bot li::before, .cta li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4b39ef;
  font-weight: bold;
}




/* Footer */
footer {
  background-color: #2f2e41;
  color: #cfcfe8;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

footer a {
  color: #a39dff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  margin: 15px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  font-size: 24px;
  color: #a39dff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #4b39ef;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(75, 57, 239, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: #4b39ef;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center; /* Center-align the text */
  }

  nav ul.show {
    display: flex;
  }

  nav a {
    color: white;
    text-align: center;
    font-size: 18px; /* Slightly larger font for better visibility */
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .about h2, .features h2, .assist-bot h2, .vision h2, .cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 16px;
  }

  .about, .features, .assist-bot, .vision, .cta {
    margin: 30px 16px;
    padding: 30px 20px;
  }
}


