
/* body {
    background: linear-gradient(135deg, #f8faff 0%, #eef2fc 100%);
    padding: 2rem 0 4rem 0;
} */

/* .section-title {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #10182F, #2A3B65);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
.section-sub {
    color: #4a5b7a;
    font-weight: 500;
    border-left: 4px solid #3b82f6;
    padding-left: 1rem;
} */

/* Card Styles */
.fund-card {
    /* background: rgba(255, 255, 255, 0.95); */
    background: rgba(200, 229, 249, 0.308);
    backdrop-filter: blur(0px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 15px 35px -12px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.6rem 1.5rem;
}
.fund-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.15);
    border-color: #cdddff;
    background: white;
}
.card-icon {
    font-size: 2rem;
    color: #2072B9;
    margin-bottom: 1rem;
    background: #eef3ff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.2rem;
}
.fund-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #0a1c3a;
    margin-bottom: 0.75rem;
}
.fund-desc {
    color: #3c4e6e;
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
    flex: 1;
}
.explore-btn {
    background: transparent;
    border: 1.5px solid #cfdfed;
    border-radius: 2rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #2072B9;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}
.explore-btn i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}
.explore-btn:hover {
    background: #2072B9;
    border-color: #2072B9;
    color: white;
}
.explore-btn:hover i {
    transform: translateX(4px);
    color: white;
}

/* Sidebar & Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1040;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s ease;
}
.overlay.active {
    visibility: visible;
    opacity: 1;
}

.sidebar {
    position: fixed;
    background: #ffffff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Desktop: right sidebar */
@media (min-width: 769px) {
    .sidebar {
        top: 0;
        right: 0;
        bottom: 0;
        width: 440px;
        max-width: 92vw;
        transform: translateX(100%);
        border-radius: 0;
        height: 100%;
    }
    .sidebar.open {
        transform: translateX(0);
    }
}

/* Mobile: bottom sheet */
@media (max-width: 768px) {
    .sidebar {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 70vh;
        height: auto;
        top: auto;
        transform: translateY(100%);
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
    }
    .sidebar.open {
        transform: translateY(0);
    }
}

.sidebar-content {
    padding: 1.8rem 1.6rem 2.2rem;
    overflow-y: auto;
}
.close-sidebar {
    background: #f0f3fa;
    border: none;
    border-radius: 40px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1f2b48;
    transition: 0.2s;
}
.close-sidebar:hover {
    background: #e2e8f2;
}
.special-badge {
    background: #eef2ff;
    color: #2072B9;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
}
.sidebar h4 {
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: -0.3px;
    color: #0a2540;
}
.info-block {
    margin-top: 1.2rem;
}
.info-title {
    font-weight: 700;
    font-size: 1rem;
    color: #0f2b4d;
    border-left: 3px solid #3b82f6;
    padding-left: 10px;
    margin: 1.2rem 0 0.5rem 0;
}
.info-list {
    padding-left: 1.2rem;
    list-style: none;
}
.info-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.9rem;
    color: #1e2f4b;
}
.info-list li i {
    color: #3b82f6;
    font-size: 0.7rem;
    margin-top: 0.2rem;
}
hr {
    margin: 0.8rem 0;
    opacity: 0.5;
}
body.sidebar-open {
    overflow: hidden;
}
@media (max-width: 768px) {
    .fund-card h3 {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}
