.pricing-card {
    perspective: 1000px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.pricing-card:hover {
    transform: rotateY(10deg) scale(1.05);
}

.card-body {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 400px;
    padding: 30px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 10px;
    color: #f0f0f0;
}

.feature-list li::before {
    content: "✓";
    margin-right: 10px;
    color: #0b0b0b;
    font-weight: bold;
}

.btn-custom {
    background-color: #dbd5d5;
    color: #192449;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #262488;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(76, 209, 55, 0.4);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #4cd137;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(76, 209, 55, 0.3);
}
.price span{
    text-decoration: line-through;
    color: rgb(220, 66, 66);
    font-size: 26px;
    font-weight: normal;
}
