.elementor-2662 .elementor-element.elementor-element-163212ae > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-163212ae *//* Namely Color Palette */
:root {
    --mint: #25D366;
    --mint-hover: #128C7E; 
    --navy: #1A2E35;
    --bg-light: #FBFAFB;
    --white: #fff;
}

.container{
    font-family: 'Inter' !important;
    /*padding-top: 10px;*/
}
/* ------- TABLE VIEW ------- */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
     background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
 }
 


.pricing-table thead th {
    background: var(--mint);
    color: var(--white);
    padding: 18px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

.price{
    font-size: 20px;
}

.pricing-table th.popular {
    background: var(--mint-hover);
    color: var(--white);
}

.pricing-table th.popular span {
    background: #F97316;
    color: var(--white);
    padding: 3px 7px;
    border-radius: 6px;
    font-size: 12px;
    position: absolute;
    top: -1px;
    right: 6px;
    z-index: 10;
}



.pricing-table td {
    padding: 14px;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
    color: var(--navy);
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #344955;
}

.highlight {
    /*background: ;*/
    font-weight: 700;
}

/* -------- GRID VIEW -------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.price-card {
    background: var(--white);
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--mint);
    position: relative;
}

.price-card h3 {
    color: var(--navy);
}

.price-card .price {
    color: var(--mint-hover);
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0 20px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    color: #4b5d63;
}

.price-card ul li {
    margin-bottom: 8px;
}

/* Popular Card */
.popular-card {
    border-top-color: var(--mint-hover);
    transform: scale(1.03);
}

.popular-card .badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #F97316;
    color: white;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 16px;
}


/*Buy Now btn style*/
.buy-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 7px 18px !important;
    background: #28a745 !important;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: underline !important;
    transition: 0.3s;
    }

.buy-btn:hover {
    background: #218838;
    color: #fff;
}

.popular-btn {
    background: #ff9800 !important;
}

.popular-btn:hover {
    background: #e68a00 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-table-wrapper {
        overflow-x: auto;
    }
}/* End custom CSS */