.font-kalpurush {
    font-family: 'Roboto', Arial, 'Kalpurush', sans-serif !important;
}

.gov-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.gov-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.gov-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #046307;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gov-card:hover::before {
    opacity: 1;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.gov-card:hover .icon-circle {
    background-color: #eff6ff;
    color: #2563eb;
}

.fs-card-title {
    font-family: 'Roboto', Arial, 'Kalpurush', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 8px;
}

.fs-content {
    font-family: 'Roboto', Arial, 'Kalpurush', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
    line-height: 1.5;
}

.btn-gov {
    font-family: 'Roboto', Arial, 'Kalpurush', sans-serif !important;
    font-size: 14px !important;
    color: #059669;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 6px 12px;
    background: #ecfdf5;
    border-radius: 6px;
}

.gov-card:hover .btn-gov {
    background: #d1fae5;
    color: #047857;
}
