/* Accordion Wrapper */
    .custom-accordion {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* Accordion Item */
    .accordion-item {
        background: #f9f9f9;
        border: 1px solid #e5e5e5;
        border-radius: 28px;
        overflow: hidden;
        cursor: pointer;
        transition: all 2.35s ease;
    }

    /* Header */
    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 35px;
    }

    .accordion-header h5 {
        margin: 0;
        font-size: 18px !important;
        color: #001035;
        font-family: astro;
        font-weight: 300;
    }

    /* Content */
    .accordion-content {
        display: flex;
        align-items: center;
        gap: 40px;
        padding: 0 35px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 1.45s ease !important;
        /*padding: 0;*/
    }

    .accordion-item.active .accordion-content {
        max-height: 500px;
        padding: 0 35px 35px;
        opacity: 1;
        display: flex;
    }

    /* Left Side */
    .accordion-left {
        width: 65%;
    }

    .accordion-left p {
        font-size: 15px;
        line-height: 1.7;
        font-family: inter;
        color: #444;
    }

    .number {
        font-size: 40px !important;
        color: #8791ad !important;
        display: inline-block;
        margin-top: 10px;
    }

    /* Learn Button */
    .learn-btn {
        display: inline-flex;
        margin-left: 18px;
        padding: 10px 20px;
        border-radius: 25px;
        background: #fff;
        color: #1f338d;
        text-decoration: none !important;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .learn-btn:hover {
        background: #1f338d;
        color: white;
    }

    /* Right Side */
    .accordion-right {
        width: 35%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Image Container */
    .image-wrapper {
        position: relative;
        display: inline-block;
        width: fit-content;
    }

    /* PNG image */
    .accordion-right img {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 380px;
        display: block;
        transition: transform 0.15s linear;
        pointer-events: none;
    }

    /* Glow hidden by default */
    .image-glow {
        position: absolute;
        inset: 0;
        z-index: 9;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;

        background:
            radial-gradient(circle 120px at var(--x, 50%) var(--y, 50%),
                rgba(255, 140, 0, 0.8),
                rgba(255, 140, 0, 0) 70%);

        filter: blur(18px);
        mix-blend-mode: color;
    }

    .image-wrapper:hover .image-glow {
        opacity: 1;
    }

    /* Toggle Button */
    .toggle-btn {
        width: 42px;
        height: 42px;
        background: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .arrow-icon {
        width: 8px;
        height: 8px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: rotate(45deg);
        transition: all 0.3s ease;
    }
    
    .icon-open{
        display:none;
    }

    .accordion-item.active .icon-open{
        display:block;color:#fff;
    }

    .accordion-item.active .icon-closed{
        display:none;
    }

    .accordion-item.active .toggle-btn {
        background: #001b44;
    }

    .accordion-item.active .arrow-icon {
        border-color: #fff;
        transform: rotate(-135deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .accordion-content {
            flex-direction: column;
        }

        .accordion-left,
        .accordion-right {
            width: 100%;
        }

        .accordion-right img {
            max-width: 100%;
        }
    }