    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins',sans-serif;
    }

    body{
      background:#f4f4f4;
      color:#222;
      line-height:1.6;
    }

    html{
      scroll-behavior:smooth;
    }

    .container{
      width:90%;
      max-width:1200px;
      margin:auto;
    }

    header{
      background:#6a1b9a;
      color:#fff;
      padding:20px 0;
      position:sticky;
      top:0;
      z-index:999;
      box-shadow:0 4px 12px rgba(0,0,0,0.15);
    }

    nav{
      display:flex;
      justify-content:space-between;
      align-items:center;
      flex-wrap:wrap;
    }

    .logo{
      font-size:32px;
      font-weight:700;
    }

    .nav-links{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }

    .nav-links a{
      color:#fff;
      text-decoration:none;
      font-weight:500;
      transition:0.3s;
    }

    .nav-links a:hover{
      color:#ff9800;
    }

    .hero{
      padding:100px 0;
      background:linear-gradient(135deg,#6a1b9a,#8e24aa);
      color:#fff;
    }

    .hero-content{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
      gap:50px;
      align-items:center;
    }

    .hero h1{
      font-size:52px;
      line-height:1.2;
      margin-bottom:20px;
    }

    .hero p{
      font-size:18px;
      margin-bottom:30px;
      color:#f1f1f1;
    }

    .btn{
      display:inline-block;
      background:#ff9800;
      color:#fff;
      padding:14px 30px;
      border-radius:10px;
      text-decoration:none;
      font-weight:600;
      transition:0.3s;
      margin-right:15px;
      margin-top:10px;
    }

    .btn:hover{
      transform:translateY(-3px);
      box-shadow:0 10px 20px rgba(0,0,0,0.2);
    }

    .hero img{
      width:100%;
      border-radius:25px;
      box-shadow:0 15px 40px rgba(0,0,0,0.3);
    }

    section{
      padding:90px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:42px;
      color:#6a1b9a;
      margin-bottom:15px;
    }

    .section-title p{
      color:#666;
      max-width:700px;
      margin:auto;
    }

    .features-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:30px;
    }

    .feature-card{
      background:#fff;
      padding:35px;
      border-radius:20px;
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
      transition:0.3s;
    }

    .feature-card:hover{
      transform:translateY(-8px);
    }

    .feature-card h3{
      color:#6a1b9a;
      margin-bottom:15px;
      font-size:24px;
    }

    .feature-card p{
      color:#666;
    }

    .screenshots{
      background:#faf7fd;
    }

    .gallery{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:30px;
    }

    .shot{
      background:#fff;
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
      transition:0.3s;
    }

    .shot:hover{
      transform:translateY(-8px);
    }

    .shot img{
      width:100%;
      display:block;
    }

    .shot-content{
      padding:25px;
    }

    .shot-content h3{
      color:#6a1b9a;
      margin-bottom:12px;
    }

    .about{
      background:#fff;
    }

    .about-content{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
      gap:50px;
      align-items:center;
    }

    .about img{
      width:100%;
      border-radius:20px;
      height: 700px;
      box-shadow:0 10px 25px rgba(0,0,0,0.1);
    }

    .about h2{
      font-size:40px;
      color:#6a1b9a;
      margin-bottom:20px;
    }

    .about p{
      color:#666;
      margin-bottom:20px;
    }

    .list{
      list-style:none;
    }

    .list li{
      margin-bottom:12px;
      color:#444;
      font-weight:500;
    }

    .testimonials{
      background:#faf7fd;
    }

    .testimonial-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:30px;
    }

    .testimonial-card{
      background:#fff;
      padding:35px;
      border-radius:20px;
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }

    .testimonial-card h4{
      color:#6a1b9a;
      margin-bottom:15px;
      font-size:22px;
    }

    .cta{
      background:linear-gradient(135deg,#6a1b9a,#8e24aa);
      color:#fff;
      text-align:center;
      padding:100px 20px;
    }

    .cta h2{
      font-size:44px;
      margin-bottom:20px;
    }

    .cta p{
      max-width:700px;
      margin:0 auto 30px;
      color:#f1f1f1;
    }

    footer{
      background:#2b0a3d;
      color:#fff;
      text-align:center;
      padding:30px 20px;
    }

    footer p{
      margin:8px 0;
    }

    @media(max-width:768px){

      .hero h1{
        font-size:38px;
      }

      .section-title h2{
        font-size:34px;
      }

      .about h2{
        font-size:34px;
      }

      .cta h2{
        font-size:34px;
      }

      nav{
        gap:20px;
      }

    }

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-icon{
    width:45px;
    height:45px;
    background:#ff9800;
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.logo h1{
    color:#fff;
    font-size:32px;
    font-weight:700;
    margin:0;
}