.card {
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(10, 91, 76, 0.1);
    background-color: var(--background-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(10, 91, 76, 0.2);
}

.bs-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 10px rgba(132, 169, 192, 0.3);
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--text-dark-color);
    margin-bottom: 0.75rem;
}

.card p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #5b5b5b;
}

/* Example modifier classes for card variations */
.card.card-1 {
    background: #fffbe7;
}

.card.card-2 {
    background: #e7f7ff;
}

.card:hover {
    background: linear-gradient(135deg, #ffffff, #f0f1e9);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.card {
    animation: fadeInUp 0.6s ease-in-out;
}



.glass-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;

}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.glass-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 6px 15px rgba(132, 169, 192, 0.4);
}

.glass-title {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--text-dark-color);
    margin-bottom: 0.75rem;
}

.glass-text {
    font-family: var(--font-sans);
    color: #3f3f3f;
    font-size: 0.95rem;
}

.glass-icon::before {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(132, 169, 192, 0.3), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

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

    100% {

        transform: scale(1);
        opacity: 0.6;
    }
}