
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar li {
  margin-left: 20px;
}

.navbar  a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #f39c12;
}

.hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to right, #f39c12, #d35400);
  color: white;
  animation: fadeIn 1s ease-in;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn {
  background: #fff;
  color: #d35400;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #fceae0;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease;
  }
  
  .about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }
  
  .about-section p.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  .delay {
    transition-delay: 0.5s;
  }
  
 
  
  ul.fade-in li {
    opacity: 1;
    transform: translateY(0);
  }
  .testimonials blockquote {
    margin: 20px auto;
    font-style: italic;
    background: #fff3e6;
    padding: 15px 20px;
    border-left: 4px solid #f39c12;
    max-width: 700px;
  }
  
  /* Make buttons and text scale on smaller screens */
@media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar ul {
      flex-direction: column;
      width: 100%;
      padding-left: 0;
      margin-top: 10px;
    }
  
    .navbar li {
      margin: 10px 0;
    }
  
    .hero {
      padding: 60px 15px;
    }
  
    .hero h1 {
      font-size: 2.2rem;
    }
  
    .hero p {
      font-size: 1.1rem;
    }
  
    .about-section {
      padding: 60px 15px;
    }
  
    .about-section h1 {
      font-size: 2rem;
    }
  
    .about-section p {
      font-size: 1rem;
    }
  
    .testimonials blockquote {
      padding: 10px 15px;
      font-size: 0.95rem;
    }
  
    .btn {
      display: block;
      margin: 10px auto;
      font-size: 1rem;
      padding: 10px 15px;
      width: 80%;
      max-width: 250px;
    }
  
    ul li {
      font-size: 1rem;
      padding-left: 0;
      text-align: left;
    }
  }
  
  /* Extra small screens (phones) */
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .navbar {
      padding: 1rem;
    }
  
    .navbar .logo {
      font-size: 1.3rem;
    }
  
    .about-section h1 {
      font-size: 1.6rem;
    }
  
    .about-section p {
      font-size: 0.95rem;
    }
  
    .btn {
      font-size: 0.95rem;
    }
  }
  

   /* Screenshot Section */
   .screenshots {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #fff3e0;
  }
  
  .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 {
    background-color: #ffe0b2;
    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;
  }
  
  /* Footer */
  footer {
    background-color: #ff7043;
    color: white;
    text-align: center;
    padding: 1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }
  
    .hero-section h2 {
      font-size: 2rem;
    }
  
    .screenshots h3,
    .contact-info h3 {
      font-size: 1.5rem;
    }
  
    .screenshot-gallery img {
      width: 90%;
    }
  }
