* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    body {
      background: linear-gradient(to right, #f9f2ff, #fce4ec);
      color: #333;
      overflow-x: hidden;
    }
    header, .hero, .services, .about, .portfolio, .contact, footer {
      animation: fadeIn 1.5s ease forwards;
      opacity: 0;
    }
    header { animation-delay: 0.2s; }
    .hero { animation-delay: 0.4s; }
    .services { animation-delay: 0.6s; }
    .about { animation-delay: 0.7s; }
    .portfolio { animation-delay: 0.8s; }
    .contact { animation-delay: 0.9s; }
    footer { animation-delay: 1s; }

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    header {
      background: #fff;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    header h1 {
      font-size: 24px;
      font-weight: 700;
      background: linear-gradient(to right, #9c27b0, #e91e63, #9c27b0);
      background-size: 300% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 4s linear infinite;
    }

    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #555;
      font-weight: 500;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    nav a:hover {
      color: #9c27b0;
      transform: scale(1.1);
    }

    h2, h3, h4 {
      position: relative;
      background: linear-gradient(to right, #9c27b0, #e91e63, #9c27b0);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 5s infinite linear;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 40px;
      gap: 120px;
    }
    .hero-text {
      max-width: 420px;
      text-align: left;
    }
    .hero-text h2 {
      font-size: 40px;
    }
    .hero-text p {
      font-size: 18px;
      color: #555;
      margin-bottom: 20px;
    }
    .hero-text button {
      background: #9c27b0;
      color: #fff;
      padding: 12px 30px;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      cursor: pointer;
    }
    .hero-img {
      text-align: center;
      position: relative;
    }
    .blob {
      width: 340px;
      height: 340px;
      background: #f8c3ec;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(0deg);
      animation: blob 10s infinite ease-in-out;
      z-index: 1;
    }
    @keyframes blob {
      0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      }
      50% {
        border-radius: 30% 60% 70% 40% / 40% 60% 30% 70%;
      }
    }
    .hero-img img {
      width: 260px;
      position: relative;
      z-index: 2;
      margin-top: -220px;
    }
    .behance a{
      text-decoration: none;
      color: #fff;
    }
    .about {
      background: linear-gradient(to right, #f9f2ff, #fce4ec);
      padding: 60px 40px;
      text-align: center;
      background-color: #fff;
      margin-top: 30px;
    }
   .about h2 {
     color: #6a1b9a;
     margin-bottom: 40px;
     font-size: 32px;
   }
    .about-content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.7;
      color: #555;
    }

    .services, .about, .portfolio, .contact {
      padding: 60px 40px;
      text-align: center;
    }

    .service-boxes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .service {
      margin-top: 30px;
      background: #fff;
      padding: 30px;
      width: 280px;
      border-radius: 16px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }
    .service:hover {
      transform: translateY(-5px);
    }
    .service i {
      font-size: 32px;
      color: #9c27b0;
      margin-bottom: 10px;
    }
    .service h3 {
      margin-bottom: 10px;
      color: #333;
    }
    .service p {
      color: #666;
      font-size: 14px;
    }

    .portfolio-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    .portfolio-item {
      margin-top: 30px;
      width: 300px;
      background: #fff;
      padding: 20px;
      border-radius: 16px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    .portfolio-item img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 15px;
    }
    .portfolio-item h4 {
      margin-bottom: 8px;
      color: #333;
    }

    .contact form {
      max-width: 500px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .input1{
      margin-top: 30px;
    }
    .contact input, .contact textarea {
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ccc;
    }
    .contact button {
      background: #9c27b0;
      color: #fff;
      border: none;
      padding: 12px;
      border-radius: 30px;
      font-size: 16px;
      cursor: pointer;
    }

    footer {
      text-align: center;
      padding: 30px;
      background: #ffffff;
      color: #777;
    }
    @media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-img img {
    margin-top: 0;
  }

  .portfolio-items, .service-boxes {
    flex-direction: column;
    align-items: center;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    margin: 10px 0;
  }

  .contact form {
    width: 90%;
  }
}
