/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #E8F5E9; /* Background color */
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Navigation Bar */
  .navbar {
    background-color: #4CAF50; /* Navbar background color */
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo Container */
  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between logo and text */
  }
  
  /* Logo Styles */
  .logo img {
    height: 60px; /* Logo height */
    width: 60px; /* Logo width */
    border-radius: 50%; /* Makes the logo round */
    object-fit: cover; /* Ensures the image fits nicely */
  }
  
  /* Logo Text Styles */
  .logo-text {
    font-size: 24px; /* Text size */
    font-weight: bold;
    color: white; /* Text color */
  }
  
  /* Navigation Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    background-color: #E8F5E9; /* Background color */
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #4CAF50; /* Accent color */
  }
  
  .hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
  }
  
  .download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  
  
  /* Features Section */
  .features {
    padding: 80px 0;
    text-align: center;
    background-color: white; /* White background for contrast */
  }
  
  .features h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #4CAF50; /* Accent color */
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .feature-item {
    background-color: #E8F5E9; /* Background color */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .feature-item i {
    font-size: 40px;
    color: #4CAF50; /* Accent color */
    margin-bottom: 20px;
  }
  
 /* Screenshot Section Styles */
.screenshots {
  padding: 40px 20px;
  background-color: #E8F5E9; /* New background color */
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.screenshots h2 {
  font-size: 2.5em;
  color: #4CAF50; /* New accent color */
  margin-bottom: 30px;
  position: relative;
}

.screenshot-container {
  width: 100%;
  overflow-x: auto; /* Horizontal scroll */
  padding-bottom: 20px; /* Space for scrollbar */
}

.screenshot-grid {
  display: flex;
  gap: 20px; /* Spacing between screenshots */
  padding: 20px 10px;
}

.screenshot {
  width: 180px; /* Fixed width for each screenshot */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.screenshot:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
  
  /* CTA Section */
  .cta {
    padding: 80px 0;
    text-align: center;
    background-color: #4CAF50; /* Accent color */
    color: white;
  }
  
  .cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .btn-get-started {
    background-color: white;
    color: #4CAF50; /* Accent color */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Contact Section */
  .contact {
    padding: 80px 0;
    text-align: center;
    background-color: white; /* White background for contrast */
  }
  
  .contact h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #4CAF50; /* Accent color */
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-links a {
    color: #4CAF50; /* Accent color */
    font-size: 32px;
    text-decoration: none;
  }
  
  .social-links a:hover {
    color: #388E3C; /* Darker shade of green */
  }
  
  /* Footer */
  footer {
    background-color: #4CAF50; /* Accent color */
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .logo-container {
      justify-content: center; /* Center logo and text in mobile view */
      width: 100%; /* Take full width */
    }
  
    .nav-links {
      display: none; /* Hide navigation links in mobile view */
    }
  
    .hero-text h1 {
      font-size: 28px;
    }
  
    .hero-text p {
      font-size: 16px;
      margin-bottom: 20px;
    }
  
    .btn-store img {
      width: 120px;
    }
  
    .feature-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  
    .screenshot-carousel img {
      max-width: 250px;
    }
  }