* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(90deg, #4b6cb7 0%, #528a46 100%);
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
  color: #6dd5fa;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #6dd5fa;
}

.btn {
  display: inline-block;
  background: #6dd5fa;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #4b6cb7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f8f9fa"/><path d="M0 0L100 100" stroke="%23e9ecef" stroke-width="1"/><path d="M100 0L0 100" stroke="%23e9ecef" stroke-width="1"/></svg>');
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #182848;
}

.hero p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #4b6cb7;
}

/* Features Section - Redesigned */
.features {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #182848;
  font-size: 2.5rem;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual img {
  max-width: 100%;
  max-height: 600px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3.5rem;
  color: #4b6cb7;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #6dd5fa 0%, #4bb7a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #182848;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.visual-placeholder {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  background: linear-gradient(135deg, #6dd5fa 0%, #c0f3b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(75, 108, 183, 0.2);
}

/* Screenshots Section */
.screenshots {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.screenshot {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background: #c0f3b3;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.screenshot:hover {
  transform: scale(1.05);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(90deg, #0a1d4be0 0%, #1a2c16b4 100%), url(./all.jpg) center;
  color: white;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.cta p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background: #182848;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: center;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #6dd5fa;
}

.footer-section p {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #6dd5fa;
}

/* Responsive Design */
@media (max-width: 968px) {
  .feature-row {
    flex-direction: column;
  }

  .feature-row.reverse {
    flex-direction: column;
  }

  .visual-placeholder {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-content h3 {
    font-size: 1.6rem;
  }
}
