/* style.css */

/* Fonts and Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #222;
    scroll-behavior: smooth;
  }
  
  /* Loader */
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .loader img {
    width: 100px;
  }
  .loader p {
    font-size: 18px;
    margin-top: 1rem;
  }
  
  /* Navbar */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #000;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  nav .logo {
    height: 40px;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  nav ul li a:hover {
    color: #00b894;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #1a1a1a, #2f2f2f);
    color: white;
    text-align: center;
    padding: 8rem 2rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .cta {
    display: inline-block;
    margin-top: 2rem;
    background-color: #00b894;
    padding: 0.75rem 2rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s;
  }
  .cta:hover {
    background-color: #019875;
  }
  
  /* Sections */
  section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
  }
  section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  /* Coming Soon */
  .coming-soon {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #222;
    color: white;
    border-radius: 10px;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 2rem;
    background-color: #000;
    color: white;
    font-size: 0.9rem;
  }
  