/**
 * BJMC Odisha - Standard Reusable Component Cards
 */
.card {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Service Card Component */
.service-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 2px solid var(--gray-border);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 1.75rem;
    color: var(--orange);
    flex-shrink: 0;
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.service-text {
    font-size: 0.75rem;
    color: var(--gray-muted);
    line-height: 1.5;
}

/* Feature Mission Card */
.mission-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--navy);
    transition: var(--transition);
}

.mission-card.orange {
    border-top-color: var(--orange);
}

.mission-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.mission-icon {
    width: 48px;
    height: 48px;
    background: #EBF8FF;
    color: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mission-icon.orange {
    background: #FFF5EB;
    color: var(--orange);
}

.mission-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.mission-text {
    font-size: 0.8rem;
    color: var(--gray-text);
    line-height: 1.6;
}
