  
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: #f0f2f8;
      display: flex;
      justify-content: center;
      padding: 40px 16px;
      min-height: 100vh;
    }



    /*  animated background starts */


    .bg-scene {
      position: fixed;
      inset: 0;
      background: linear-gradient(180deg, #b3e5fc 0%, #e1f5fe 30%, #f9fbe7 60%, #dcedc8 80%, #c5e1a5 100%);
      overflow: hidden;
      z-index: 0;
    }

    /* Sun */
    .sun {
      position: absolute;
      top: 30px;
      right: 90px;
      width: 80px;
      height: 80px;
      background: radial-gradient(circle, #fff176, #ffee58, #fdd835);
      border-radius: 50%;
      box-shadow: 0 0 0 12px rgba(253, 216, 53, 0.2), 0 0 0 24px rgba(253, 216, 53, 0.1);
      animation: sunPulse 4s ease-in-out infinite;
    }

    .sun-ray {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 6px;
      height: 22px;
      background: #fdd835;
      border-radius: 3px;
      opacity: 0.6;
      transform-origin: 3px -28px;
      animation: rayRotate 12s linear infinite
    }

    @keyframes sunPulse {

      0%,
      100% {
        box-shadow: 0 0 0 12px rgba(253, 216, 53, 0.2), 0 0 0 24px rgba(253, 216, 53, 0.1)
      }

      50% {
        box-shadow: 0 0 0 18px rgba(253, 216, 53, 0.3), 0 0 0 36px rgba(253, 216, 53, 0.08)
      }
    }

    @keyframes rayRotate {
      to {
        transform: rotate(360deg)
      }
    }

    /* Clouds */
    .cloud {
      position: absolute;
      animation: floatCloud linear infinite
    }

    .cloud-body {
      background: #fff;
      border-radius: 50px;
      position: relative;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06)
    }

    .cloud-body::before,
    .cloud-body::after {
      content: '';
      position: absolute;
      background: #fff;
      border-radius: 50%
    }

    .cloud1 .cloud-body {
      width: 110px;
      height: 34px;
      top: 55px
    }

    .cloud1 .cloud-body::before {
      width: 55px;
      height: 55px;
      top: -26px;
      left: 18px
    }

    .cloud1 .cloud-body::after {
      width: 40px;
      height: 40px;
      top: -18px;
      left: 56px
    }

    .cloud2 .cloud-body {
      width: 140px;
      height: 40px;
      top: 95px
    }

    .cloud2 .cloud-body::before {
      width: 65px;
      height: 65px;
      top: -32px;
      left: 22px
    }

    .cloud2 .cloud-body::after {
      width: 48px;
      height: 48px;
      top: -22px;
      left: 70px
    }

    .cloud3 .cloud-body {
      width: 90px;
      height: 28px;
      top: 130px
    }

    .cloud3 .cloud-body::before {
      width: 44px;
      height: 44px;
      top: -22px;
      left: 12px
    }

    .cloud3 .cloud-body::after {
      width: 32px;
      height: 32px;
      top: -14px;
      left: 44px
    }

    .cloud1 {
      animation-duration: 30s;
      animation-delay: -6s
    }

    .cloud2 {
      animation-duration: 40s;
      animation-delay: -16s
    }

    .cloud3 {
      animation-duration: 25s;
      animation-delay: -22s
    }

    @keyframes floatCloud {
      from {
        left: -200px
      }

      to {
        left: 110%
      }
    }

    /* Birds */
    .bird {
      position: absolute;
      animation: flyBird linear infinite
    }

    .bird svg {
      width: 28px;
      height: 14px;
      fill: none;
      stroke: #78909c;
      stroke-width: 2;
      stroke-linecap: round
    }

    .bird1 {
      top: 80px;
      animation-duration: 18s;
      animation-delay: -3s
    }

    .bird2 {
      top: 110px;
      animation-duration: 22s;
      animation-delay: -10s
    }

    .bird3 {
      top: 65px;
      animation-duration: 28s;
      animation-delay: -18s
    }

    @keyframes flyBird {
      from {
        left: -60px
      }

      to {
        left: 110%
      }
    }

    /* Ground */
    .ground {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 180px;
      background: linear-gradient(180deg, #aed581 0%, #8bc34a 40%, #7cb342 100%);
    }

    .ground-hill {
      position: absolute;
      top: -50px;
      left: -10%;
      right: -10%;
      height: 100px;
      background: #aed581;
      border-radius: 50% 50% 0 0;
    }

    /* Grass blades */
    .grass {
      position: absolute;
      top: -24px;
      left: 0;
      right: 0;
      height: 32px;
      display: flex;
      justify-content: space-around;
      align-items: flex-end
    }

    .blade {
      width: 5px;
      background: linear-gradient(180deg, #66bb6a, #558b2f);
      border-radius: 3px 3px 0 0;
      transform-origin: bottom center;
      animation: sway 2.5s ease-in-out infinite
    }

    @keyframes sway {

      0%,
      100% {
        transform: rotate(-7deg)
      }

      50% {
        transform: rotate(7deg)
      }
    }

    /* Flowers */
    .flower {
      position: absolute;
      bottom: 165px
    }

    .flower-stem {
      width: 3px;
      height: 18px;
      background: #558b2f;
      margin: 0 auto;
      border-radius: 0 0 2px 2px
    }

    .flower-head {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      margin: -6px auto 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px
    }

    /* Barn */
    .barn {
      position: absolute;
      bottom: 168px;
      right: 7%;
      width: 110px;
      height: 90px;
      background: #ef5350;
      border-radius: 2px
    }

    .barn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.05) 2px, transparent 2px, transparent 18px)
    }

    .barn-roof {
      position: absolute;
      top: -48px;
      left: -14px;
      width: 0;
      height: 0;
      border-left: 69px solid transparent;
      border-right: 69px solid transparent;
      border-bottom: 52px solid #c62828
    }

    .barn-door {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
      height: 44px;
      background: #8d1a1a;
      border-radius: 3px 3px 0 0
    }

    .barn-door-line {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background: #6a1515
    }

    .barn-window {
      position: absolute;
      top: 18px;
      left: 8px;
      width: 22px;
      height: 22px;
      background: #fff9c4;
      border: 2px solid #8d1a1a;
      border-radius: 50%;
      animation: windowGlow 3s ease-in-out infinite
    }

    .barn-window2 {
      position: absolute;
      top: 18px;
      right: 8px;
      width: 22px;
      height: 22px;
      background: #fff9c4;
      border: 2px solid #8d1a1a;
      border-radius: 50%;
      animation: windowGlow 3s ease-in-out infinite;
      animation-delay: .5s
    }

    @keyframes windowGlow {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.75
      }
    }

    /* Fence */
    .fence {
      position: absolute;
      bottom: 158px;
      left: 0;
      right: 0;
      display: flex;
      gap: 16px;
      padding: 0 15px
    }

    .fence-post {
      width: 9px;
      height: 52px;
      background: #a1887f;
      border-radius: 3px 3px 0 0;
      position: relative;
      flex-shrink: 0
    }

    .fence-rail-top {
      position: absolute;
      top: 10px;
      left: -9px;
      width: 27px;
      height: 6px;
      background: #bcaaa4;
      border-radius: 2px
    }

    .fence-rail-bot {
      position: absolute;
      top: 28px;
      left: -9px;
      width: 27px;
      height: 6px;
      background: #bcaaa4;
      border-radius: 2px
    }

    /* Water trough */
    .trough {
      position: absolute;
      bottom: 160px;
      left: 42%;
      width: 50px;
      height: 18px;
      background: #4fc3f7;
      border: 3px solid #a1887f;
      border-radius: 4px;
      box-shadow: inset 0 3px 6px rgba(0, 100, 200, 0.2)
    }

    /* Chickens */
    .chicken {
      position: absolute;
      bottom: 162px
    }

    .ch-body {
      position: absolute;
      bottom: 0;
      left: 4px;
      width: 30px;
      height: 22px;
      border-radius: 50% 50% 40% 40%
    }

    .ch-head {
      position: absolute;
      bottom: 18px;
      left: 18px;
      width: 14px;
      height: 14px;
      border-radius: 50%
    }

    .ch-comb {
      position: absolute;
      width: 8px;
      height: 9px;
      background: #e53935;
      border-radius: 50% 50% 0 0
    }

    .ch-beak {
      position: absolute;
      width: 7px;
      height: 4px;
      background: #fb8c00;
      clip-path: polygon(0 0, 100% 50%, 0 100%)
    }

    .ch-eye {
      position: absolute;
      width: 3px;
      height: 3px;
      background: #1a1a1a;
      border-radius: 50%
    }

    .ch-wing {
      position: absolute;
      width: 14px;
      height: 10px;
      border-radius: 50%;
      transform: rotate(-10deg)
    }

    .ch-tail {
      position: absolute;
      width: 9px;
      height: 13px;
      border-radius: 50% 0 0 50%;
      transform: rotate(22deg)
    }

    .ch-legs {
      position: absolute;
      bottom: -9px;
      left: 9px;
      display: flex;
      gap: 7px
    }

    .leg {
      width: 3px;
      height: 9px;
      background: #fb8c00;
      border-radius: 1px;
      position: relative
    }

    .leg::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: -4px;
      width: 10px;
      height: 3px;
      background: #fb8c00;
      border-radius: 1px
    }

    /* White hen */
    .hen-white .ch-body {
      background: #f5f5f5
    }

    .hen-white .ch-head {
      background: #f5f5f5
    }

    .hen-white .ch-wing {
      background: #e8e8e8
    }

    .hen-white .ch-tail {
      background: #ddd;
      left: -1px;
      bottom: 8px
    }

    .hen-white .ch-comb {
      bottom: 29px;
      left: 20px
    }

    .hen-white .ch-beak {
      bottom: 22px;
      left: 30px
    }

    .hen-white .ch-eye {
      bottom: 26px;
      left: 27px
    }

    /* Brown hen */
    .hen-brown .ch-body {
      background: #a1887f
    }

    .hen-brown .ch-head {
      background: #a1887f
    }

    .hen-brown .ch-wing {
      background: #8d6e63
    }

    .hen-brown .ch-tail {
      background: #795548;
      left: -1px;
      bottom: 8px
    }

    .hen-brown .ch-comb {
      bottom: 29px;
      left: 20px
    }

    .hen-brown .ch-beak {
      bottom: 22px;
      left: 30px
    }

    .hen-brown .ch-eye {
      bottom: 26px;
      left: 27px
    }

    /* Yellow chick */
    .chick .ch-body {
      background: #fff176;
      width: 20px;
      height: 16px;
      left: 5px
    }

    .chick .ch-head {
      background: #fff176;
      width: 11px;
      height: 11px;
      left: 14px;
      bottom: 13px
    }

    .chick .ch-comb {
      width: 6px;
      height: 7px;
      bottom: 22px;
      left: 16px
    }

    .chick .ch-beak {
      width: 5px;
      height: 3px;
      bottom: 17px;
      left: 23px
    }

    .chick .ch-eye {
      width: 2px;
      height: 2px;
      bottom: 20px;
      left: 21px
    }

    .chick .ch-wing {
      width: 10px;
      height: 8px;
      left: 2px;
      bottom: 6px;
      background: #ffe082
    }

    .chick .ch-tail {
      width: 6px;
      height: 9px;
      left: -1px;
      bottom: 7px;
      background: #ffd54f
    }

    .chick .ch-legs {
      bottom: -7px;
      left: 6px;
      gap: 5px
    }

    .chick .leg {
      width: 2px;
      height: 7px;
      background: #fb8c00
    }

    .chick .leg::after {
      width: 7px;
      left: -3px
    }

    .c1 {
      left: 6%;
      animation: peck 1.7s ease-in-out infinite
    }

    .c2 {
      left: 14%;
      animation: peckFlip 2.0s ease-in-out infinite .3s
    }

    .c3 {
      left: 22%;
      animation: peck 1.9s ease-in-out infinite .6s
    }

    .c4 {
      left: 48%;
      animation: peckFlip 2.2s ease-in-out infinite .2s
    }

    .c5 {
      left: 55%;
      animation: peck 1.6s ease-in-out infinite .8s
    }

    .c6 {
      left: 62%;
      animation: peckFlip 1.8s ease-in-out infinite .4s
    }

    .chick1 {
      left: 9%;
      bottom: 164px;
      animation: chickHop 1.4s ease-in-out infinite .1s;
      transform: scale(0.75)
    }

    .chick2 {
      left: 17%;
      bottom: 164px;
      animation: chickHop 1.6s ease-in-out infinite .5s;
      transform: scale(0.75)
    }

    .chick3 {
      left: 58%;
      bottom: 164px;
      animation: chickHop 1.3s ease-in-out infinite .3s;
      transform: scale(0.75)
    }

    @keyframes peck {

      0%,
      100% {
        transform: translateY(0)
      }

      35% {
        transform: translateY(-7px)
      }

      55% {
        transform: translateY(3px)
      }
    }

    @keyframes peckFlip {

      0%,
      100% {
        transform: scaleX(-1) translateY(0)
      }

      35% {
        transform: scaleX(-1) translateY(-7px)
      }

      55% {
        transform: scaleX(-1) translateY(3px)
      }
    }

    @keyframes chickHop {

      0%,
      100% {
        transform: scale(0.75) translateY(0)
      }

      50% {
        transform: scale(0.75) translateY(-9px)
      }
    }

    /* Rooster */
    .rooster {
      position: absolute;
      bottom: 162px;
      left: 32%;
      animation: strut 3.5s ease-in-out infinite
    }

    .ro-body {
      position: absolute;
      bottom: 0;
      left: 2px;
      width: 36px;
      height: 26px;
      background: #e53935;
      border-radius: 50% 50% 40% 40%
    }

    .ro-head {
      position: absolute;
      bottom: 21px;
      left: 21px;
      width: 16px;
      height: 16px;
      background: #e53935;
      border-radius: 50%
    }

    .ro-comb {
      position: absolute;
      bottom: 35px;
      left: 23px;
      width: 11px;
      height: 13px;
      background: #b71c1c;
      border-radius: 50% 50% 0 0
    }

    .ro-wattle {
      position: absolute;
      bottom: 20px;
      left: 29px;
      width: 7px;
      height: 10px;
      background: #b71c1c;
      border-radius: 50%
    }

    .ro-beak {
      position: absolute;
      bottom: 25px;
      left: 35px;
      width: 9px;
      height: 5px;
      background: #fb8c00;
      clip-path: polygon(0 0, 100% 50%, 0 100%)
    }

    .ro-eye {
      position: absolute;
      bottom: 28px;
      left: 32px;
      width: 4px;
      height: 4px;
      background: #fff;
      border-radius: 50%;
      box-shadow: inset 0 0 0 1.5px #222
    }

    .ro-tail {
      position: absolute;
      bottom: 12px;
      left: -6px;
      width: 16px;
      height: 26px;
      background: #880e4f;
      border-radius: 50% 0 0 50%;
      transform: rotate(22deg)
    }

    .ro-wing {
      position: absolute;
      bottom: 7px;
      left: 0;
      width: 18px;
      height: 13px;
      background: #c62828;
      border-radius: 50%;
      transform: rotate(-10deg)
    }

    .ro-legs {
      position: absolute;
      bottom: -11px;
      left: 11px;
      display: flex;
      gap: 9px
    }

    .rleg {
      width: 4px;
      height: 11px;
      background: #fb8c00;
      border-radius: 1px;
      position: relative
    }

    .rleg::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: -4px;
      width: 12px;
      height: 3px;
      background: #fb8c00;
      border-radius: 1px
    }

    @keyframes strut {

      0%,
      100% {
        transform: translateX(0) rotate(0deg)
      }

      25% {
        transform: translateX(4px) rotate(2deg)
      }

      75% {
        transform: translateX(-4px) rotate(-2deg)
      }
    }

    /* Eggs */
    .egg {
      position: absolute;
      background: #fff8e1;
      border: 1.5px solid #ffe082;
      border-radius: 60% 60% 55% 55% / 65% 65% 50% 50%;
      animation: eggBob 3s ease-in-out infinite
    }

    .eg1 {
      bottom: 158px;
      left: 10%;
      width: 13px;
      height: 17px
    }

    .eg2 {
      bottom: 158px;
      left: 19%;
      width: 11px;
      height: 15px;
      animation-delay: -1s
    }

    .eg3 {
      bottom: 158px;
      left: 50%;
      width: 13px;
      height: 17px;
      animation-delay: -2s
    }

    .eg4 {
      bottom: 158px;
      left: 60%;
      width: 11px;
      height: 15px;
      animation-delay: -.5s
    }

    @keyframes eggBob {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-3px)
      }
    }

    /* Feathers */
    .feather {
      position: absolute;
      animation: featherFall linear infinite;
      opacity: 0
    }

    .feather svg {
      width: 10px;
      height: 24px
    }

    .f1 {
      left: 8%;
      animation-duration: 7s;
      animation-delay: -1s
    }

    .f2 {
      left: 28%;
      animation-duration: 9s;
      animation-delay: -3.5s
    }

    .f3 {
      left: 55%;
      animation-duration: 6s;
      animation-delay: -5s
    }

    .f4 {
      left: 78%;
      animation-duration: 8s;
      animation-delay: -2s
    }

    .f5 {
      left: 44%;
      animation-duration: 10s;
      animation-delay: -7s
    }

    @keyframes featherFall {
      0% {
        top: -30px;
        opacity: 0;
        transform: rotate(0deg)
      }

      15% {
        opacity: 0.8
      }

      85% {
        opacity: 0.5
      }

      100% {
        top: 55%;
        opacity: 0;
        transform: rotate(40deg)
      }
    }

    /* Tree */
    .tree {
      position: absolute;
      bottom: 158px
    }

    .tree-trunk {
      width: 14px;
      height: 40px;
      background: #795548;
      border-radius: 3px 3px 0 0;
      margin: 0 auto
    }

    .tree-top {
      width: 60px;
      height: 60px;
      background: #66bb6a;
      border-radius: 50%;
      margin: -30px auto 0;
      box-shadow: inset -5px -5px 0 rgba(0, 0, 0, 0.1)
    }

    .tree-top2 {
      width: 48px;
      height: 48px;
      background: #81c784;
      border-radius: 50%;
      margin: -20px auto 0
    }


    /* animated ends */


    /* ── Card ── */
    .card {
      position: relative;
      z-index: 10;
      background: rgba(255, 255, 255, 0.92);
      width: 100%;
      max-width: 420px;
      border-radius: 20px;
      box-shadow: 0 8px 40px rgba(100, 150, 80, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      backdrop-filter: blur(6px);
      border: 1.5px solid rgba(255, 255, 255, 0.8);
    }

    .card-header {
      background: linear-gradient(135deg, #43a047 0%, #1b5e20 100%);
      padding: 26px 24px 20px;
      text-align: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .card-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 9px)
    }

    .header-icon {
      font-size: 3rem;
      display: block;
      margin-bottom: 7px;
      animation: iconBounce 2s ease-in-out infinite;
      position: relative
    }

    @keyframes iconBounce {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-6px)
      }
    }

    .card-header h1 {
      font-size: 1.22rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      position: relative
    }

    .card-header p {
      font-size: 0.74rem;
      opacity: 0.88;
      margin-top: 4px;
      position: relative
    }

    .form-body {
      padding: 22px 22px 18px
    }

    .field {
      margin-bottom: 13px
    }

    label {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.76rem;
      font-weight: 700;
      color: #2e7d32;
      margin-bottom: 4px
    }

    .req {
      color: #e53935
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
      width: 100%;
      padding: 9px 12px;
      border: 1.5px solid #c8e6c9;
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.86rem;
      color: #1b5e20;
      background: #f9fbe7;
      transition: border-color .2s, box-shadow .2s;
      outline: none;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #43a047;
      box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.13)
    }

    textarea {
      resize: vertical;
      min-height: 68px
    }

    .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 11px
    }

    .phone-wrap {
      position: relative
    }

    .phone-wrap input {
      padding-left: 38px
    }

    .phone-prefix {
      position: absolute;
      left: 11px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.85rem;
      color: #555;
      pointer-events: none
    }

    .payment-notice {
      background: linear-gradient(135deg, #ef5350, #c62828);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      text-align: center;
      padding: 9px 12px;
      border-radius: 8px;
      margin-bottom: 14px;
      animation: pulseBanner 2s ease-in-out infinite;
    }

    @keyframes pulseBanner {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(239, 83, 80, 0.35)
      }

      70% {
        box-shadow: 0 0 0 8px rgba(239, 83, 80, 0)
      }
    }

    .bank-box {
      border: 1.5px solid #c8e6c9;
      border-radius: 10px;
      padding: 13px;
      display: flex;
      gap: 13px;
      align-items: flex-start;
      margin-bottom: 16px;
      background: #f9fbe7
    }

    .qr-wrap {
      flex-shrink: 0;
      text-align: center
    }

    .qr-wrap img {
      width: 76px;
      height: 76px;
      border: 1px solid #c8e6c9;
      border-radius: 6px;
      object-fit: contain
    }

    .qr-label {
      font-size: 0.62rem;
      color: #888;
      margin-top: 4px
    }

    .bank-details h4 {
      font-size: 0.9rem;
      font-weight: 800;
      margin-bottom: 7px;
      color: #1b5e20
    }

    .bank-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.73rem
    }

    .bank-table td {
      padding: 2px 4px;
      color: #555
    }

    .bank-table td:first-child {
      color: #888;
      width: 44%
    }

    .bank-table td:last-child {
      font-weight: 700;
      color: #1b5e20
    }

    .upload-section {
      margin-bottom: 16px
    }

    .upload-section h3 {
      font-size: 0.92rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 8px;
      color: #2e7d32
    }

    .drop-zone {
      border: 2px dashed #a5d6a7;
      border-radius: 10px;
      padding: 16px 12px;
      text-align: center;
      cursor: pointer;
      background: #f1f8e9;
      font-size: 0.78rem;
      color: #777;
      transition: border-color .2s, background .2s
    }

    .drop-zone:hover {
      border-color: #43a047;
      background: #e8f5e9
    }

    .drop-zone input[type="file"] {
      display: none
    }

    #file-name {
      font-size: 0.73rem;
      color: #43a047;
      margin-top: 5px;
      text-align: center
    }

    .btn-upload {
      display: block;
      margin: 9px auto 3px;
      background: linear-gradient(135deg, #66bb6a, #2e7d32);
      color: #fff;
      border: none;
      border-radius: 20px;
      padding: 8px 26px;
      font-size: 0.86rem;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .2s
    }

    .btn-upload:hover {
      opacity: 0.88
    }

    .upload-hint {
      font-size: 0.66rem;
      color: #aaa;
      text-align: center
    }

    .btn-submit {
      width: 100%;
      padding: 13px;
      background: linear-gradient(135deg, #66bb6a, #1b5e20);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 0.93rem;
      font-weight: 800;
      cursor: pointer;
      letter-spacing: .4px;
      transition: opacity .2s, transform .1s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-submit:hover {
      opacity: .9
    }

    .btn-submit:active {
      transform: scale(.98)
    }

    .btn-submit:disabled {
      opacity: .6;
      cursor: not-allowed
    }

    .secure-note {
      text-align: center;
      font-size: 0.68rem;
      color: #aaa;
      margin-top: 9px
    }

    .spinner {
      width: 16px;
      height: 16px;
      border: 3px solid rgba(255, 255, 255, .4);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin .7s linear infinite;
      display: none
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    .btn-submit.loading .spinner {
      display: block
    }

    .btn-submit.loading .btn-text {
      display: none
    }

    #toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: #333;
      color: #fff;
      padding: 11px 22px;
      border-radius: 8px;
      font-size: 0.86rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, transform .3s;
      z-index: 999;
      max-width: 300px;
      text-align: center
    }

    #toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0)
    }

    #toast.success {
      background: #2e7d32
    }

    #toast.error {
      background: #c62828
    }

    /* ── Payment notice ── */
    .payment-notice {
      background: #ff4d6d;
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      text-align: center;
      padding: 9px 12px;
      border-radius: 8px;
      margin-bottom: 16px;
    }

    /* ── Bank box ── */
    .bank-box {
      border: 1.5px solid #e0e4f4;
      border-radius: 10px;
      padding: 14px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .qr-wrap {
      flex-shrink: 0;
      text-align: center;
    }

    .qr-wrap img {
      width: 80px;
      height: 80px;
      border: 1px solid #ddd;
      border-radius: 6px;
      object-fit: contain;
    }

    .qr-label {
      font-size: 0.65rem;
      color: #888;
      margin-top: 4px;
    }

    .bank-details h4 {
      font-size: 0.92rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: #222;
    }

    .bank-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.75rem;
    }

    .bank-table td {
      padding: 2px 4px;
      color: #555;
    }

    .bank-table td:first-child {
      color: #888;
      width: 44%;
    }

    .bank-table td:last-child {
      font-weight: 700;
      color: #222;
    }

    /* ── Upload area ── */
    .upload-section {
      margin-bottom: 18px;
    }

    .upload-section h3 {
      font-size: 0.95rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 10px;
      color: #333;
    }

    .drop-zone {
      border: 2px dashed #b0b8e0;
      border-radius: 10px;
      padding: 18px 12px;
      text-align: center;
      cursor: pointer;
      transition: border-color .2s, background .2s;
      background: #fafbff;
      font-size: 0.8rem;
      color: #888;
    }

    .drop-zone:hover,
    .drop-zone.dragover {
      border-color: #6c63ff;
      background: #f0eeff;
    }

    .drop-zone input[type="file"] {
      display: none;
    }

    .drop-zone .upload-icon {
      font-size: 1.2rem;
      margin-right: 6px;
    }

    #file-name {
      font-size: 0.75rem;
      color: #6c63ff;
      margin-top: 6px;
    }

    .btn-upload {
      display: block;
      margin: 10px auto 4px;
      background: #6c63ff;
      color: #fff;
      border: none;
      border-radius: 20px;
      padding: 9px 28px;
      font-size: 0.88rem;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s;
    }

    .btn-upload:hover {
      background: #5248e0;
    }

    .upload-hint {
      font-size: 0.68rem;
      color: #aaa;
      text-align: center;
    }

    /* ── Submit ── */
    .btn-submit {
      width: 100%;
      padding: 13px;
      background: linear-gradient(135deg, #6c63ff, #3b3da6);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 800;
      cursor: pointer;
      letter-spacing: .5px;
      transition: opacity .2s, transform .1s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-submit:hover {
      opacity: .92;
    }

    .btn-submit:active {
      transform: scale(.98);
    }

    .btn-submit:disabled {
      opacity: .6;
      cursor: not-allowed;
    }

    .secure-note {
      text-align: center;
      font-size: 0.7rem;
      color: #aaa;
      margin-top: 10px;
    }

    /* ── Toast ── */
    #toast {
      position: fixed;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: #222;
      color: #fff;
      padding: 12px 24px;
      border-radius: 8px;
      font-size: 0.88rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, transform .3s;
      z-index: 999;
      max-width: 320px;
      text-align: center;
    }

    #toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    #toast.success {
      background: #2ecc71;
    }

    #toast.error {
      background: #e74c3c;
    }

    /* spinner */
    .spinner {
      width: 18px;
      height: 18px;
      border: 3px solid rgba(255, 255, 255, .4);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin .7s linear infinite;
      display: none;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .btn-submit.loading .spinner {
      display: block;
    }

    .btn-submit.loading .btn-text {
      display: none;
    }



    .fee-alert {
      text-align: center;
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      padding: 12px;
      border-radius: 10px;
      margin-bottom: 20px;

      background: linear-gradient(270deg, #ff416c, #ff4b2b);
      animation: glowPulse 1.5s infinite;
      box-shadow: 0 0 10px rgba(255, 75, 43, 0.6);
    }

    @keyframes glowPulse {
      0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 75, 43, 0.6);
      }

      50% {
        opacity: 0.7;
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(255, 75, 43, 1);
      }

      100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 75, 43, 0.6);
      }
    }
  