.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.tab {
    padding: 10px 20px;
    background-color: #e0e0e0;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.tab.active {
    background-color:#4A37A5;
    color: white;
}

.tab:hover {
        background-color: #0B0103;
}

.tab.active:hover {
    background-color: #00a89a;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.popular {
    border: 2px solid #4A37A5;
}

.popular-tag {
       position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4A36A5;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: bold;
}

.np_h3 {
    font-size: 24px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sparkle {
    margin-left: 5px;
    font-size: 16px;
}

.description {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 10px 0;
}

.price {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.price span {
     font-size: 24px;
    font-weight: bold;
    color: #4D32A5;
}

.get-started {
    background-color: #4D32A5;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px 0;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.get-started:hover {
    background-color: #180D03;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.features li {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}