/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 01 2025 | 20:30:08 */
.p-card-h2 {
    font-size: 14px;
}

.p-card-list {
    line-height: 1.5; 
    font-size: 14px;
}

.wp-block-navigation__submenu-container li {
    width: max-content;
}

.xhide {
    display: none;
    visibility: hidden;
}

.floating-circle-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f2f5f9 60%, #e6eaef 100%);
    color: #1a63a3;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;

    /* floating effect */
    box-shadow: 0px 10px 20px rgba(0,0,0,0.25), 
                0 0 0 4px rgba(255,255,255,0.35) inset;

    transition: all 0.25s ease;
}

.floating-circle-btn-blue {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 110px;
    height: 110px;

    border-radius: 50%;
    padding: 0 !important;
    text-align: center;

    /* Blue gradient */
    background: radial-gradient(circle at 30% 30%, 
                #1a63a3 0%, 
                #0f4e82 60%, 
                #0b3a62 100%) !important;

    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;

    /* Floating shadow */
    box-shadow: 0 10px 20px rgba(0,0,0,0.25),
                0 0 0 4px rgba(255,255,255,0.20) inset;

    transition: transform 0.25s ease, 
                box-shadow 0.25s ease;
}

.floating-circle-btn-blue:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 24px rgba(0,0,0,0.30),
                0 0 0 5px rgba(255,255,255,0.30) inset;
}

.floating-circle-btn-blue:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25),
                0 0 0 3px rgba(255,255,255,0.20) inset;
}

/* Hover lift */
.floating-circle-btn:hover {
	color: #ffffff !important;
    transform: translateY(-6px);
    box-shadow: 0px 14px 24px rgba(0,0,0,0.30),
                0 0 0 5px rgba(255,255,255,0.45) inset;
}

/* Optional: slight active press */
.floating-circle-btn:active {
    transform: translateY(-2px);
    box-shadow: 0px 6px 14px rgba(0,0,0,0.25),
                0 0 0 3px rgba(255,255,255,0.30) inset;
}

/* Circular floating "More Info" button for loan cards */
.wp-block-button .loan-circle-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 110px;
    height: 110px;
    padding: 0 !important;

    border-radius: 50% !important;
    border: none !important;

    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f2f5f9 60%, #e6eaef 100%) !important;
    background-color: transparent !important;  /* kill theme bg */
    color: #1a63a3 !important;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.3;

    /* floating effect */
    box-shadow: 0 10px 20px rgba(0,0,0,0.25),
                0 0 0 4px rgba(255,255,255,0.35) inset;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover / focus lift */
.wp-block-button .loan-circle-btn:hover,
.wp-block-button .loan-circle-btn:focus {
    transform: translateY(-6px);
    box-shadow: 0 14px 24px rgba(0,0,0,0.30),
                0 0 0 5px rgba(255,255,255,0.45) inset;
}

/* Slight press effect */
.wp-block-button .loan-circle-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25),
                0 0 0 3px rgba(255,255,255,0.30) inset;
}

