        :root {
            --primary: #6366f1;
            --primary-hover: #4f46e5;
            --secondary: #f1f5f9;
            --text-light: #64748b;
            --card-bg: rgba(255, 255, 255, 0.98);
        }


        .request-container {
            perspective: 1000px;
        }

        .request-card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(200, 201, 208, 0.5);
            transform-style: preserve-3d;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .request-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
        }



        .request-title {
            font-weight: 700;
            font-size: 1.75rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .request-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .form-label {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-control {
            border-radius: 12px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            background-color: var(--secondary);
            border: 1px solid #b0b6bb;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
            background-color: white;
        }

        .form-control::placeholder {
            color: var(--text-light);
            opacity: 0.6;
        }

        .btn-request {
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem;
            background: var(--primary);
            border: none;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-request:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        .btn-request:active {
            transform: translateY(0);
        }

        .btn-request::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-100%) rotate(45deg);
            transition: all 0.6s ease;
        }

        .btn-request:hover::after {
            transform: translateX(100%) rotate(45deg);
        }

        .alert {
            border-radius: 12px;
            font-size: 0.95rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
            border: none;
        }

        .input-group-text {
            background-color: var(--secondary);
            border: 1px solid #b0b6bb;

            border-right: none;
            border-radius: 12px 0 0 12px !important;
        }

        .input-group .form-control {
            border-left: none;
            border-radius: 0 12px 12px 0 !important;
        }

        @media (max-width: 768px) {
            .request-card {
                padding: 1.75rem;
            }

            .request-title {
                font-size: 1.5rem;
            }
        }

        /* Animation for form elements */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        .form-group {
            animation: fadeInUp 0.4s ease forwards;
            opacity: 0;
        }

        .form-group:nth-child(1) {
            animation-delay: 0.1s;
        }

        .form-group:nth-child(2) {
            animation-delay: 0.2s;
        }

        .form-group:nth-child(3) {
            animation-delay: 0.3s;
        }

        .btn-request {
            animation: fadeInUp 0.4s ease 0.4s forwards;
        }


        .btn-check:checked+.btn-outline-primary {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
        }

        .btn-outline-primary {
            border-radius: 12px !important;
            font-weight: 600;
            border: 2px solid var(--primary);
            color: var(--primary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }



        .d-flex.gap-3 {
            gap: 1rem !important;
        }

        .form-select {
            border-radius: 12px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            background-color: var(--secondary);
            border: 1px solid #b0b6bb;

            transition: all 0.3s ease;
            appearance: none;
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 16px 12px;
        }

        .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
            background-color: white;
        }

        .payment_btn {
            background-color: #6366F1;
            color: #fff;
            font-weight: 700;
            padding: 10px 20px;
            border: 2px solid transparent;
            text-decoration: none;
            border-radius: 30px;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .payment_btn:hover {
            background-color: #fff;
            color: #6366F1;
            border: 2px solid #6366F1;
            box-shadow: 0 6px 14px rgba(99, 102, 241, 0.25);
        }

        /* ================================================= */



        @media only screen and (min-width: 768px) {

            body:not(.layout-admin) .section,
            body:not(.layout-admin) section {
                padding: 20px 0;
            }
        }

        .d-middle {
            align-items: center;
            display: flex;
            justify-content: center;
        }

        .opacity-8,
        .overlay-opacity-8:after {
            opacity: .8
        }

        opacity-8,
        .overlay-opacity-8:after {
            opacity: .8;
        }

        .overlay-dark-hover:hover:after,
        .overlay-dark:after {
            background: #131f43;
        }

        .overlay-dark-hover:after,
        .overlay-dark:after,
        .overlay-light-hover:after,
        .overlay-light:after {
            bottom: 0;
            content: "";
            height: 100%;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            width: 100%;
            z-index: 0;
        }

        .bg-theme-color-light {
            background-color: rgba(87, 79, 236, .04) !important;
        }

        .bg-cover {
            background-position: 50% !important;
            background-repeat: no-repeat !important;
            background-size: cover !important;
        }

        .overlay-dark,
        .overlay-dark-hover,
        .overlay-light,
        .overlay-light-hover {
            position: relative;
        }

        #overlay-default,
        .overlay-dark,
        .overlay-dark-hover:after,
        .overlay-default,
        .overlay-light,
        .overlay-light-hover:after {
            transition: all .2s ease;
        }

        .section,
        section {
            position: relative;
            word-break: break-word;
        }

        .overlay-dark>*,
        .overlay-light>* {
            position: relative;
            z-index: 1;
        }

        /* =================================================     */

       .table-responsive {
    width: 100%;
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    min-width: 600px; /* obligasyon pou scroll sou ti ekran */
    border-collapse: collapse;
    border: solid 1px #b0b6bb;
}

.payment-table th,
.payment-table td {
    padding: 10px;
    border: solid 1px #b0b6bb;
    text-align: left;
}

.payment-table th {
    background-color: var(--primary);
    color: white;
}


        .Tilaja_text1 {
            font-size: 40px;
            font-weight: 900;
        }

        .Tilaja_text2 {
            font-size: 16px;
            font-weight: 200;
        }

        .loan-info-card {
            border: solid 1px #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 10px;
            margin-bottom: 20px;
        }


        .btn_kont_mobile{
    background-color: #102447;
    color: #FFFFFF;
    font-weight: 400;
    padding: 10px 45px;
    border: solid 1px #102447;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 900;
    font-size: 18px
}
.btn_kont_mobile:hover{
    background-color: transparent;
    color: #102447;
}

.btn_kont2_mobile{
    border: solid 1px #102447;
     color: #102447;
    font-weight: 400;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 900;
    font-size: 18px
}
.btn_kont2_mobile:hover{
    background-color: #102447;
    color: #FFFFFF;
}


.btn_new_jett1{
    background-color: transparent;
    color: #102447;
    font-weight: 400;
    padding: 5px 25px;
    border: solid 1px #102447;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px
}
.btn_new_jett1:hover{
    background-color: transparent;
    color: #102447;
}
.btn_new_jett2{
    background-color: #102447;
    color: #FFFFFF;
    font-weight: 400;
    padding: 5px 25px;
    border: solid 1px #102447;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px
}
.btn_new_jett2:hover{
    background-color: transparent;
    color: #102447;
}