
.container1 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: #fefeff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fefeff;
  text-align: center;
  padding: 100px 15px 80px;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  animation: fadeInDown 1s ease-out forwards;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}
.download-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #ff4b2b;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.download-btn:hover {
  background-color: #e84320;
  transform: translateY(-2px);
}

section h2 {
  font-size: 2rem;
  text-align: center;
  color: #0e1b7b;
  margin-bottom: 40px;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.8s ease forwards;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.15);
}
.feature-card h3 {
  color: #0077cc;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* Screenshots */
.screenshots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.screenshots img {
  max-width: 280px;
  border-radius: 12px;
  border: solid 1px blue;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: float 3s ease-in-out infinite;
}
.screenshots img.visible {
  opacity: 1;
  transform: translateY(0);
}
.screenshots img:hover {
  transform: scale(1.07) rotate(-2deg);
}

/* CTA */
.cta-section {
  background: #ffffff;
  text-align: center;
  padding: 80px 20px;
}
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #0e1b7b;
}


.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.social-links a {
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.3rem; }
  .hero p { font-size: 1rem; }
}

@media (max-width: 768px) {

  .hero { padding: 90px 15px 60px; }
  .hero h1 { font-size: 2rem; }
  .features { grid-template-columns: 1fr; }
  .screenshots img { max-width: 240px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.95rem; }
  .download-btn { padding: 12px 24px; font-size: 0.9rem; }
 
  .social-links { justify-content: center; }
}
