@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0d0f12;
  color: white;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #0d0f12;
  border-bottom: 1px solid #1b1d22;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
}

.logo-img {
  width: 30px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #4aa3ff;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
  min-height: 85vh;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.version {
  background: #112233;
  padding: 6px 14px;
  border-radius: 20px;
  color: #9bc9ff;
  font-size: 14px;
}

h1 {
  font-size: 64px;
  margin-top: 20px;
}

.typing {
  font-size: 36px;
  color: #3fa0ff;
  min-height: 40px;
  margin-bottom: 15px;
}

p {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary {
  background: #007bff;
  color: white;
}

.primary:hover {
  background: #0066cc;
}

.secondary {
  background: #1c1f25;
  color: white;
  border: 1px solid #333;
}

.secondary:hover {
  background: #333;
}

.features {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  color: #9bc9ff;
  font-size: 14px;
}

.hero-image {
  position: relative;
  top: -90px;
}

.card {
  width: 350px;
  height: 350px;
  background: linear-gradient(145deg, #0e1620, #081019);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
}

.card img {
  width: 200px;
  opacity: 0.9;
}

.about {
  background: #0d0f12;
  color: white;
  text-align: center;
  padding: 100px 80px;
}

.about h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about .subtitle {
  color: #9bc9ff;
  font-size: 18px;
  margin-bottom: 60px;
}

.about-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.about-card {
  background: #181b20;
  border-radius: 16px;
  padding: 40px;
  width: 480px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.about-card p {
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-card .github {
  display: inline-block;
  background: #2d2f33;
  color: #ddd;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.about-card .github:hover {
  background: #3b3e45;
}

.about-card.right h3 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #fff;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 25px;
}

.feature .icon {
  font-size: 22px;
  line-height: 1;
  color: #33aaff;
  flex-shrink: 0;
}

.feature .text strong {
  display: block;
  color: #fff;
  font-size: 17px;
  margin-bottom: 4px;
}

.feature .text p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-card {
    width: 90%;
  }

  .about {
    padding: 80px 20px;
  }
}

.features {
  background: #0d0f12;
  color: white;
  text-align: center;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.features-wrapper {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 0 40px;
}

.features h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features .subtitle {
  color: #9bc9ff;
  font-size: 18px;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  justify-items: center;
}

.feature-card {
  background: #181b20;
  border-radius: 16px;
  padding: 40px;
  text-align: left;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 500px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
}

.feature-card .icon {
  font-size: 32px;
  color: #3fa0ff;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 15px;
}

.feature-card ul {
  list-style: none;
  padding: 0;
}

.feature-card ul li {
  color: #9bc9ff;
  margin: 6px 0;
  font-size: 15px;
}
.faq {
  background: #0d0f12;
  color: white;
  text-align: center;
  padding: 100px 60px;
}

.faq h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.faq .subtitle {
  color: #9bc9ff;
  font-size: 18px;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0px;  
  row-gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;   
  margin: 0 auto;
}

.faq-card {
  background: #181b20;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  width: 100%;
  max-width: 470px;     
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
}

.faq-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-card p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer {
  background: #0d0f12;
  color: #ccc;
  padding: 80px 100px 40px 100px;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 35px;
  height: 35px;
}

.footer-logo h3 {
  color: white;
  font-size: 22px;
  font-weight: 700;
}

.footer-column h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #4aa3ff;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-socials a {
  color: #bbb;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #4aa3ff;
}

.footer-bottom {
  border-top: 1px solid #1b1d22;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
}

.footer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
  color: #9bc9ff;
}

.footer-icons span {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .footer {
    padding: 60px 40px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

