.card {
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    flex-grow: 1;
    padding: 25px;
}

.card-body .btn {
    text-transform: none; 
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: auto;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color:#0c68b1;
}

.card-text{
    font-size: 15px;
    color: gray;
    text-align:center;
}

.btn-primary {
    display: inline-block;
    background-color: #ffc13c;
    color: black;
    border: none;
    padding: 10px 18px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
  
}

.btn-primary:hover {
    background-color: #1a4e97ff;
    color: white;
  
}

@media (max-width: 768px) {
    .card-title {
        font-size: 16px;
    }

    .btn-primary {
        padding: 8px 14px;
        font-size: 14px;
    }
}