/* ==========================================================================
   Premium Table Section Redesign
   ========================================================================== */
.premium-table-section {
    padding: 70px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.premium-table-section .section__title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

.premium-table-section .section__title .highlighted {
    color: #88b02e;
}

.loan-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
}

.loan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.premium-table-section .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 2px solid #88b02e !important;
    margin-bottom: 20px;
    background: transparent !important;
}

.premium-table-section .card-header.border-blue {
    border-bottom-color: #3498db !important;
}

.premium-table-section .card-icon {
    width: 60px;
    height: 60px;
    background: #88b02e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(136, 176, 46, 0.3);
}

.premium-table-section .card-icon.icon-blue {
    background: #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.premium-table-section .card-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #2c3e50 !important;
}

.loan-table-responsive {
    margin-top: 10px;
    overflow-x: auto;
}

.loan-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.loan-data-table thead th {
    background: #88b02e !important;
    color: #fff !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: left !important;
}

.loan-data-table.table-blue thead th {
    background: #3498db !important;
}

.loan-data-table thead th:first-child {
    border-radius: 5px 0 0 5px;
}

.loan-data-table thead th:last-child {
    border-radius: 0 5px 5px 0;
}

.loan-data-table td {
    padding: 25px 20px !important;
    vertical-align: top !important;
    border: 1px solid #333 !important;
    background: transparent !important;
}

.loan-data-table {
    width: 100%;
    border-collapse: collapse !important;
    border: 1px solid #333 !important;
}

.loan-data-table thead th {
    background: #88b02e !important;
    color: #fff !important;
    padding: 9px 20px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
    border: 1px solid #333 !important;
}

.loan-data-table.table-blue thead th {
    background: #3498db !important;
}

.loan-data-table thead th:first-child,
.loan-data-table thead th:last-child {
    border-radius: 0 !important;
}

.loan-type-group h6 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 7px !important;
    color: #333 !important;
}

.loan-type-group ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 5px 0 !important;
}

.loan-type-group ul li {
    position: relative !important;
    padding-left: 0 !important;
    margin-bottom: 0px !important;
    font-size: 16px !important;
    color: #444 !important;
    line-height: 1.4 !important;
}

.loan-type-group ul li i {
    display: none !important;
}

/* CTA Button in table cell */
.know-more-btn {
display: inline-block;
    background-color: #3498db;
    color: #fff !important;
    padding: 0px 13px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #3498db;
    margin-top: 3px;
}

.know-more-btn:hover {
    background-color: transparent;
    color: #88b02e !important;
}

.business-loan-card .know-more-btn {
    background-color: #3498db;
    /* keeping the blue button from image even in green section */
}

/* Central Decorative Badge */
.central-badge {
    position: relative;
    width: 180px;
    height: 180px;
    z-index: 2;
}

.badge-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 0 0 10px #fff, 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed #88b02e;
    position: relative;
}

.badge-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136, 176, 46, 0.1) 0%, transparent 70%);
    animation: pulseGlow 3s infinite;
}

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

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

.badge-logo {
    max-width: 80%;
    position: relative;
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .central-badge {
        display: none;
    }
}

@media (max-width: 767px) {
    .loan-card {
        padding: 30px 20px;
    }

    .premium-table-section .card-title {
        font-size: 22px !important;
    }

    .loan-data-table thead th {
        padding: 10px !important;
        font-size: 12px !important;
    }

    .loan-data-table td {
        padding: 15px 10px !important;
    }

    .loan-type-group h6 {
        font-size: 14px !important;
    }
}