/* Base Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0f172a;
    color: #fff;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;

    background: #1e293b;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #38bdf8;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #38bdf8;
  }
  
  .hero {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(to right, #0f172a, #1e293b);
  }
  
  .btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #0ea5e9;
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 2s ease-in forwards;
    opacity: 0;
  }
  
  .slide-up {
    animation: slideUp 2s ease-out forwards;
    opacity: 0;
    margin-top: 1rem;
  }
  
  .bounce {
    animation: bounce 2s infinite;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .nav-links {
    display: none;
    flex-direction: column;
    background: #1e293b;
    position: absolute;
    top: 60px;
    right: 0;
    
    width: 100%;
  }

  .nav-links.active {

    display: flex;
  }

     .btn bounce {
      display: block;
      margin: 10px auto;
      font-size: 1rem;
      padding: 10px 15px;
      width: 80%;
      max-width: 250px;
    }

      .btn {
      display: block;
      margin: 10px auto;
      font-size: 1rem;
      padding: 10px 15px;
      width: 80%;
      max-width: 250px;
    }
  
    .menu-toggle {
      display: block;
      font-size: 2rem;
      cursor: pointer;
      color: #fff;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  

   /* Screenshot Section */
   .screenshots {
    padding: 3rem 2rem;
    text-align: center;

  }
  
  .screenshots h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #bf360c;
  }
  
  .screenshot-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .screenshot-gallery img {
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .screenshot-gallery img:hover {
    transform: scale(1.05);
  }
  
  /* Contact Info */
  .contact-info {

    padding: 3rem 2rem;
    text-align: center;
  }
  
  .contact-info h3 {
    font-size: 2rem;
    color: #d84315;
    margin-bottom: 1rem;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  