
    :root {
      --primary: #6366f1;
      --primary-dark: #4f46e5;
      --dark: #0f172a;
      --gray: #64748b;
      --light: #f8fafc;
      --success: #10b981;
    }

    * { margin:0; padding:0; box-sizing:border-box; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      color: var(--dark);
      background: var(--light);
      line-height: 1.6;
    }

    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(15,23,42,0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    nav {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 5%;
      height: 76px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.65rem;
      font-weight: 700;
      color: white;
    }
    .logo span { color: var(--primary); }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1.4rem;
    }

    .btn {
      padding: 11px 28px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
    }
    .btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
    }
    .btn-outline:hover { background: rgba(99,102,241,0.08);color: bisque; }

    /* Hero */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      color: white;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

.hero1 {
    min-height: 100vh;
    background: linear-gradient(100deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
.footer-panel {
    background: linear-gradient(100deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    text-align: center;
    height: 40px;
}
.hero1-content {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99,102,241,0.22) 0%, transparent 60%);
}

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 80%, rgba(99,102,241,0.22) 0%, transparent 60%);
    }

    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 4.5rem;
      align-items: center;
      position: relative;
      z-index: 2;
      margin-top: 5%;
    }

    .hero-left h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.12;
      margin-bottom: 1.5rem;
    }
    .hero-left h1 span { color: var(--primary); }

    .hero-left p {
      font-size: 1.32rem;
      color: #cbd5e1;
      margin-bottom: 2.8rem;
      max-width: 520px;
    }

    .demo-actions {
      display: flex;
      gap: 1.6rem;
      flex-wrap: wrap;
    }

    .hero-right {
      position: relative;
    }
.forgotpass p {
    color: #fff !important;
    line-height: 40px;
}
.forgotpass p a {
    color: #fff !important;
    transition: all 0.5s ease 0s;
    text-decoration: none;
}
.hero-right1 {
    position: relative;
}

    .hero-right img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.65);
      transform: perspective(1100px) rotateY(-7deg) rotateX(4deg);
      transition: transform 0.5s;
    }

    .hero-right img:hover {
      transform: perspective(1100px) rotateY(-3deg) rotateX(2deg);
    }

.hero-right1 .login-section {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.65);
    transform: perspective(1100px) rotateY(-7deg) rotateX(4deg);
    transition: transform 0.5s;
}

    .hero-right1 .login-section:hover {
        transform: perspective(1100px) rotateY(-3deg) rotateX(2deg);
    }

    /* Previews section */
    .previews {
      padding: 3rem 2% 6rem;
      background: white;
      text-align: center;
    }

    .previews h2 {
      font-size: 2.8rem;
      margin-bottom: 1.2rem;
    }

    .previews p.lead {
      font-size: 1.24rem;
      color: var(--gray);
      max-width: 720px;
      margin: 0 auto 4rem;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 2.5rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .preview-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .preview-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.14);
    }

    .preview-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-bottom: 1px solid #e2e8f0;
    }

    .card-content {
      padding: 1.8rem;
    }

    .card-content h3 {
      font-size: 1.45rem;
      margin-bottom: 0.8rem;
    }

    .card-content p {
      color: var(--gray);
      font-size: 1.05rem;
    }

    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .hero-left h1 { font-size: 3.3rem; }
      .demo-actions { justify-content: center; }
      .hero-right { margin-top: 4rem; }
      .hero-right img { transform: none; }
    }

    @media (max-width: 640px) {
      .hero-left h1 { font-size: 2.7rem; }
      .previews h2 { font-size: 2.3rem; }
    }
