.pt-100 {
    padding-top: 100px;
}

.py-10 {
    padding: 80px 0;
}

.pb-10 {
    padding-bottom: 80px;
}
.bg-soft-danger{
    background-color: #f8d7da !important;
    margin-bottom: 12px;
    align-items: center;
    flex-direction: row;
}
.border-footer{
    border-top: 0.1px solid #c4c5c0 !important;
    padding: 10px 0px;
}
.registerHereLeft{
    display: none !important;
}

.copyright-text{
    font-size: 12px !important;
}
.refund-text:hover{
    color: #e3e3e3 !important;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-medium{
    gap: 16px;
}

.banner-two-card::before {
    background: #295cac;
}

.banner-two-card:hover::before {
    background: #295cac;
}

#inputFields,
#responseFields,
#paymentMethods {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}
.text-white{
    color: #fff !important;
}
#inputFields.hidden,
#responseFields.hidden,
#paymentMethods.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.payment-method-card {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.payment-method-card:hover {
    background-color: rgba(var(--main-rgb), 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#backBtn {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

#backBtn.visible {
    opacity: 1;
    transform: translateX(0);
}

.banner-two-button {
    min-height: 48px;
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    background-color: #295cac;
    transition: opacity 0.3s ease;
}

.banner-two-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-slide-in {
    animation: fadeSlideIn 0.3s ease-out forwards;
}


.accordion-button::after {
    background-color: #295cac;
}

.fs-14 {
    font-size: 14px;
}

/* .banner-two-button::before { 
    background-color: #295cac;
} */

.banner-two-title {
    font-size: 52px;
}


.border-neutral-50 {
    border-color: #c4c5c0 !important;
}

.header-three.fixed-header {
    display: none;
}

.header {
    top: 60px;
}

.w-20 {
    width: 20%;
}

.mobile-text {
    display: none;
}

@media (max-width: 991px) {
    .gradient-text {
        text-transform: uppercase;
        background: linear-gradient(360deg, rgba(38, 38, 37, 54%) 25.83%, #D5D5D5 74.58%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .registerHereLeft {
        display: block !important;
    }

    .helpline-content{
        display: none !important;
    }

    .registerHereRight{
        display: none !important;
    }

    .banner-two-title {
        display: none;
    }

    .subtitle {
        display: none;
    }

    .pt-100 {
        padding-top: 80px;
    }

    .header {
        top: 50px;
    }

    .boards {
        display: none !important;
    }

    .mobile-text {
        display: block;
    }
}

@media (max-width: 600px) {
    .header .main-logo-sm {
        width: 50px;
    }

    .logo-text {
        font-size: 12px;
    }

    .header .main-logo-sm-2 {
        width: 110px;
    }

    .fs-14 {
        font-size: 12px;
        font-weight: 300;
    }

    .sm-none {
        display: none !important;
    }
    .contact-medium{
        gap: 4px;
    }


}


.lang-switcher-btn {
    padding: 0;
    z-index: 999;
}

.topbar h6 {
    font-weight: 500 !important;
}


/* Enhanced Payment Method Card Styles */
.payment-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 4px 8px 4px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.15s;
    background: #fff;
    min-height: 115px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
    outline: none;
    justify-content: center;
}

.payment-card:hover,
.payment-card:focus {
    border-color: #2563eb;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.10);
    background: #f5faff;
    transform: translateY(-2px) scale(1.03);
}

.payment-radio:checked+.payment-card {
    border-color: #2563eb;
    background: #eaf1ff;
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.13);
}

.payment-icon-lg {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.08));
}

.payment-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #22223b;
    margin-top: 4px;
    letter-spacing: 0.01em;
}

.custom-radio-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #c4c5c0;
    border-radius: 50%;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.payment-radio:checked+.payment-card .custom-radio-indicator {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px #2563eb33;
    background: #2563eb;
}

.custom-radio-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    display: block;
}

.payment-radio:checked+.payment-card .custom-radio-indicator::after {
    opacity: 1;
    background: #fff;
    box-shadow: 0 0 0 2px #2563eb;
    animation: popIn 0.25s;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    80% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.preloader-svg-spin {
    display: block;
    margin: 0 auto;
}

/* New styles for updated design */
.top-left-div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-left {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.top-right-div {
    display: flex;
    align-items: center;
    gap: 20px ;
}

.language-switcher select {
    padding: 3px;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
}

.payment-option-section {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.payment-option-section-div {
    width: 19.2%;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .payment-option-section-div {
        width: 32.5%;
    }

    .payment-option-section {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .payment-option-section-div {
        width: 48.5%;
    }
    .top-right-div {
        display: flex;
        align-items: center;
        gap: 12px !important;
    }

    .payment-option-section {
        gap: 6px;
    }
}

@media (max-width: 360px){
    /* .header {
        top: 83px ;
    }   */
    .header .main-logo-sm{
        width: 40px;
    } 
    .icon-left{
        display: none;
    } 
    .logo-text{
        font-size: 10px;
    }
  
}
@media (max-width: 350px){
    .top-right-div {
        gap: 4px !important;
    }
}

/* @media (max-width: 320px){  
    .header {
        top: 83px ;
    }  
    .logo-text{
        font-size: 10px;
    }
    .header .main-logo-sm-2 {
        width: 100px;
    }
} */

@media (max-width: 425px) {

    .banner-subtitle{
        font-size: 14px;
        line-height: 1.4;
        /* margin-top: 10px; */
    }
    #paymentStatusModal .payment-record-header {
        width: 100%;
    }

    #paymentStatusModal .payment-type {
        font-size: 0.95rem;
        margin-right: 8px;
        line-height: 1.2;
    }

    #paymentStatusModal .applicant-name {
        padding-top: 6px;
    }

    #paymentStatusModal .badge {
        min-width: 60px;
        font-size: 0.75rem;
    }

    #paymentStatusModal .col-12 {
        margin-top: 0.5rem;
    }
}



/* Payment Status Modal Styles */
.payment-record {
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.payment-record:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.payment-type {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.payment-record-header {
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px !important;
}

.applicant-name {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.payment-type-section h6 {
    color: #295cac;
    margin-bottom: 15px;
    font-size: 17px;
    position: relative;
    padding-left: 15px;
}

.payment-type-section h6:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 4px;
    background-color: #295cac;
    border-radius: 4px;
}

.badge.bg-success {
    background-color: #10b981 !important;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.badge.bg-danger {
    background-color: #ef4444 !important;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
}

.payment-record .row {
    margin-bottom: 0;
}

.payment-record .d-flex {
    padding: 4px 0;
}
.modal-toptext{
    padding: 16px 16px 0px 16px !important;
}
.refund-footer{
    background-color: #d9eeff;
    justify-content: center !important;
    color: black !important;
    text-align: center !important;
}
.payment-record .text-muted {
    color: #6b7280 !important;
    font-size: 13px;
    min-width: 80px;
}

.payment-record .fw-medium {
    color: #111827;
    font-size: 14px;
}

.payment-record .btn-primary {
    background-color: #295cac;
    border-color: #295cac;
    transition: all 0.2s ease;
}

.payment-record .btn-primary:hover {
    background-color: #1e4b8f;
    border-color: #1e4b8f;
    box-shadow: 0 2px 8px rgba(41, 92, 172, 0.3);
}

/*Language*/
.language-switcher select option {
    color: blue;
}

.language-switcher select {
    color: white;
    background-color: transparent;
}

.select-arrow {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center; /* ← Adjust gap here */
    background-size: 16px;
    padding-right: 16px; /* ← More padding for text to avoid overlap */
}
