/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222;
    background: #fafafa;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2d6a4f;
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .logo {
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .nav-links a {
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: #95d5b2;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(45, 106, 79, 0.85), rgba(45, 106, 79, 0.85)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1.5s ease forwards;
  }
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.5s ease forwards;
  }
  .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  .btn {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    display: inline-block;
  }
  .btn-primary {
    background-color: #95d5b2;
    color: #2d6a4f;
  }
  .btn-primary:hover {
    background-color: #74c69d;
    transform: scale(1.05);
  }
  .btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
  }
  .btn-secondary:hover {
    background-color: white;
    color: #2d6a4f;
    transform: scale(1.05);
  }
  
  /* Intro Section */
  .intro {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #2d6a4f;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease forwards;
    animation-delay: 1.5s;
  }
  .intro h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .intro p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #2d6a4f;
    color: white;
    margin-top: 3rem;
  }
  
  /* Animations */
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 1.8rem;
    }
    .btn-group {
      flex-direction: column;
    }
    .btn {
      width: 100%;
      max-width: 250px;
    }
    .nav-links {
      gap: 1rem;
    }
  }
  
  .content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    color: #2d6a4f;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease forwards;
  }
  
  .features-list {
    list-style-type: disc;
    margin-left: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  .download-page {
    text-align: center;
  }
  
  .download-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .download-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
  
  .download-buttons img {
    height: 30px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 1.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form label {
    font-weight: 600;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.7rem 1rem;
    border: 1.5px solid #95d5b2;
    border-radius: 8px;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #2d6a4f;
    outline: none;
  }
  
  @media (max-width: 768px) {
    .download-buttons {
      flex-direction: column;
    }

      .hero h1 {
    font-size: 2rem;
  }

  .navbar nav ul {
    flex-direction: column;
    gap: 0.75rem;

    width: 100%;
    margin-top: 1rem;
    padding: 1rem 0;
    align-items:flex-start;
  }

     .btn {
      display: block;
      margin: 10px auto;
      font-size: 1rem;
      text-decoration: none;
      padding: 10px 15px;
      width: 80%;
      max-width: 250px;
    }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  }
   /* 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;
  }
  