
* 
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Universal Box-Sizing Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  background: linear-gradient(90deg, #110235, #130135, #151414);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.5rem;
}

.logo img {
  width: 36px;
  height: 36px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffffd9;
  font-weight: 500;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #c084fc;
}

/* Active Link Animation */
.nav-links a.active {
  color: #df0dd8;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  animation: flow-border 3s linear infinite;
}

@keyframes flow-border {
  0% { box-shadow: 0 0 5px #947dab, 0 0 10px #ac9abe inset; }
  50% { box-shadow: 0 0 15px #b7a8c6, 0 0 25px #ac9abf inset; }
  100% { box-shadow: 0 0 5px #d0bee2, 0 0 10px #e4dbed inset; }
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
}

.login {
  background: #111;
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.login:hover {
  background-color: #2a003f;
  color: #c084fc;
}

.get-started {
  background: linear-gradient(135deg, #1f1b2e, #3c246d);
  color: white;
  padding: 8px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}

.get-started:hover {
  background: linear-gradient(135deg, #2c2544, #4b2e91);
  transform: scale(1.05);
}

/* Social Icons */
.social-icons a {
  color: white;
  margin-left: 1rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #b9a7ff;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

/* MEDIA QUERIES */

/* Tablets and below */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a23, #150531, #000000);
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 15;
  }

  .nav-links.show {
    display: flex;
  }

  .buttons {
    display: none;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .nav-links {
    gap: 15px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .login, .get-started {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    right: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a23, #150531, #000000);
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 15;
  }

  .nav-links.show {
    display: flex;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    z-index: 10;
  }

  .logo {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .nav-links a {
    padding: 10px 15px;
    width: 100%;
  }

  .buttons {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
  }

  .social-icons {
    margin-top: 15px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hamburger {
    right: 1rem;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 1rem;
  }

  .login, .get-started {
    padding: 5px 10px;
    font-size: 0.85rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .social-icons a {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}










body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    background: linear-gradient(180deg, #050012, #120027, #1a0033);
    color: #e5e5e5;
    margin: 0;
    padding: 50px 20px;
  }
  
  h1 {
    padding-top: 50px; 
    color: #ffffff;
    font-family: 'Georgia', serif;
    text-align: left;
    margin-bottom: 30px;
    font-size: 36px;
    letter-spacing: 0.5px;
  }
  
  h2 {
    color: #c5a3ff;
    margin-top: 30px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 22px;
  }
  
  h3 {
    color: #d4bfff;
    margin-top: 20px;
    font-size: 18px;
  }
  
  p, li {
    margin: 10px 0;
    font-size: 16px;
    color: #cfc9de;
  }
  
  ul {
    padding-left: 20px;
  }
  
  a {
    color: #b583ff;
    text-decoration: underline;
  }
  
  a:hover {
    color: #d5aaff;
  }
  
  @media (max-width: 600px) {
    body {
      padding: 80px 20px 20px; /* 100px top to push content below navbar */
    }
    
    h1 {
      padding-top: 0; /* No need for extra padding */
      margin-top: 0;
    }
  
    h2 {
      font-size: 18px;
    }
  
    h3 {
      font-size: 16px;
    }
  
    p, li {
      font-size: 14px;
    }
  }
  




