.price-card {
    background: #ffffff;
    border: 1px solid #e9e8ee;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.price-header h6 {
    font-size: 14px;
    font-weight: 600;
    /*color: #4b1fd7;*/
    color:#5C6972;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.price-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0 5px;
}

.price-header small {
    font-size: 14px;
    color: #777;
}

.price-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.icon-30 {
    width: 32px;
    height: 32px;
    font-size: 14px;
    background-color: #4b1fd7;
}

.bg-blue4 {
    background-color: #5C6972 !important;
}

.price-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 64vh;
}

.price-body p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.btn.bg-blue4 {
    background-color: #3a14c0;
    border: none;
    transition: background 0.3s ease;
}

.offer-bubble {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4d4d, #ff944d);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-align: center;
}

.row.gx-0.g-2 {
    display: flex;
    flex-wrap: wrap;
   
}

/* Responsive column for cards */
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 48%;
    }
}

/* No Plan Message */
#noPlansMessage {
    text-align: center;
    color: #555;
    font-weight: 600;
    font-size: 18px;
    margin-top: 40px;
}


#noPlansMessageCountry {
    background: linear-gradient(135deg, #f6f7ff, #edf0ff);
    color: #3a2fd1;
    border: 1px solid #d8d9ff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 18px 25px;
    margin-top: 25px;
    box-shadow: 0 4px 12px rgba(58, 47, 209, 0.08);
    transition: all 0.3s ease-in-out;
}

/* Small animation when shown */
#noPlansMessageCountry.show {
    display: block !important;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}