* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

body {
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nav .download-app {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav .download-app a {
  display: inline-flex;          /* 🔑 main fix */
  align-items: center;           /* image + text center vertically */
  justify-content: center;
  gap: 8px;                      /* image & text ke beech equal space */
  padding: 8px 14px;
}

.nav .download-app a img {
  display: block;                /* extra baseline gap remove */
}

/* BUTTONS */
.btn {
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;  
}

.btn:hover{
    transform: scale(1.1);
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}

/* HEADER */
.header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  width: 100%;
}

.logo img{
    max-width: 120px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.hero h1 span {
  color: #dbeafe;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* FEATURES */
.features {
  padding: 40px 0;
  background: #f9fafb;
}

.features h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: center;
}

.feature-card {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.feature-grid .feature-card h3{
    white-space: nowrap;
}

.feature-grid .feature-card p {
    margin-top: 5px;
    font-size: 16px;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 40px 0;
}

.how-it-works h2{
    font-size: 32px;
}

.steps {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 20px;
}

.step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 10px;
}

/* SECURITY */
.security {
  background: #f1f5f9;
  padding: 40px 0;
}

.security h2{
    font-size: 28px;
    margin-bottom: 10px;
}

.security ul {
  margin-top: 15px;
  padding-left: 25px;
  list-style: square;
}

.security li{
    margin-bottom: 10px;
}

/* CTA */
.cta {
  background: #2563eb;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.cta h2{
    font-size: 28px;
}

.cta a{
    background-color: #fff;
    color: #000000;
    margin-top: 15px;
}

body a:hover{
    color: #2563eb;
    transition: 0.5s ease-in-out;
}

.hero-buttons a:hover{
    color: #fff;
}

.cta a:hover{
    transform: scale(1.1);
    transition: 0.5s ease-in-out;
}

/* Cards */
.card {
  background: #fff;
  padding: 28px;
  margin-bottom: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.card h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1d4ed8;
}

.card h3 {
  font-size: 16px;
  margin: 14px 0 6px;
  font-weight: 600;
}

.card ul {
  padding-left: 20px;
}

.card ul li {
  margin-bottom: 8px;
}




/* FOOTER */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-links{
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .steps {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
