/* Pricing Card Styles */
.pricing-card {
    /* background: linear-gradient(135deg, #0040C1, #f74639); */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 37px;
    width: 350px;
    margin: 35px;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-top: 5px solid #0040C1;
}

/* Hover Effect */
.pricing-card:hover {
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    transform: translateY(-10px);
}

/* List Features */
.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features li {
    padding: 10px 0;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Tick Icon */
.features li::before {
    content: "✔";
    color: #f74639 ;
    font-size: 18px;
    font-weight: bold;
}

/* Button Styles */
.btn-buy {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-basic {
    background: #0040C1;
    color: white;
}

.btn-basic:hover {
    background: #0040C1;
    color: #f74639;
    transform: scale(1.05);
}
