﻿.pricing {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;

}

/* Card */
.card {
    width: 320px;
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 2px solid Black;
    transition: 0.4s;
    position: relative;
    background-color: snow;
    background-image: url('../img/stockmarketapp.jpg');
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: center; /* Optional: centers the image */
    background-size: cover;
}
    .card h4 {
        font-family: "Jersey 15", sans-serif;
    }

    .card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    }

    /* Highlight Plan */
    .card.featured {
        border: 2px solid #38bdf8;
        transform: scale(1.05);
    }

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: Red;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Titles */
.card h2 {
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: 400;
    color: Red;
    line-height: 28px;
    font-family: "Share Tech", sans-serif;
}

/* Features */
.features {
    list-style: none;
    margin: 15px 0;
}

    .features li {
        margin: 5px 0;
        color:  black;

    }



    .btn:hover {
        opacity: 0.8;
    }

/* Responsive */
@media(max-width: 768px) {
    .pricing {
        flex-direction: column;
        align-items: center;
    }
}
