﻿@import "./style.css";
@import "./font.css";
@import "./variable.css";
@import "./header&footer.css";


 * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', sans-serif; background: #fff; color: #1e1e1e; }

    .hero {
      background-color: #0070c9;
      color: white;
      text-align: center;
      padding: 100px 20px 60px 20px;
    }
    .hero h1 {
      font-size: 44px;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto 30px;
      line-height: 1.6;
    }
    .hero .cta-button {
      background-color: #48bb78;
      border: none;
      padding: 12px 30px;
      font-size: 16px;
      font-weight: bold;
      color: #000;
      border-radius: 5px;
      cursor: pointer;
      margin-top: 20px;
    }
    .rating {
      margin-top: 30px;
      font-size: 14px;
    }
    .rating span {
      background-color: #22c55e;
      padding: 4px 10px;
      border-radius: 4px;
      margin: 0 5px;
      color: white;
      font-weight: 600;
    }
    .device-preview {
      text-align: center;
      padding: 40px 20px;
    }
    .device-preview img {
      max-width: 90%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

.navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 40px;
      background-color: #0070c9;
      color: white;
      position: fixed;           /* 🔒 Always stay on top */
      top: 0;                    /* Stick to top */
      left: 0;
      width: 100%;
      z-index: 1000;             /* Stay above other content */
      box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Optional shadow */
    }

   .spacer {
      height: 72px; /* Add same height as navbar to push content down */
    }

    .navbar .logo {
      font-weight: bold;
      font-size: 24px;
      flex: 0 0 auto;
    }

    .navbar .menu-container {
      position: absolute;
      left: 85%;
      transform: translateX(-50%);
    }

    .navbar .menu {
      display: flex;
      gap: 25px;
      align-items: center;
    }

    .navbar .menu a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      padding: 6px 12px;
    }

    .navbar .login {
      border: 1px solid white;
      border-radius: 4px;
    }

    .navbar .cta {
      background-color: #48bb78;
      color: black;
      font-weight: bold;
      padding: 8px 16px;
      border-radius: 4px;
      text-decoration: none;
    }

    .navbar .cta:hover {
      background-color: #38a169;
    }

     .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-card .icon {
    background: #edf2f7;
    color: #4f46e5;
    font-size: 28px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
  }

  .feature-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #1a202c;
  }

  .feature-card p {
    font-size: 14px;
    color: #4a5568;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .pricing-card {
    color: white;
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
  }

  .pricing-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .pricing-card .icon {
    font-size: 40px;
    margin: 15px 0;
  }

  .pricing-btn {
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .pricing-btn:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
  }
  .why-box {
    text-align: center;
    padding: 10px 15px;
  }
  .why-box .icon {
    margin-bottom: 15px;
  }
  .why-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
  }
  .why-box p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
  }
  @media (max-width: 600px) {
    .why-box h4 {
      font-size: 16px;
    }
    .why-box p {
      font-size: 13px;
    }
  }
  .features, .testimonials, .pricing, .cta, .footer {
      padding: 60px 40px;
      text-align: center;
    }
    .features h2, .testimonials h2, .pricing h2, .cta h2 {
      font-size: 28px;
      margin-bottom: 30px;
    }
     .cta {
      background: #1e3a8a;
      color: white;
    }
    .cta button {
      background: #2563eb;
      color: white;
      padding: 12px 30px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      margin-top: 20px;
      cursor: pointer;
    }
    .footer {
      background: #111827;
      color: #cbd5e1;
      font-size: 14px;
    }