

    body {
      font-family: "Poppins", sans-serif;
      background: #f7f9fc;
      color: #333;
      line-height: 1.6;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 50px;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .logo {
      font-size: 1.6rem;
      font-weight: bold;
      background: linear-gradient(45deg, #ff6a00, #ee0979);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .logo_text {
      font-size: 1.6rem;
      font-weight: bold;
      background: linear-gradient(45deg, #fffffe, #f4f3f4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    nav ul {
      display: flex;
      list-style: none;
    }
    nav ul li {
      margin-left: 25px;
    }
    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #ff6a00;
    }

    .hero {
      height: 59vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 8%;
      background: #f9f9f9;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 600px;
      z-index: 2;
    }

    .hero-image {
      position: relative;
      width: 500px;
    }

    .hero-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 12px;
      position: relative;
      z-index: 2;
    }

    .floating-icon {
      position: absolute;
      font-size: 2rem;
      animation: float 4s ease-in-out infinite;
      opacity: 0.9;
      z-index: 1;
    }

    .icon1 { top: 10%; left: -30px; animation-delay: 0s; }
    .icon2 { top: 30%; right: -40px; animation-delay: 1s; }
    .icon3 { bottom: 20%; left: -20px; animation-delay: 2s; }
    .icon4 { bottom: 10%; right: -30px; animation-delay: 3s; }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
    }

    .gradient-text {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(90deg, #ff6a00, #ee0979);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .btn {
      display: inline-block;
      margin-top: 1rem;
      padding: 12px 28px;
      background: linear-gradient(90deg, #ff6a00, #ee0979);
      color: #fff;
      font-size: 1rem;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(238, 9, 121, 0.3);
    }

    .services {
      padding: 14px 42px;
      background: #fff;
      text-align: center;
    }
    .services h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      color: #222;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }
    .service-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(6px);
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .service-card:hover {
      transform: translateY(-10px);
    }
    .service-card i {
      font-size: 2rem;
      color: #ee0979;
      margin-bottom: 15px;
    }
    .service-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    footer {
      background: #222;
      color: #fff;
      text-align: center;
      padding: 30px 20px;
    }
    footer a {
      color: #ff6a00;
      text-decoration: none;
      margin: 0 10px;
    }

    @media(max-width: 768px) {
      header { padding: 15px 20px; }
      .hero { flex-direction: column; text-align: center; padding: 120px 20px; }
      .hero-content { max-width: 100%; }
      .illustration { margin-top: 30px; }
    }