 /* ============================================ */
   /* ROOT VARIABLES - GLOBAL AID FOUNDATION */
   /* ============================================  */
:root {
    --color-primary: #0a0e61;
    --color-primary-light: #1e2569;
    --color-accent: #ff932f;
    --color-accent-dark: #e8851e;
    --color-bg-light: #f2f3ff;
    --color-bg-lighter: #fafbff;
    --color-border: #e0e1ff;
    --color-text-dark: #1a1f4a;
    --color-text-muted: #4a5075;
    --color-text-light: #6b7280;
    --color-success: #10b981;
    --color-success-dark: #059669;
    --color-error: #ef4444;
    --color-white: #ffffff;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --border-radius-sm: 16px;
    --border-radius-md: 20px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-2xl: 40px;
    --border-radius-full: 60px;
    
    --shadow-sm: 0 4px 12px rgba(10, 14, 97, 0.04);
    --shadow-md: 0 8px 24px rgba(10, 14, 97, 0.08);
    --shadow-lg: 0 16px 32px rgba(10, 14, 97, 0.12);
    --shadow-xl: 0 30px 60px -10px rgba(10, 14, 97, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-bounce: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

 /* ============================================ */
   /* GLOBAL RESET & BODY STYLING */
   /* ============================================  */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    background-image: 
        repeating-linear-gradient(135deg, rgba(10, 14, 97, 0.02) 0px, rgba(10, 14, 97, 0.02) 1px, transparent 1px, transparent 40px),
        radial-gradient(circle at 10% 20%, rgba(224, 225, 255, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 147, 47, 0.03) 0%, transparent 40%);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

 /* ----- MAIN WIZARD CARD -----  */
.donationWizard {
    max-width: 820px;
    width: 100%;
    margin: 40px auto;
    background: var(--color-white);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-xl), 0 10px 30px -10px rgba(10, 14, 97, 0.1);
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(224, 225, 255, 0.6);
    transition: transform var(--transition-normal);
}

.donationWizard:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 80px -15px rgba(10, 14, 97, 0.2);
}

/* ----- WIZARD STEPS HEADER ----- */
.wizard-circle .steps {
    background: var(--color-white);
    padding: 32px 36px 30px;
    border-bottom: 2px solid var(--color-bg-light);
}

.wizard-circle .steps ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.wizard-circle .steps ul li {
    flex: 1;
    position: relative;
    text-align: center;
}

.wizard-circle .steps ul li a {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: block;
    padding-bottom: 29px;
    padding-top: 10px;
    position: relative;
    transition: color var(--transition-normal);
    font-family: var(--font-primary);
}

.wizard-circle .steps ul li.current a {
    color: var(--color-primary);
    font-weight: 700;
}

.wizard-circle .steps ul li.done a {
    color: var(--color-success);
}

 /* Step Connecting Line  */
.wizard-circle .steps ul li::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-border);
    border-radius: 10px;
    z-index: 1;
}

.wizard-circle .steps ul li:first-child::after {
    width: 50%;
    left: 50%;
}

.wizard-circle .steps ul li:last-child::after {
    width: 50%;
    left: 0;
}

.wizard-circle .steps ul li.current::after,
.wizard-circle .steps ul li.done::after {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

 /* Step Number Badge  */
.wizard-circle .steps ul li a::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border: 3px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text-light);
    z-index: 2;
    transition: all var(--transition-bounce);
}

.wizard-circle .steps ul li.current a::before {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    box-shadow: 0 8px 20px rgba(10, 14, 97, 0.25);
    transform: translateX(-50%) scale(1.1);
}

.wizard-circle .steps ul li.done a::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    background: var(--color-success);
    border-color: var(--color-success);
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 36px;
}

.wizard > .steps .step {
    display: none;
}

.wizard > .steps > ul > li:before,
.wizard > .steps > ul > li:after {
    display: none;
}

 /* ----- FIELDSETS (Each Step) -----  */
.donationWizard fieldset {
    padding: 44px 44px 48px;
    background: var(--color-white);
    border: none;
    margin: 0;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 /* ============================================ */
   /* HEADER STYLES */
   /* ============================================  */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(10, 14, 97, 0.06), 0 2px 8px rgba(10, 14, 97, 0.04);
    padding: 6px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 3px solid var(--color-accent);
    backdrop-filter: blur(10px);
    width: 100%;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 12px 40px rgba(10, 14, 97, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.logoMain {
    display: inline-block;
    transition: all var(--transition-bounce);
    position: relative;
}

.logoMain::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.4s ease;
    border-radius: 10px;
}

.logoMain:hover::after {
    width: 100%;
}

.logoMain:hover {
    transform: scale(1.02);
}

.logoMain img {
    display: block;
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(10, 14, 97, 0.08));
    transition: filter var(--transition-normal);
}

.logoMain:hover img {
    filter: drop-shadow(0 6px 12px rgba(10, 14, 97, 0.15));
}

.dcartWrap {
    margin-left: auto;
    position: relative;
}

.dcartWrap .btn.dropdown-toggle {
    background: var(--color-bg-light);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-full) !important;
    padding: 14px 24px !important;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.dcartWrap .btn.dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 147, 47, 0.1), transparent);
    transition: left 0.5s ease;
}

.dcartWrap .btn.dropdown-toggle:hover::before {
    left: 100%;
}

.dcartWrap .btn.dropdown-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 12px 28px rgba(10, 14, 97, 0.25);
    transform: translateY(-2px);
}

.dcartWrap .btn.dropdown-toggle i {
    font-size: 1.4rem;
    transition: all var(--transition-normal);
}

.dcartWrap .btn.dropdown-toggle:hover i {
    transform: rotate(-5deg) scale(1.1);
    color: var(--color-accent);
}

.dcartWrap .btn.dropdown-toggle[aria-expanded="true"] {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(10, 14, 97, 0.3);
}

.dcartWrap .btn.dropdown-toggle[aria-expanded="true"] i {
    color: var(--color-accent);
}

.dcartWrap .badge {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 100px;
    margin-left: 6px;
    transition: all var(--transition-normal);
    border: 2px solid var(--color-white);
    box-shadow: 0 4px 10px rgba(255, 147, 47, 0.3);
    min-width: 28px;
    text-align: center;
}

.btn .badge {
    position: relative;
    top: 0;
}

.dcartWrap .btn.dropdown-toggle:hover .badge {
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(255, 147, 47, 0.5);
    transform: scale(1.1);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); background: var(--color-primary) !important; }
}

.dcartWrap .badge.update {
    animation: badgePulse 0.4s ease;
}

.donationDropDown {
    width: 380px;
    padding: 20px 0 0 0 !important;
    margin-top: 18px !important;
    border: 1px solid rgba(224, 225, 255, 0.8) !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 60px -10px rgba(10, 14, 97, 0.2), 0 8px 20px rgba(10, 14, 97, 0.1) !important;
    background: var(--color-white);
    overflow: hidden;
    animation: dropdownReveal var(--transition-bounce);
    transform-origin: top right;
    transform: none !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    will-change: auto !important;
}

@keyframes dropdownReveal {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.donationDropDown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--color-white);
    filter: drop-shadow(0 -2px 4px rgba(10, 14, 97, 0.05));
}

.donationDropDown h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-primary);
    padding: 0 24px 18px 24px;
    margin: 0;
    border-bottom: 2px solid var(--color-bg-light);
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.donationDropDown h4::before {
    content: '\f07a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.3rem;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(255, 147, 47, 0.2));
}

.list-dp-projects {
    max-height: 320px;
    overflow-y: auto;
    padding: 12px 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg-light);
}

.list-dp-projects::-webkit-scrollbar {
    width: 6px;
}

.list-dp-projects::-webkit-scrollbar-track {
    background: var(--color-bg-light);
    border-radius: 10px;
    margin: 8px 0;
}

.list-dp-projects::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
    opacity: 0.8;
}

.list-dp-projects::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

.list-dp-projects .dp-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    border-bottom: 1px solid var(--color-bg-light);
    transition: all 0.25s ease;
    border-radius: var(--border-radius-sm);
    margin-bottom: 4px;
}

.list-dp-projects .dp-item:hover {
    background: var(--color-bg-light);
    padding-left: 16px;
    padding-right: 16px;
    transform: translateX(4px);
}

.list-dp-projects .dp-item:last-child {
    border-bottom: none;
}

.list-dp-projects .dp-item .project-name {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.list-dp-projects .dp-item .project-amount {
    font-weight: 700;
    color: var(--color-primary);
}

.list-dp-projects .dp-item .remove-item {
    color: var(--color-error);
    opacity: 0.6;
    transition: all var(--transition-fast);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--border-radius-md);
}

.list-dp-projects .dp-item .remove-item:hover {
    opacity: 1;
    background: #fee2e2;
    transform: scale(1.1);
}

.row-dpTotal {
    padding: 10px 24px 8px 24px !important;
    margin: 0 !important;
    border-top: 2px solid var(--color-accent);
    background: linear-gradient(to top, var(--color-bg-light), transparent);
    font-size: 1.15rem;
}

.row-dpTotal .col-7 {
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 1rem;
}

.row-dpTotal .col-5 {
    font-weight: 800;
    color: var(--color-accent);
    font-size: 1.4rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(255, 147, 47, 0.1);
}

.list-dp-projects:empty::before {
    content: 'Your donation cart is empty';
    font-weight: 400;
    display: block;
    text-align: center;
    padding: 20px 20px;
    color: var(--color-text-light);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--color-bg-light), transparent);
    border-radius: var(--border-radius-md);
    margin: 8px;
}
.form-check-input {
    position: absolute;
    margin-top: 0rem;
    margin-left: -12px;
}

 /* ============================================ */
   /* STEP 1: START SCREEN */
   /* ============================================  */
.fieldsetFirst {
    text-align: center;
}

.fieldsetFirst h1,
.text-center.text-blue.mb-4.font-600 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    position: relative;
    padding-bottom: 18px;
    
     /* Subtle Shine — Sirf Accent Highlight  */
    background: linear-gradient(
        90deg,
        #0a0e61 0%,
        #0a0e61 40%,
        #ff932f 50%,
        #0a0e61 60%,
        #0a0e61 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: subtleShine 8s ease-in-out infinite;
    letter-spacing: 6px;  
    word-spacing: 4px;
}

@keyframes subtleShine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

 /* Soft Double Lines */
.fieldsetFirst h1::before,
.fieldsetFirst h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

 /* Top Line — Soft Orange  */
.fieldsetFirst h1::before {
    width: 60px;
    height: 2px;
    background: rgba(255, 147, 47, 0.6);
    bottom: 6px;
}

 /* Bottom Line — Soft Blue  */
.fieldsetFirst h1::after {
    width: 90px;
    height: 1.5px;
    background: rgba(10, 14, 97, 0.25);
    bottom: 0;
}
.fieldsetFirst p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.description-detail {
    background: var(--color-bg-light);
    padding: 32px 36px;
    border-radius: var(--border-radius-xl);
    margin: 36px 0;
    position: relative;
    overflow: hidden;
    border-left: 6px solid var(--color-accent);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 8px 20px rgba(10, 14, 97, 0.06);
}

.description-detail::after {
    content: "❤️";
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 5rem;
    opacity: 0.1;
    transform: rotate(10deg);
    pointer-events: none;
}

.description-detail h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.description-detail p {
    font-size: 1.1rem;
    color: #3a3f6e;
    margin-bottom: 0;
    font-weight: 400;
}

.btn-radio-wrap {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 20px;
}

.btn-radio-wrap input[type="radio"] {
    display: none;
}

.btn-radio-wrap label {
    flex: 1;
    max-width: 220px;
    padding: 20px 28px;
    background: var(--color-white);
    border: 2.5px solid var(--color-border);
    border-radius: 80px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-radio-wrap label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.btn-radio-wrap label:hover {
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 147, 47, 0.15);
}

.btn-radio-wrap input[type="radio"]:checked + label {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 16px 32px -8px rgba(10, 14, 97, 0.3);
    transform: scale(1.02);
}

.btn-radio-wrap input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 80px;
    border: 3px solid var(--color-accent);
    opacity: 0.6;
}

 /* ============================================ */
   /* STEP 2: DONATION AMOUNT SECTION */
   /* ============================================  */
.step-2-monthly,
.step-2-oneoff {
    animation: sectionFadeIn 0.4s ease-out;
    transition: all var(--transition-normal);
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-2-monthly h4,
.step-2-oneoff h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px !important;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.step-2-monthly h4::after,
.step-2-oneoff h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 4px;
}

.btn-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

/* ===== RADIO BUTTON  ===== */

.btn-list-wrap input[type="radio"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
}

.btn-list-wrap label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    background: var(--color-white);
    border: 2.5px solid var(--color-border);
    border-radius: var(--border-radius-full);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    min-height: 70px;
    word-break: break-word;
}

.btn-list-wrap label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 147, 47, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-list-wrap label:hover::before {
    left: 100%;
}

.btn-list-wrap label:hover {
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 147, 47, 0.15);
    background: #fefbf8;
}

.btn-list-wrap input[type="radio"]:checked + label {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1f6e 100%);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 16px 32px -8px rgba(10, 14, 97, 0.35);
    transform: scale(1.02);
}

.btn-list-wrap input[type="radio"]:checked + label::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    animation: checkPop var(--transition-bounce);
}

@keyframes checkPop {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.btn-list-amount {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 24px 0 14px;
}

.btn-list-amount label {
    flex: 1 0 calc(50% - 14px);
    max-width: 170px;
    min-width: 170px;
}

.btn-list-amount #fieldOfDonOther {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.btn-list-amount label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: var(--color-bg-light);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn-list-amount label:hover {
    background: var(--color-white);
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 14, 97, 0.1);
}

.btn-list-amount label .amount-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.btn-list-amount label .amount-currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-list-amount input[type="radio"]:checked + label {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 20px 36px -10px rgba(10, 14, 97, 0.4);
}

.btn-list-amount input[type="radio"]:checked + label .amount-value,
.btn-list-amount input[type="radio"]:checked + label .amount-currency {
    color: var(--color-white);
}

.btn-list-amount input[type="radio"]:checked + label::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 22px;
    text-align: center;
    animation: checkPop var(--transition-normal);
}

#fieldOfDonOther {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 2px solid var(--color-border);
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-white);
    margin-top: 12px;
    grid-column: 1 / -1 !important;
}
#fieldMonDonOther {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 2px solid var(--color-border);
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-white);
    margin-top: 12px;
    grid-column: 1 / -1 !important;
}

#fieldOfDonOther:hover {
    border-color: var(--color-accent);
}

#fieldOfDonOther:focus {
    outline: none !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 4px rgba(255, 147, 47, 0.1) !important;
}

#fieldOfDonOther::placeholder {
    color: #a0a5c0 !important;
}

#fieldMonDonOther:hover {
    border-color: var(--color-accent);
}

#fieldMonDonOther:focus {
    outline: none !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 4px rgba(255, 147, 47, 0.1) !important;
}

#fieldMonDonOther::placeholder {
    color: #a0a5c0 !important;
}

.descriptionAmount {
    padding: 20px 24px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    margin: 24px 0 16px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
    border-left: 5px solid var(--color-accent);
    transition: all var(--transition-normal);
}

.descriptionAmount:empty {
    display: none;
}

.descriptionAmount p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.descriptionAmount strong {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin: 0 6px;
}

.btnAddCartWrap {
    text-align: center;
    margin: 28px 0 36px;
}

.btn-addCart {
    display: inline-block;
    padding: 18px 44px;
    background: var(--color-white);
    border: 3px solid var(--color-accent);
    border-radius: 80px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    transition: all var(--transition-bounce);
    box-shadow: 0 6px 16px rgba(255, 147, 47, 0.12);
    position: relative;
    overflow: hidden;
}

.btn-addCart::before {
    content: '\f07a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 12px;
    font-size: 1.3rem;
}

.btn-addCart:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 20px 36px -8px rgba(255, 147, 47, 0.4);
}

.scrolltext {
    margin: 20px 0 10px;
}

.stepTwoPara {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1rem;
    animation: gentlePulse 2.5s infinite;
    background: #fff8f2;
    padding: 10px 20px;
    border-radius: var(--border-radius-2xl);
    display: inline-block;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.7; background: #fff8f2; }
    50% { opacity: 1; background: var(--color-accent); color: var(--color-white); }
}

.btn-list-wrap input[type="radio"]:focus + label,
.btn-list-amount input[type="radio"]:focus + label {
    outline: 4px solid var(--color-accent);
    outline-offset: 2px;
}

 /* ============================================ */
   /* STEP 3: GIFT AID SECTION */
   /* ============================================  */
.fieldsetGift {
    background: var(--color-bg-lighter);
    border-radius: 0 0 var(--border-radius-2xl) var(--border-radius-2xl);
    position: relative;
}

.fieldsetGift img {
    max-width: 200px;
    height: auto;
    margin-bottom: 16px;
}

.fieldsetGift h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.5;
    max-width: 550px;
    margin: 20px auto 24px !important;
    padding: 0 16px;
}

.fieldsetGift h5::before {
    content: '\f06b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 1.3rem;
    color: #ff932f;
}

.amountConvert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--color-bg-light);
    padding: 24px 28px;
    border-radius: var(--border-radius-full);
    margin: 24px auto 28px !important;
    max-width: 400px;
    border: 2px solid var(--color-border);
}

.selectAmount,
.conAmount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.conAmount {
    color: var(--color-accent);
    font-size: 2rem;
}

.amountConvert .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border-radius: 50%;
}

.amountConvert .icon i {
    color: var(--color-white);
    font-size: 1.3rem;
}

.form-group.form-check {
    margin: 28px 0 24px !important;
    padding: 20px 24px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--color-border);
    text-align: left;
}

.big-checkbox {
    width: 24px;
    height: 24px;
    margin-right: 14px;
    accent-color: var(--color-accent);
    cursor: pointer;
    vertical-align: middle;
}

.form-check-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.6;
    cursor: pointer;
    vertical-align: middle;
}

.big-checkbox:checked + .form-check-label {
    color: var(--color-primary);
    font-weight: 600;
}

.coustomTextArea {
    margin-top: 28px !important;
    padding: 20px 22px !important;
    background: var(--color-bg-lighter) !important;
    border-radius: var(--border-radius-sm) !important;
    border-left: 4px solid var(--color-primary) !important;
}

.coustomTextArea small {
    font-size: 0.85rem !important;
    color: var(--color-text-muted) !important;
    line-height: 1.6 !important;
    display: block;
}

.coustomTextArea small::before {
    content: 'ℹ️ ';
    margin-right: 6px;
    opacity: 0.7;
}

 /* ============================================ */
   /* STEP 4: PERSONAL DETAILS (secForm) */
   /* ============================================  */
.secForm {
    padding: 8px 0;
    animation: secFormFade 0.4s ease-out;
}

@keyframes secFormFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.secForm h2,
.secForm .h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 28px !important;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.secForm h2::after,
.secForm .h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 4px;
}

.text-center.secForm h2::after,
.text-center.secForm .h1::after,
.secForm .text-center h2::after,
.secForm .text-center .h1::after {
    left: 50%;
    transform: translateX(-50%);
}

.secForm label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.secForm label .text-blue,
.secForm label span {
    color: var(--color-accent) !important;
    font-size: 1.2rem;
    margin-left: 3px;
}

.secForm .form-control {
    width: 100%;
    height: 55px !important;
    padding: 0 20px !important;
    border: 2px solid var(--color-border) !important;
    border-radius: 18px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--color-primary) !important;
    background: var(--color-white) !important;
    transition: all var(--transition-bounce) !important;
    box-shadow: 0 2px 8px rgba(10, 14, 97, 0.02) !important;
    line-height: 55px !important;
    align-content: center;
}
.secForm .form-control:hover {
    border-color: var(--color-accent) !important;
    background: #fefbf8 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 147, 47, 0.08) !important;
}

.secForm .form-control:focus {
    outline: none !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 5px rgba(255, 147, 47, 0.1), 0 8px 20px rgba(10, 14, 97, 0.08) !important;
    background: var(--color-white) !important;
    transform: translateY(-2px);
}

.secForm .form-control::placeholder {
    color: #a0a5c0 !important;
    font-weight: 400 !important;
    font-size: 0.95rem !important;
    opacity: 0.7 !important;
    line-height: 55px !important;
}

.secForm .form-control:focus::placeholder {
    opacity: 0.4;
    transform: translateX(6px);
}

.secForm select.form-control option {
    padding: 14px 20px !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    color: var(--color-primary) !important;
    background: var(--color-white) !important;
    line-height: 1.5 !important;
    min-height: 45px !important;
    box-shadow: 0 1px 0 var(--color-border) !important;
}

.secForm select.form-control option:hover,
.secForm select.form-control option:checked,
.secForm select.form-control option:focus {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-border) 100%) !important;
    color: var(--color-primary) !important;
}

.secForm .form-control.required:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--color-error) !important;
    background: #fef2f2 !important;
}

.secForm .form-control.required:valid:not(:placeholder-shown):not(:focus) {
    border-color: var(--color-success) !important;
    background: #f0fdf4 !important;
}

.secForm input.form-control.required:valid:not(:placeholder-shown) {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%2310b981" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 18px !important;
    padding-right: 55px !important;
}

.secForm + hr,
.secForm hr {
    margin: 32px 0 28px !important;
    border: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--color-border) 20%, var(--color-border) 80%, transparent) !important;
}

.secForm .keepTouchText,
.keepTouchText {
    font-size: 1.05rem !important;
    color: var(--color-text-muted) !important;
    line-height: 1.7 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 28px !important;
    padding: 0 16px !important;
}

.secForm .checkboxWrap,
.checkboxWrap {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 32px !important;
    margin: 24px 0 16px !important;
    padding: 16px 24px !important;
    background: var(--color-bg-lighter) !important;
    border-radius: var(--border-radius-full) !important;
    border: 1.5px solid var(--color-border) !important;
}

.secForm .big-checkbox,
.big-checkbox {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    accent-color: var(--color-accent);
    cursor: pointer;
    vertical-align: middle;
    transition: all var(--transition-fast);
    border-radius: 6px;
    margin-bottom: 0;
}

.form-check-inline label {
    margin-bottom: 0;
}

.secForm .big-checkbox:hover,
.big-checkbox:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 0 4px rgba(255, 147, 47, 0.15) !important;
}

.secForm .form-check-label,
.form-check-label {
    font-weight: 500 !important;
    color: var(--color-text-dark) !important;
    cursor: pointer !important;
    vertical-align: middle !important;
    font-size: 1.05rem !important;
    transition: color var(--transition-fast) !important;
    padding-left: 10px;
}

.secForm .big-checkbox:checked + .form-check-label,
.big-checkbox:checked + .form-check-label {
    color: var(--color-primary) !important;
    font-weight: 700 !important;
}

.error {
    display: block;
    color: var(--color-error) !important;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border: none;
    line-height: 1.4;
}



.secForm .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 8px;
}

.secForm .form-group {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 24px;
    position: relative;
}

.secForm .col-md-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.secForm .col-md-5 { flex: 0 0 41.666%; max-width: 41.666%; }
.secForm .col-md-6 { flex: 0 0 50%; max-width: 50%; }
.secForm .col-md-12 { flex: 0 0 100%; max-width: 100%; }

 /* ============================================ */
   /* DONATION SUMMARY BOX */
   /* ============================================  */
.yourDonation {
    background: var(--color-bg-light);
    padding: 20px 24px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--color-border);
    margin-bottom: 28px !important;
}

.yourDonation p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.yourDonation p span {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.4rem;
}

.yourDonation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1.5px solid var(--color-border);
    padding-top: 14px;
}

.yourDonation ul li {
    padding: 10px 0;
}

.yourDonation ul li:last-child {
    padding-bottom: 0;
}

.yourDonation .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yourDonation .col-6:first-child {
    font-weight: 500;
    color: var(--color-text-dark);
    font-size: 1rem;
}

.yourDonation .col-6:last-child {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    text-align: right;
}

.yourDonation ul li + li {
    border-top: 1px dashed var(--color-border);
    margin-top: 6px;
    padding-top: 14px;
}

 /* ============================================ */
   /* STEP 5: PAYMENT SECTION */
   /* ============================================  */
#paymentContainer {
    border: none !important;
    border-radius: var(--border-radius-lg) !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 14, 97, 0.06);
    background: var(--color-white);
}

#paymentContainer .card-header {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-lighter) 100%);
    border-bottom: 2px solid var(--color-border);
    padding: 20px 24px;
}

#paymentContainer .card-header h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

#paymentContainer .icons img {
    max-height: 44px;
    width: auto;
}

#paymentContainer .card-body {
    padding: 28px 24px;
}

.digital-wallet-container {
    margin-bottom: 24px !important;
    min-height: 44px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0 !important;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1.5px solid var(--color-border);
}

.divider span {
    padding: 0 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stripeInput:hover {
    border-color: var(--color-accent) !important;
}

.stripeInput.StripeElement--focus {
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 4px rgba(255, 147, 47, 0.1) !important;
}

.stripeInput.StripeElement--invalid {
    border-color: var(--color-error) !important;
}

.input-group {
    display: flex;
    align-items: stretch;
}

.input-group .stripeInput {
    flex: 1;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm) !important;
    border-right: none !important;
}

.input-group-prepend .input-group-text {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-left: none;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: 0 18px;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.input-group:hover .stripeInput,
.input-group:hover .input-group-text {
    border-color: var(--color-accent);
}

.input-group .stripeInput.StripeElement--focus + .input-group-prepend .input-group-text {
    border-color: var(--color-accent);
}

#paymentContainer .form-group {
    margin-bottom: 22px;
}
#paymentResponse{
    color:red;
}

.btn-finish {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1f6e 100%);
    border: none;
    border-radius: var(--border-radius-full);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-bounce);
    box-shadow: 0 8px 24px rgba(10, 14, 97, 0.2);
    margin-top: 16px;
    position: relative;
    overflow: hidden;
}

.btn-finish:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 147, 47, 0.3);
}

.btn-finish:active {
    transform: translateY(0);
}

.btn-finish .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

 /* ============================================ */
   /* NAVIGATION BUTTONS */
   /* ============================================  */
.btnWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    gap: 20px;
}

.btn-prev,
.btn-next {
    padding: 16px 36px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
}

.btn-prev {
    background: var(--color-bg-light);
    color: var(--color-text-muted);
}

.btn-prev:hover {
    background: var(--color-border);
    color: var(--color-primary);
    transform: translateX(-6px);
}

.btn-prev i {
    transition: transform var(--transition-fast);
}

.btn-prev:hover i {
    transform: translateX(-4px);
}

.btn-next {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(10, 14, 97, 0.2);
}

.btn-next:hover {
    background: var(--color-accent);
    transform: translateX(6px);
    box-shadow: 0 16px 32px -6px rgba(255, 147, 47, 0.35);
}

.btn-next i {
    transition: transform var(--transition-fast);
}

.btn-next:hover i {
    transform: translateX(4px);
}

 /*============================================
   FOOTER
   ============================================ */
#Wizfooter {
    max-width: 720px;
    text-align: center;
}

.footerContent {
    padding: 20px;
}

#Copyrights {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============================================
   UTILITIES
   ============================================ */
.d-none {
    display: none !important;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}
#paymentContainer h5 {
    margin: 0 !important;
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
    all: unset;
}

 /* Field error  */
/* ===== ERROR OVERRIDE - PREVENT BUTTON STYLING ===== */

.btn-list-wrap .error {
    display: block !important;
    width: 100% !important;
    grid-column: 1 / -1 !important;
    
    /* Reset button styling */
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 6px 0 0 0;
    margin: 0 !important;
    min-height: auto;
    box-shadow: none;
    transform: none;
    
    /* Error text styling */
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
    
    /* Remove hover effects */
    pointer-events: none;
}

.btn-list-wrap .error::before {
    content: '⚠️ ';
    font-size: 0.75rem;
    margin-right: 4px;
}

.btn-list-wrap .error:hover {
    background: transparent !important;
    border: none !important;
    transform: none !important;
    box-shadow: none !important;
}
 /* Global error End  */
 
/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}


/* ===== THANK YOU PAGE - PREMIUM STYLING ===== */
.thank-you {
    margin: 40px auto;
    padding: 0 20px;
    max-width: 720px;
}

.thankyouBox {
    background: var(--color-white);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-xl), 0 10px 30px -10px rgba(10, 14, 97, 0.1);
    overflow: hidden;
    border: 1px solid rgba(224, 225, 255, 0.6);
    animation: thankYouReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes thankYouReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- Title Area ----- */
.thankyouBox .titleArea {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1f6e 100%);
    padding: 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Celebration confetti effect */
.thankyouBox .titleArea::before {
    content: '🎉 🎊 ✨ 🎉 🎊 ✨';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    font-size: 2rem;
    opacity: 0.15;
    white-space: nowrap;
    animation: confettiSlide 20s linear infinite;
}

@keyframes confettiSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.thankyouBox .titleArea h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.thankyouBox .titleArea h2 i {
    font-size: 2.5rem;
    color: var(--color-accent);
    background: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: checkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes checkPop {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* ----- Content Area ----- */
.thankyouBox .contentArea {
    padding: 36px 32px 40px;
    background: var(--color-white);
}

/* Donation Details Card */
.cardINforData {
    background: var(--color-bg-light);
    border-radius: var(--border-radius-lg);
    padding: 8px 0;
    margin-bottom: 32px;
    border: 1.5px solid var(--color-border);
    overflow: hidden;
}

.cardINforData table {
    width: 100%;
    border-collapse: collapse;
}

.cardINforData table tr {
    border-bottom: 1px solid var(--color-border);
}

.cardINforData table tr:last-child {
    border-bottom: none;
}

.cardINforData table td {
    padding: 18px 24px;
    font-size: 1.05rem;
}

.cardINforData table td:first-child {
    font-weight: 600;
    color: var(--color-primary);
    width: 40%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cardINforData table td:last-child {
    font-weight: 700;
    color: var(--color-text-dark);
    text-align: right;
}

/* Status special styling */
.cardINforData table tr:last-child td:last-child {
    color: var(--color-success);
}

/* Table header */
.cardINforData table thead tr {
    background: var(--color-primary);
}

.cardINforData table thead td {
    padding: 16px 24px;
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.cardINforData table thead td:first-child {
    color: var(--color-white);
}

/* ----- Button Area ----- */
.btnThankYou {
    text-align: center;
}

.btn-thankyou {
    display: inline-block;
    padding: 16px 36px;
    background: var(--color-primary);
    border: none;
    border-radius: var(--border-radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-bounce);
    box-shadow: 0 8px 24px rgba(10, 14, 97, 0.2);
    border: 2px solid transparent;
}

.btn-thankyou i {
    margin-right: 12px;
    transition: transform var(--transition-fast);
}

.btn-thankyou:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 147, 47, 0.3);
    text-decoration: none;
    border: none;
}

.btn-thankyou:hover i {
    transform: translateX(-6px);
}

.btn-thankyou:active {
    transform: translateY(0);
}

.thank-footer {
    max-width: 720px;
    margin: 20px auto 40px;
    padding: 0 20px;
    text-align: center;
}

.thank-footer .footerLogo {
    margin-bottom: 24px;
}

.thank-footer .footerLogo img {
    max-width: 180px;
    height: auto;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
    filter: drop-shadow(0 4px 8px rgba(10, 14, 97, 0.06));
}

.thank-footer .footerLogo img:hover {
    opacity: 1;
}

.thank-footer .footerContent {
    padding: 0;
}

.thank-footer .footerContent p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.thank-footer .footerContent p:last-child {
    margin-bottom: 0;
}

.thank-footer .footerContent a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.thank-footer .footerContent a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    text-decoration: none;
}

/* Divider between links */
.thank-footer .footerContent p span {
    color: var(--color-border);
    margin: 0 8px;
}

/* Copyright text */
#Copyrights {
    color: var(--color-text-light) !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px;
    margin-top: 16px !important;
}

/* ===== SORRY PAGE ===== */

.sorry-page {
    max-width: 720px;
    margin: 40px auto;
    padding: 0 20px;
}

.sorryReskin .thankyouBox {
    background: var(--color-white);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-xl), 0 10px 30px -10px rgba(10, 14, 97, 0.1);
    overflow: hidden;
    border: 1px solid rgba(224, 225, 255, 0.6);
    animation: sorryReveal 0.5s ease-out;
}

@keyframes sorryReveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- Title Area (Red/Orange Tone for Sorry) ----- */
.sorryReskin .thankyouBox .titleArea {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sorryReskin .thankyouBox .titleArea::before {
    content: '💔 💔 💔';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    font-size: 2rem;
    opacity: 0.1;
    white-space: nowrap;
    animation: sorrySlide 15s linear infinite;
}

@keyframes sorrySlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30%); }
}

.sorryReskin .thankyouBox .titleArea h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sorryReskin .thankyouBox .titleArea h2 i {
    font-size: 2.5rem;
    color: #dc2626;
    background: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: infoPop 0.4s ease-out 0.1s both;
}

@keyframes infoPop {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ----- Content Area ----- */
.sorryReskin .thankyouBox .contentArea {
    padding: 36px 32px 40px;
    background: var(--color-white);
}

/* Headings */
.sorryReskin .thankyouBox .contentArea h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.sorryReskin .thankyouBox .contentArea h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Links */
.sorryReskin .thankyouBox .contentArea a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    border-bottom: 1.5px solid transparent;
}

.sorryReskin .thankyouBox .contentArea a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-accent);
    text-decoration: none;
}

/* Bank Details Box */
.sorryReskin .thankyouBox .contentArea .bnkDetails {
    background: var(--color-bg-light);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--color-border);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 16px 0 20px;
    line-height: 1.8;
    border-left: 5px solid var(--color-accent);
}

/* Paragraphs */
.sorryReskin .thankyouBox .contentArea p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.sorryReskin .thankyouBox .contentArea p:last-of-type {
    margin-bottom: 0;
}

/* Alternative Payment Links Row */
.sorryReskin .thankyouBox .contentArea p a {
    margin: 0 4px;
}

/* ----- Button Area ----- */
.sorryReskin .thankyouBox .btnThankYou {
    text-align: center;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 2px solid var(--color-bg-light);
}

.sorryReskin .thankyouBox .btn-thankyou {
    display: inline-block;
    padding: 16px 36px;
    background: var(--color-primary);
    border: none;
    border-radius: var(--border-radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-bounce);
    box-shadow: 0 8px 24px rgba(10, 14, 97, 0.2);
}

.sorryReskin .thankyouBox .btn-thankyou i {
    margin-right: 12px;
    transition: transform var(--transition-fast);
}

.sorryReskin .thankyouBox .btn-thankyou:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 147, 47, 0.3);
    text-decoration: none;
    border-bottom: none;
}

.sorryReskin .thankyouBox .btn-thankyou:hover i {
    transform: translateX(-6px);
}
.footerContent {
    text-align: center;
    padding: 24px 20px;
    max-width: 720px;
    margin: 0 auto;
}

.footerContent p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footerContent p:last-child {
    margin-bottom: 0;
}

/* Links Styling */
.footerContent a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
}

.footerContent a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    text-decoration: none;
}

/* Pipe Separator */
.footerContent p span,
.footerContent p {
    color: var(--color-text-muted);
}

/* Copyright Text */
#Copyrights {
    color: var(--color-text-light) !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px;
    margin-top: 12px !important;
    opacity: 0.8;
}


/* ============================================
  /* MEDIA QUERIES */
   /* ============================================ */ 

 /* ----- Mobile (max-width: 640px) -----  */
@media (max-width: 640px) {
     Wizard Base 
    .donationWizard {
        margin: 20px 16px;
        border-radius: var(--border-radius-xl);
    }
    .list-dp-projects:empty::before {
    padding: 13px 15px;
}
.list-dp-projects:empty::after {
    padding: 0 20px 0px;
}
    
    .wizard > .content > .body {
        padding: 40px 5px;
    }
  .fieldsetFirst h1, .text-center.text-blue.mb-4.font-600 {
    font-size: 1.2rem;
}
    .wizard-circle .steps {
        padding: 24px 20px 25px;
    }

    .wizard-circle .steps ul li a {
        font-size: 0.75rem;
    }

    .wizard-circle .steps ul li a::before {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .donationWizard fieldset {
        padding: 32px 24px 36px;
    }

     /* Step 1  */
    .fieldsetFirst h1 {
        font-size: 2rem;
    }

    .description-detail {
        padding: 24px 20px;
    }

    .description-detail h2 {
        font-size: 1.2rem;
    }

    .btn-radio-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .btn-radio-wrap label {
        max-width: none;
        padding: 16px 20px;
        font-size: 1.1rem;
    }

     /* Step 2  */
    .btn-list-wrap {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-list-wrap label {
        padding: 16px 20px;
        font-size: 1rem;
        min-height: 60px;
    }

    .btn-list-amount {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-list-amount label {
        padding: 16px 12px;
    }

    .btn-list-amount label .amount-value {
        font-size: 1.8rem;
    }

    .btn-list-amount input[type="radio"]:checked + label {
        transform: scale(1.02);
    }

    .step-2-monthly h4,
    .step-2-oneoff h4 {
        font-size: 1.1rem;
    }

    .descriptionAmount {
        padding: 16px 18px;
        font-size: 1rem;
    }

    .btn-addCart {
        padding: 16px 28px;
        font-size: 1.1rem;
        width: 100%;
    }

     /* Step 3  */
    #tax-payer-heading {
        font-size: 1rem;
        padding: 0 8px;
    }

    .amountConvert {
        padding: 18px 16px;
        gap: 12px;
        border-radius: var(--border-radius-2xl);
    }

    .selectAmount,
    .conAmount {
        font-size: 1.4rem;
    }

    .conAmount {
        font-size: 1.5rem;
    }

    .amountConvert .icon {
        width: 36px;
        height: 36px;
    }

    .amountConvert .icon i {
        font-size: 1rem;
    }

    .form-group.form-check {
        padding: 16px 18px;
    }

    .form-check-label {
        font-size: 0.85rem;
    }

    .coustomTextArea {
        padding: 16px 18px !important;
    }

    .coustomTextArea small {
        font-size: 0.8rem !important;
    }

    #single-giftaid-image {
        max-width: 160px;
    }

     /* Step 4  */
    .secForm h2,
    .secForm .h1 {
        font-size: 1.5rem !important;
    }

    .secForm .col-md-2,
    .secForm .col-md-5,
    .secForm .col-md-6,
    .secForm .col-md-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .secForm .form-control {
        height: 52px !important;
        padding: 0 16px !important;
        font-size: 0.95rem !important;
        line-height: 52px !important;
    }

    .secForm .checkboxWrap,
    .checkboxWrap {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 18px !important;
        padding: 16px 20px !important;
        border-radius: 30px !important;
    }

    .secForm .big-checkbox,
    .big-checkbox {
        width: 20px !important;
        height: 20px !important;
    }

    .form-check-input.big-checkbox {
        margin-left: -10px;
    }

    div#KIT-single {
        margin-bottom: 5px !important;
    }

    .secForm .keepTouchText,
    .keepTouchText {
        font-size: 0.95rem !important;
        padding: 0 8px !important;
    }

     Donation Summary 
    .yourDonation {
        padding: 16px 18px;
    }

    .yourDonation p {
        font-size: 1rem;
    }

    .yourDonation p span {
        font-size: 1.2rem;
    }

    .yourDonation .col-6:first-child {
        font-size: 0.95rem;
    }

    .yourDonation .col-6:last-child {
        font-size: 1rem;
    }

     Navigation 
    .btnWrap {
        flex-direction: column-reverse;
        gap: 14px;
    }

    .btn-prev,
    .btn-next {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

     Header 
    .header {
        padding: 12px 0;
    }

    .header .container {
        padding: 0 16px;
    }

    .logoMain img {
        width: 60px;
        height: auto;
    }

    .dcartWrap .btn.dropdown-toggle {
        padding: 12px 18px !important;
        font-size: 1rem;
    }

    .dcartWrap .btn.dropdown-toggle span:not(.badge) {
        display: none;
    }

    .donationDropDown {
        width: 320px;
        position: fixed !important;
        top: 75px !important;
        right: 12px !important;
        left: auto !important;
        transform: none !important;
        border-radius: var(--border-radius-lg) !important;
    }

    .donationDropDown::before {
        right: 20px;
    }

    .donationDropDown h4 {
        font-size: 1rem;
        padding: 0 20px 16px 20px;
    }

    .row-dpTotal {
        padding: 16px 20px 8px 20px !important;
    }

    .row-dpTotal .col-5 {
        font-size: 1.2rem;
    }

     Payment 
    #paymentContainer .card-header {
        padding: 16px 18px;
    }

    #paymentContainer .card-header .col-7 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    #paymentContainer .card-header .col-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    #paymentContainer .card-header h5 {
        font-size: 1rem;
    }

    #paymentContainer .icons img {
        max-height: 36px;
    }

    #paymentContainer .card-body {
        padding: 20px 16px;
    }

    .stripeInput {
        min-height: 50px !important;
    }

    .btn-finish {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
       .thank-you {
        margin: 20px 12px;
        padding: 0;
    }

    .thankyouBox .titleArea {
        padding: 28px 20px;
    }

    .thankyouBox .titleArea h2 {
        font-size: 1.2rem;
        gap: 12px;
    }

    .thankyouBox .titleArea h2 i {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .thankyouBox .contentArea {
        padding: 24px 20px 28px;
    }

    .cardINforData table td {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .cardINforData table td:first-child {
        width: 45%;
        font-size: 0.8rem;
    }

    .btn-thankyou {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
    }
    .thank-footer {
        margin: 16px auto 30px;
        padding: 0 16px;
    }

    .thank-footer .footerLogo img {
        max-width: 140px;
    }

    .thank-footer .footerContent p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .thank-footer .footerContent a {
        display: inline-block;
        margin: 4px 0;
    }
    .sorry-page {
        margin: 20px 12px;
        padding: 0;
    }

    .sorryReskin .thankyouBox .titleArea {
        padding: 28px 20px;
    }

    .sorryReskin .thankyouBox .titleArea h2 {
        font-size: 1.4rem;
        gap: 10px;
    }

    .sorryReskin .thankyouBox .titleArea h2 i {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .sorryReskin .thankyouBox .contentArea {
        padding: 24px 20px 28px;
    }

    .sorryReskin .thankyouBox .contentArea h5 {
        font-size: 1.1rem;
    }

    .sorryReskin .thankyouBox .contentArea h6 {
        font-size: 0.95rem;
    }

    .sorryReskin .thankyouBox .contentArea .bnkDetails {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .sorryReskin .thankyouBox .contentArea p {
        font-size: 0.95rem;
    }

    .sorryReskin .thankyouBox .btn-thankyou {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
    }
     .footerContent {
        padding: 20px 16px;
    }

    .footerContent p {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .footerContent a {
        display: inline-block;
        margin: 2px 0;
    }

    #Copyrights {
        font-size: 0.8rem !important;
    }
    .thank-you {
    overflow-x: hidden;
}
.sorry-page{
    overflow-x: hidden;
}
}

/* ----- Tablet (641px - 1024px) ----- */
@media (min-width: 641px) and (max-width: 1024px) {
    .btn-list-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-list-amount {
        grid-template-columns: repeat(2, 1fr);
    }

    .secForm .col-md-2 { 
        flex: 0 0 25% !important; 
        max-width: 25% !important; 
    }
    
    .secForm .col-md-5 { 
        flex: 0 0 37.5% !important; 
        max-width: 37.5% !important; 
    }

    .header .container {
        padding: 0 24px;
    }

    .donationDropDown {
        width: 360px;
    }
        .thank-you {
        margin: 30px 20px;
    }
     .sorry-page {
        margin: 30px 20px;
    }

    .sorryReskin .thankyouBox .titleArea h2 {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .btn-list-amount label {
        flex-basis: calc(50% - 14px);
    }
    .btn-list-amount #fieldOfDonOther {
    flex-basis: unset;
   
}
}

/* Mobile */
@media (max-width: 480px) {
    .btn-list-amount {
        flex-direction: column;
    }
    
    .btn-list-amount label {
        flex-basis: auto;
        max-width: 100%;
    }
}