/* --- acquisitionFlowUI main styles --- */
/* Header alignment and height override */
.acq-card .registerSheet__header {
    height: 65px !important;
    min-height: 65px !important;
    background: #f5f5f5 !important;
    position: relative !important;
}
.acq-card .registerSheet__icon {
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 2rem !important;
    margin: 0 !important;
}
.acq-card .registerSheet__x {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 20px !important;
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    color: #374151 !important;
    text-decoration: none !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}
.acq-card .registerSheet__x:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
    transform: translateY(-50%) scale(1.08) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}
.acq-card .registerSheet__x svg {
    width: 14px !important;
    height: 14px !important;
    display: block !important;
    pointer-events: none !important;
}
.acq-card .registerSheet__x:empty::after {
    content: "✕" !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #374151 !important;
    line-height: 1 !important;
}

/* Modern Premium Theme Styles */
:root {
    --acq-primary: #25d366;
    --acq-primary-hover: #1ebc59;
    --acq-text: #111827;
    --acq-text-muted: #4b5563;
    --acq-bg-light: #f9fafb;
    --acq-border: #e5e7eb;
    --acq-success-bg: #f4fbf7;
    --acq-success-border: #dcfce7;
    --acq-accent: #1cb854;
}

.acquisitionModal__wrapper {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    direction: rtl;
    font-family: 'Assistant', 'Rubik', sans-serif;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    box-sizing: border-box;
}

.acq-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    max-width: 580px;
    width: 95%;
    margin: 40px auto;
    font-family: 'Assistant', 'Rubik', sans-serif;
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Close Button */
.acq-close {
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    background: #fff;
    color: #4b5563;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.acq-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Green WhatsApp Badge Title */
.acq-whatsapp-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    direction: rtl;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.acq-whatsapp-badge {
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    margin-bottom: 0;
    flex-shrink: 0;
}

.acq-whatsapp-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.3;
}

.acq-whatsapp-sub {
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
}

/* Main Split Content */
.acq-split-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    margin-bottom: 12px;
}

@media (max-width: 600px) {
    .acq-split-layout {
        grid-template-columns: 1fr;
    }
    .acq-teacher-side-card {
        grid-row: 1;
    }
    .acq-benefits-box {
        grid-row: 2;
    }
}

/* Right side Benefits List */
.acq-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acq-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.acq-benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
}

.acq-benefit-text-group {
    display: flex;
    flex-direction: column;
}

.acq-benefit-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.25;
}

.acq-benefit-desc {
    font-size: 12.5px;
    color: #4b5563;
    margin-top: 2px;
}

/* Left side Teacher Card */
.acq-teacher-side-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--acq-border);
    height: 100%;
    min-height: 135px;
}

.acq-teacher-img-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; left: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(1.35) !important;
    transform-origin: center !important;
}

.acq-teacher-side-card:hover .acq-teacher-img-bg {
    transform: scale(1.05);
}

.acq-teacher-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
    padding: 15px;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.acq-teacher-name-label {
    font-size: 16px;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.acq-teacher-subject-label {
    font-size: 12px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    margin-top: 2px;
}

/* Calculator / Savings Double-Card Box */
.acq-savings-box {
    background: #e8f5e9 !important;
    border: 1.5px solid #a5d6a7 !important;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.08) !important;
    border-radius: 20px;
    display: grid !important;
    grid-template-columns: 1.2fr 1px 1fr !important;
    gap: 15px;
    padding: 7px 15px !important;
    margin-bottom: 12px !important;
    align-items: center;
    text-align: right;
    box-sizing: border-box !important;
}

@media (max-width: 500px) {
    .acq-savings-box {
        grid-template-columns: 1fr !important;
    }
    .acq-savings-divider {
        display: none;
    }
}

.acq-savings-divider {
    background: #c2f0d1;
    width: 1px;
    height: 100%;
    align-self: stretch;
}

.acq-savings-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.acq-savings-piggy {
    font-size: 32px;
    flex-shrink: 0;
}

.acq-savings-left-text {
    display: flex;
    flex-direction: column;
}

.acq-savings-avg-label {
    font-size: 13px;
    color: #3f6212;
}

.acq-savings-avg-val {
    font-size: 12px;
    color: #713f12;
    font-weight: bold;
}

.acq-savings-amount-badge {
    font-size: 22px;
    font-weight: 900;
    color: #16a34a;
    margin-top: 2px;
}

.acq-savings-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.acq-savings-right-title {
    font-size: 13px;
    color: #1f2937;
    font-weight: bold;
}

.acq-savings-right-large {
    font-size: 26px;
    font-weight: 900;
    color: #16a34a;
    margin-top: 4px;
}

.acq-savings-right-sub {
    font-size: 12px;
    color: #4b5563;
}

/* Trust / Rating section */
.acq-trust-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 10px 15px;
    margin-bottom: 12px;
    gap: 10px;
}

@media (max-width: 500px) {
    .acquisitionModal__wrapper {
        padding: 10px;
    }
    .acq-card {
        padding: 15px;
        margin: 15px auto;
        border-radius: 20px;
    }
    .acq-card .modal__header,
    .acq-card .registerSheet__header {
        margin: -15px -15px 15px -15px !important;
        border-radius: 20px 20px 0 0 !important;
    }
    .acq-trust-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
    .acq-trust-users-group {
        flex: 0 0 100%;
        max-width: 100% !important;
        justify-content: center;
    }
    .acq-plan-container {
        flex-direction: column;
        gap: 12px;
    }
    .acq-security-notice {
        font-size: 12px !important;
        white-space: nowrap;
    }
    .acq-trust {
        font-size: 12px !important;
        margin-top: 10px !important;
    }
    .acq-trust a {
        gap: 6px !important;
    }
    .acq-trust i.fa-whatsapp {
        font-size: 22px !important;
    }
}

.acq-trust-rating-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.acq-trust-stars {
    color: #fbbf24;
    font-size: 15px;
    font-weight: bold;
}

.acq-trust-rating-text {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

.acq-trust-avatars-group {
    display: flex;
    align-items: center;
}

.acq-trust-avatar-item {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px !important;
    font-weight: bold;
    color: #fff;
}

.acq-trust-count-text {
    font-size: 14px;
    color: #4b5563;
    font-weight: 600;
    max-width: none;
    line-height: 1.3;
}

.acq-trust-users-group {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #16a34a;
    font-weight: bold;
    font-size: 13px;
    max-width: 50%;
}

/* Sub title premium */
.acq-sub-premium-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: #111827;
    margin-bottom: 12px;
}

.acq-gift-badge {
    background: #fef3c7;
    color: #d97706;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 auto 20px;
    width: fit-content;
}

/* Phone input container with sim card icon */
.acq-phone-input-wrapper {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
}

.acq-phone-input-field {
    width: 100%;
    height: 54px;
    border: 2px solid var(--acq-border);
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    direction: ltr;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
    padding: 0 15px;
    background: #fff;
}

.acq-phone-input-field:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15);
}

.acq-phone-input-field.is-invalid {
    border-color: #ef4444;
}


/* Submit green button styled to match contact button with wave animation on right */
.acq-submit-btn-whatsapp {
    width: 100%;
    height: 56px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 90px 0 0; /* offset the right badge */
    transition: all 0.25s ease;
    text-decoration: none;
}

.acq-submit-btn-whatsapp:hover:not(:disabled) {
    background: #1ebc59;
}

.acq-submit-btn-whatsapp:disabled {
    background: #cbd5e1 !important;
    color: #94a3b8 !important;
    cursor: not-allowed;
    box-shadow: none;
}

.acq-submit-btn-whatsapp span.acq-whatsIcon {
    width: 90px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(/assets/newDesign/searchpage/waveAnimation.svg);
    background-size: 100% 112px;
    background-position: right top;
    background-repeat: repeat-y;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: acq-wave 2s linear infinite;
    z-index: 1;
}

.acq-submit-btn-whatsapp:disabled span.acq-whatsIcon {
    filter: grayscale(100%);
    opacity: 0.6;
    animation: none;
    background-position: right top;
}

.acq-submit-btn-whatsapp span.acq-whatsIcon2 {
    width: 90px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    z-index: 2;
}

.acq-submit-btn-whatsapp:disabled span.acq-whatsIcon2 {
    filter: grayscale(100%);
    opacity: 0.6;
}

#acqPhoneBtnText {
    position: relative;
    z-index: 3;
}

@keyframes acq-wave {
  from {
    background-position: right 0px;
  }
  to {
    background-position: right -56px;
  }
}

/* Consent checkboxes */
.acq-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 15px;
}

.acq-checkbox-label input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #25d366;
    flex-shrink: 0;
}

.acq-error {
    color: #ef4444;
    font-size: 13px;
    font-weight: bold;
    margin-top: -10px;
    margin-bottom: 15px;
    display: none;
    text-align: center;
}

/* OTP container styles */
.acq-otp-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    direction: ltr;
}

.acq-otp-box {
    width: 38px;
    height: 48px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    border: 2px solid var(--acq-border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s;
}

.acq-otp-box:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

/* Step 2 Payment specific style */
.acq-plan-container {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.acq-plan-card {
    flex: 1;
    border: 2px solid var(--acq-border);
    border-radius: 20px;
    padding: 20px 15px;
    cursor: pointer;
    background: #fff;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.acq-plan-card:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.acq-plan-card.active {
    border-color: #1cb854;
    background: #f0fdf4;
    box-shadow: 0 8px 20px rgba(28, 184, 84, 0.12);
}

.acq-plan-card.active:hover {
    border-color: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(28, 184, 84, 0.18);
}

.acq-plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1cb854;
    color: #fff;
    padding: 1px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(28, 184, 84, 0.25);
    z-index: 3;
}

.acq-plan-title {
    font-weight: 800;
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 8px;
}

.acq-plan-price-main {
    font-weight: 900;
    font-size: 34px;
    color: #1f2937;
    margin-bottom: 8px;
}

.acq-plan-price-sub {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
}

.acq-plan-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

.acq-plan-card.active .acq-plan-title {
    color: #111827;
}

.acq-plan-card.active .acq-plan-price-main {
    color: #1cb854;
}

#acqBitIframeContainer {
    margin-top: 15px;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid var(--acq-border);
}

#acqTranzilaWrapper {
    margin-top: 15px;
}
#acqFlowWrapper .modal__icon {
    filter: brightness(0) !important;
    width: 16rem !important;
    height: 4.8rem !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: right center !important;
    margin-top: 3px !important;
}
.acq-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.acq-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.acq-benefit-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
}
.acq-benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}
.acq-benefit-desc {
    font-size: 13.5px;
    color: #4b5563;
    margin-top: 1px;
    line-height: 1.2;
}
.acq-savings-box {
    display: none !important;
    background: linear-gradient(135deg, #f4fbf7 0%, #e8f7ee 100%);
    border: 1px solid #c2eed5;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1.3fr 1px 1fr;
    gap: 16px;
    padding: 18px 20px;
    margin-bottom: 25px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(28, 184, 84, 0.05);
}
.acq-savings-piggy-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Header and Avatar Design */
.acq-new-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    direction: rtl;
}
.acq-new-header-text {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
    text-align: right;
    flex: 1;
}
.acq-new-header-avatar-container {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a5f3fc 0%, #0284c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.15);
}
.acq-new-header-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    background: #fff;
}

/* Trust rating capsules */
.acq-new-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}
.acq-new-trust-rating {
    background: #fef3c7;
    color: #d97706;
    font-size: 13.5px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.acq-new-trust-divider {
    color: #e5e7eb;
    font-size: 16px;
    font-weight: 300;
}
.acq-new-trust-avatars {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 3px 12px 3px 6px;
    border-radius: 20px;
}
.acq-new-trust-text {
    font-size: 13.5px;
    font-weight: 800;
    color: #4b5563;
}

/* Gray Benefits Box */
.acq-benefits-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 12px 18px;
    margin-bottom: 20px;
    direction: rtl;
    text-align: right;
}
.acq-benefits-box-title {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    text-align: center;
}
.acq-benefits-box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.acq-benefits-box-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.4;
}
.acq-check-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}
.acq-coming-soon {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    margin-right: 4px;
}
.acq-benefits-box-divider {
    border-top: 1px solid #e2e8f0;
    margin: 20px 0;
}

/* Next Step Row */
.acq-next-step-row {
    display: flex;
    align-items: center;
    gap: 16px;
    direction: rtl;
}
.acq-next-step-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.acq-next-step-label {
    font-size: 12px;
    font-weight: 800;
    color: #10b981;
    white-space: nowrap;
}
.acq-next-step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}
.acq-next-step-text-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
    line-height: 1.4;
}
.acq-next-step-text-col strong {
    font-size: 17.5px;
    color: #0f172a;
}
.acq-next-step-text-col span {
    font-size: 15.5px;
    color: #475569;
}

.acq-phone-display-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    height: 54px;
    padding: 0 20px;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.acq-phone-display-text {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin: 0 auto;
    direction: ltr;
}
.acq-phone-change-btn {
    color: #3b82f6;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    white-space: nowrap;
}

/* Success Checkmark & Popup Animations */
.acq-card .checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #10b981;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #10b981;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.acq-card .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #10b981;
    fill: none;
    animation: stroke .6s cubic-bezier(0.650, 0.000, 0.450, 1.000) forwards;
}
.acq-card .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #ffffff;
    animation: stroke .3s cubic-bezier(0.650, 0.000, 0.450, 1.000) .8s forwards;
}
@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #10b981;
    }
}
@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}


/* --- acquisitionFlowUI bounce animation --- */
</div>
        </div>
        
        
        @keyframes acqBounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-6px); }
            60% { transform: translateY(-3px); }
        }
        .acq-bounce-arrow {
            animation: acqBounce 2s infinite;
            display: inline-block;
        }


/* --- acquisitionFlowUI modal & close button --- */
@keyframes acq-spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    @keyframes wave {
        from {
            background-position-y: 0%;
        }
        to {
            background-position-y: -100%;
        }
    }
    
    #acqSuccessModal .sendWhatsappTeacher {
        width: 100% !important;
        display: flex !important;
        background: #25d366 !important;
        border-radius: 30px !important;
        color: #fff !important;
        font-size: 2rem !important;
        font-weight: 600 !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 1.8rem 19% 1.8rem 0 !important;
        position: relative !important;
        cursor: pointer !important;
        text-decoration: none !important;
        margin-bottom: 8px !important;
        box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.25) !important;
        overflow: hidden !important;
    }
    
    #acqSuccessModal .sendWhatsappTeacher.openDialerBtn {
        background: #548CFF !important;
    }
    
    #acqSuccessModal .sendWhatsappTeacher span.whatsIcon {
        width: 30% !important;
        aspect-ratio: 97 / 252 !important;
        height: auto !important;
        position: absolute !important;
        right: -2px !important;
        top: 0 !important;
        background-image: url(/assets/newDesign/searchpage/waveAnimation.svg) !important;
        background-size: 100% auto !important;
        background-position: right top !important;
        background-repeat: repeat-y !important;
        border-radius: 4px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding-left: 2rem !important;
        translate: 0 !important;
        animation: wave 2s linear infinite !important;
    }
    
    #acqSuccessModal .sendWhatsappTeacher.openDialerBtn span.whatsIcon {
        filter: hue-rotate(46deg) !important;
    }
    
    #acqSuccessModal .sendWhatsappTeacher span.whatsIcon2 {
        width: 41% !important;
        height: 100% !important;
        position: absolute !important;
        right: 0 !important;
        top: 0 !important;
        background-size: cover !important;
        background-position: right !important;
        background-repeat: no-repeat !important;
        border-radius: 4px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding-left: 2rem !important;
        font-size: 2.4rem !important;
        color: #fff !important;
    }

    #acqSuccessModal .sendWhatsappTeacher span.whatsIcon2 i {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #fff !important;
        font-size: 2.4rem !important;
        width: auto !important;
        height: auto !important;
        line-height: normal !important;
        padding: 0 !important;
        margin: 0 !important;
    }
