/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.2rem;
  background-color: #151515;
  font-weight: bold;
}

nav a {
  color: #0fffc1;
  text-decoration: none;
  font-size: 1rem;
}

header {
  text-align: center;
  margin: 2rem auto;
}

header h1 {
  font-size: 2rem;
  color: #ff7f50;
}

header p {
  color: #bbb;
  margin-top: 0.5rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.features-card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 191, 0.2);
}

.features-card h2 {
  margin-bottom: 1rem;
}

.features-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0 auto;
  display: inline-block;
}

.features-card li {
  margin: 0.5rem 0;
}

.download-button {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #ff4747;
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}

.download-button:hover {
  background-color: #d33;
}

.gallery {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery img {
  max-width: 180px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}
/* FAQ Page Styling */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.faq-card {
  background: #1c1c1c;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 255, 191, 0.1);
  width: 100%;
  transition: 0.2s ease-in-out;
}

.faq-card:hover {
  box-shadow: 0 0 16px rgba(0, 255, 191, 0.3);
  transform: scale(1.015);
}

.faq-card h3 {
  color: #0fffc1;
  margin-bottom: 0.75rem;
}

.faq-card p {
  color: #ccc;
  line-height: 1.6;
}

.faq-card a {
  color: #ff7f50;
  text-decoration: underline;
}
/* Pricing Page Styling */
.subtitle {
  text-align: center;
  color: #bbb;
  margin-top: 0.5rem;
}

.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  width: 260px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 191, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 191, 0.3);
}

.pricing-card h2 {
  color: #0fffc1;
  margin-bottom: 0.8rem;
}

.pricing-card p {
  color: #ccc;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.purchase-btn {
  display: inline-block;
  background-color: #ff4747;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s ease;
}

.purchase-btn:hover {
  background-color: #d33;
}
/* Optional: Loader Animation */
@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
.subtitle::after {
  content: '⏳';
  margin-left: 10px;
  animation: pulse 1.5s infinite;
}
