 body {
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
    line-height: 1.6;
  }

  .nav-link {
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .nav-link:hover {
    color: #667eea;
  }

  .navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e1e8ed;
  }

  .hero-bg {
    background: linear-gradient(135deg,#f8fafc,#f1f5f9);
  }
  .btn-gradient {
    background: linear-gradient(90deg, #6a5af9, #8b5cf6);
  }

  .card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 40px 32px;
  }

  .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: #715EBC;
    transition: width 0.3s ease;
  }
  .card:hover::before {
    width: 100%;
  }

  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px #0000001a;
  }

  .footer-bg {
    background-color: #1e293b;
    color: #94a3b8;
    font-size: .9rem;
  }

  h1.hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: #6F61C2;
  }
  .hero-subtitle {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.7;
  }
  .feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .feature-text {
    font-size: 1rem; 
    color: #64748b;
  }
  .get-started-btn {
    font-size: 1rem; 
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 8px 25px #667eea4d;
    background: linear-gradient(135deg,#667eea,#764ba2);
  }

  .header-inner {
    padding-top: 1.10rem;
    padding-bottom: 1.10rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .navbar-logo-title{
    font-size: 22px;
    color: #444;
    font-weight: 500;
  }
  .features {
    background: #fff;
  }
  .card-icon{
    font-size: 2.5rem;
  }