 :root {
      --primary: #f72585;
      --primary-dark: #d61a70;
      --purple: #40134f;
      --purple-2: #6c45ff;
      --bg: #f3f4f6;
      --text: #1f2937;
      --muted: #6b7280;
      --card: #ffffff;
      --border: #e5e7eb;
      --green: #22c55e;
      --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
      --radius: 18px;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; }

    .section-padding { padding: 72px 0; }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 12px;
      text-align: center;
    }
    .section-subtitle {
      text-align: center;
      color: var(--muted);
      max-width: 760px;
      margin: 0 auto 32px;
      font-size: 17px;
    }

    .topbar {
      background: #fff;
      border-bottom: 1px solid #ececec;
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 50;
    }
    
    .brand-dot {
      color: var(--primary);
      font-size: 14px;
      margin-right: 6px;
    }
    .top-cta {
      background: var(--primary);
      color: #fff;
      border-radius: 999px;
      padding: 10px 18px;
      font-weight: 600;
      border: 0;
      box-shadow: 0 8px 20px rgba(247, 37, 133, 0.28);
    }

    .hero {
      background: linear-gradient(135deg, #3c0f4d 0%, #4b105e 45%, #40134f 100%);
      color: #fff;
      overflow: hidden;
    }
    .hero .section-title,
    .hero .section-subtitle {
      color: #fff;
    }
  
    .product-card {
      background: rgba(255,255,255,0.96);
      border-radius: 14px;
      padding: 10px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.18);
      color: #111827;
      position: relative;
      min-height: 240px;
    }
    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #86efac;
      color: #166534;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 999px;
      font-weight: 600;
    }
    .product-thumb {
      height: 202px;
      border-radius: 10px;
      background: linear-gradient(180deg, #f8fafc, #eef2f7);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .product-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .product-title {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      min-height: 42px;
      margin-bottom: 6px;
    }
    .product-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 14px;
      margin-bottom: 10px;
    }
    .old-price {
      color: #9ca3af;
      text-decoration: line-through;
    }
    .new-price {
      color: #ef4444;
      font-weight: 700;
    }
    .small-btn {
      width: 100%;
      border: 0;
      background: var(--primary);
      color: #fff;
      border-radius: 10px;
      padding: 8px 12px;
      font-weight: 600;
      font-size: 13px;
    }

    .package-section {
      background: #f5f6f8;
      text-align: center;
    }
    .pricing-card {
      width: min(100%, 420px);
      background: #fff;
      border-radius: 22px;
      padding: 20px;
      margin: 24px auto 24px;
      box-shadow: var(--shadow);
      border: 1px solid #ececec;
    }
    .pricing-head {
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 14px;
    }
    .price-option {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border: 1px solid #f0f0f0;
      padding: 12px 14px;
      border-radius: 14px;
      margin-bottom: 10px;
      background: #fff;
      font-weight: 500;
    }
    .price-option.active {
      background: #ffd6e7;
      border-color: var(--primary);
      box-shadow: inset 0 0 0 1px rgba(247,37,133,.22);
    }
    .free-delivery {
      background: #22c55e;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 999px;
      margin-right: 6px;
      display: inline-block;
    }
    .campaign-note {
      background: #e8f4ff;
      color: #334155;
      border-radius: 14px;
      padding: 14px;
      font-size: 14px;
      margin-top: 14px;
    }
    .primary-cta {
      background: linear-gradient(90deg, var(--primary), #ff4da0);
      color: #fff;
      border: 0;
      border-radius: 999px;
      padding: 14px 30px;
      font-weight: 700;
      box-shadow: 0 12px 28px rgba(247, 37, 133, 0.28);
    }

    .feature-grid,
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 26px;
    }
    .info-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
      border: 1px solid #f0f0f0;
    }
    .info-icon {
      font-size: 34px;
      line-height: 1;
      margin-bottom: 12px;
    }
    .info-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .info-card p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
    }

    .testimonial-section {
      background: linear-gradient(90deg, #5878ff 0%, #9555dd 100%);
      color: #fff;
    }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 24px;
    }
    .testimonial-card {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 18px;
      padding: 24px;
      min-height: 200px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }
    .stars { font-size: 16px; margin-bottom: 12px; }
    .testimonial-card p {
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .testimonial-card strong {
      display: block;
      text-align: right;
      font-size: 15px;
    }

    .order-section {
      background: #f3f4f6;
    }
    .order-card {
      width: min(100%, 760px);
      margin: 0 auto;
      background: #fff;
      border-radius: 24px;
      padding: 32px;
      box-shadow: var(--shadow);
      border: 1px solid #ececec;
    }
    .form-label {
      font-weight: 700;
      color: #111827;
      margin-bottom: 8px;
    }
    .required-star { color: #ef4444; }
    .form-select,
    .form-control,
    textarea.form-control {
      min-height: 54px;
      border-radius: 12px;
      border: 1px solid #dcdfe5;
      box-shadow: none !important;
      font-size: 15px;
    }
    .form-select:focus,
    .form-control:focus,
    textarea.form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(247, 37, 133, 0.12) !important;
    }
    textarea.form-control {
      min-height: 110px;
      resize: vertical;
    }
    .set-box {
      background: #fafafa;
      border: 1px solid #f0f0f0;
      border-radius: 16px;
      padding: 20px;
      margin-top: 16px;
    }
    .set-title {
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 14px;
      font-size: 18px;
    }
    .hint {
      font-size: 13px;
      color: var(--muted);
      margin-top: 6px;
    }

    .summary-box {
      background: #f8f1df;
      border: 1px dashed #d3b87b;
      border-radius: 14px;
      padding: 18px;
      margin-top: 18px;
    }
    .summary-box h5 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 14px;
    }
    .summary-line {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .summary-line:last-child { border-bottom: 0; }
    .summary-total {
      color: #ef4444;
      font-weight: 800;
      font-size: 22px;
    }
    .submit-btn {
      width: 100%;
      border: 0;
      background: #35b24a;
      color: #fff;
      min-height: 54px;
      font-weight: 700;
      border-radius: 12px;
      margin-top: 16px;
      font-size: 17px;
    }

    .footer {
      background: #121733;
      color: rgba(255,255,255,0.86);
      text-align: center;
      padding: 34px 0 80px;
      position: relative;
    }
    .footer h4 {
      font-weight: 700;
      margin-bottom: 8px;
      color: #fff;
    }
    .footer p {
      margin-bottom: 6px;
      color: rgba(255,255,255,0.75);
    }
    .floating-call {
      position: fixed;
      right: 10px;
      bottom: 18px;
      background: linear-gradient(90deg, #22c55e, #10b981);
      color: #fff;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 700;
      box-shadow: 0 12px 26px rgba(16, 185, 129, 0.28);
      z-index: 99;
    }


    .testimonialSwiper {
      margin-top: 30px;
    }

    .swiper-slide {
      text-align: center;
    }

    .swiper-slide img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

   

 