    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f5f7fb;
      color: #222;
      line-height: 1.6;
    }

    header {
      background: linear-gradient(135deg, #8A2BE1, #6a0dad);
      color: white;
      padding: 20px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .logo img {
      width: 300px;
      height: 100px;
      /* border-radius: 12px; */
      /* background: white; */
      padding: 2px;
    }

    .logo h1 {
      font-size: 24px;
    }

    nav a {
      color: white;
      text-decoration: none;
      margin-left: 20px;
      font-weight: 500;
    }

    .hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1200&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      color: white;
      text-align: center;
      padding: 120px 8%;
    }

    .hero h2 {
      font-size: 55px;
      margin-bottom: 20px;
    }

    .hero p {
      max-width: 800px;
      margin: auto;
      font-size: 18px;
    }

    .btn {
      display: inline-block;
      margin-top: 30px;
      background: #8a2be2;
      color: white;
      padding: 14px 30px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
    }

    section {
      padding: 80px 8%;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 40px;
      color: #5a189a;
    }

    .services, .products, .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .card {
      background: white;
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card h3 {
      color: #6a0dad;
      margin-bottom: 15px;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .gallery img {
      width: 100%;
      border-radius: 15px;
      height: 220px;
      object-fit: cover;
    }

    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    form {
      background: white;
      padding: 30px;
      border-radius: 18px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    input, textarea, select {
      width: 100%;
      padding: 14px;
      margin-top: 12px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 10px;
    }

    button {
      background: #6a0dad;
      color: white;
      border: none;
      padding: 14px 25px;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
    }

    iframe {
      width: 100%;
      border: 0;
      border-radius: 15px;
      min-height: 350px;
    }

    footer {
      background: #1c1c1c;
      color: white;
      text-align: center;
      padding: 30px;
    }

    .whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: white;
      padding: 15px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      z-index: 999;
    }

    @media(max-width:768px) {
      .hero h2 {
        font-size: 38px;
      }

      header {
        flex-direction: column;
        gap: 15px;
      }
    }


    /* about */
    .about-section{
    padding: 100px 8%;
    background: #f8f9fc;
}

.about-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 50px;
    align-items: center;
}

.about-image img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-tag{
    color: #8A2BE2;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content h2{
    font-size: 42px;
    margin: 15px 0 25px;
    color: #222;
    line-height: 1.3;
}

.about-content p{
    color: #555;
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 16px;
}

.about-features{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 20px;
    margin-top: 35px;
}

.feature-box{
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.feature-box:hover{
    transform: translateY(-6px);
}

.feature-box h3{
    color: #8A2BE2;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-box p{
    margin: 0;
    font-size: 14px;
}

.about-btn{
    display: inline-block;
    margin-top: 35px;
    background: #8A2BE2;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover{
    background: #6f1cc7;
}

@media(max-width:768px){

    .about-content h2{
        font-size: 32px;
    }

}

