.pricing {
    padding: 90px 0;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #111827;
}

.section-title p {
    color: #6b7280;
    max-width: 700px;
    margin: auto;
}

.pricing-card {
    background: #f3f4f4;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    transition: 0.35s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.active {
    background: #000;
    color: #fff;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.active:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.active::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/subcription-bgimge.png') center center/cover no-repeat;
    opacity: 1;
    transition: 0.35s ease;
    z-index: 1;
    top: -150px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

.card-img {
    margin-bottom: 20px;
    width: 65px;
    height: 65px;
    object-fit: contain;
    background: #dbdcdc;
    padding: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card.active .card-img {
    background: #1c1c1c;
}

.pricing-card h5 {
    font-size: 30px;
    font-family: var(--secondary-semibold-font);
    margin-bottom: 8px;
    color: #0e0e0e;
}

.pricing-card.active h5 {
    color: var(--extra-color-2);
}

.pricing-card .small {
    font-size: 13px;
    color: #4e4e4e;
    line-height: 1.7;
    font-family: var(--primary-regular-font);
}

.pricing-card.active .small {
    color: #d1d5db;
}

.pricing-card h2 {
    font-size: 53px;
    font-family: var(--secondary-semibold-font);
    margin: 25px 0 20px;
    position: relative;
    color: #0e0e0e;
}

.pricing-card.active h2 {
    color: var(--extra-color-2);
}

.pricing-card h2::after {
    content: '';
    width: 180px;
    height: 1px;
    background: #4e4e4e;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 30px;
}

.pricing-card.active h2::after {
    background: #fff;
}

.pricing-card h2 span {
    font-size: 30px;
    color: #0e0e0e;
}

.pricing-card.active h2 span {
    color: #e5e7eb;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 10px;
    line-height: 1.6;
    color: #1f2937;
}

.pricing-card ul li i {
    color: #ee4036;
    font-size: 18px;
    margin-top: 3px;
}

.pricing-card.active ul li {
    color: #fff;
}

.pricing-card.active ul li i {
    color: #ee4036;
}

.wrapperp-icon-btn {
    background: #ee4036;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.plan-btn:hover .wrapperp-icon-btn {
    background: #fff !important;
    color: #ee4036 !important;
}

.plan-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    border-radius: 17px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
    background-color: #fff;
}

.pricing-card.active .wrapper-active {
    background: #fff;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ee4036;
    font-size: 12px;
}

.pricing-card.active .plan-btn:hover .wrapper-active {
    background: #fff !important;
    color: #ee4036 !important;
}

.plan-btn-outline {
    border: 1px solid #ee4036;
    color: #ee4036;
    background: #fff;
}

.plan-btn-outline:hover {
    background: #ee4036;
    color: #fff;
}

.plan-btn-fill {
    background: #ee4036;
    color: #fff;
}

.plan-btn-fill:hover {
    background: #ee4036;
    color: #000;
}

.plan-btn i {
    font-size: 13px;
    transition: 0.3s ease;
}

.plan-btn:hover i {
    transform: translateX(6px);
}

.plan-note {
    color: #6b7280;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .pricing-card.active {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .inner-banner {
        padding: 50px 0;
    }

    .inner___banner___content h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .pricing {
        padding: 60px 0;
    }
}

/* ===========================
MODAL STYLE
=========================== */
.payment-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(23px);
    background: #0b070726;
    box-shadow: 0 20px 60px rgb(0 0 0 / 12%);
}

.modal {
    overflow-y: unset !important;
    overflow-x: unset !important;
}

.wrapper-django1.p-5.rounded-3 {
    padding: 63px 70px !important;
}

.payment-left {
    margin-top: 30px;
}

.custom-close {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 99;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
}

.payment-left h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: #111;
    font-family: 'outfit-semibold';
}

.payment-left p {
    color: #6b7280;
    margin-bottom: 30px;
}

.custom-input {
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 15px;
    background: #bfbfbf;
}

.custom-input::placeholder {
    font-family: 'outfit-medium';
    font-size: 15px;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #ee4036;
}

/* PRICE BOX */
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
        center/1em auto no-repeat !important;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #555;
}

.price-line.total {
    border-top: 1px solid #ddd;
    padding-top: 14px;
    margin-top: 14px;
    font-size: 18px;
    color: #111;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 10px;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #ee4036;
    color: #fff;
}

.submit-btn i {
    margin-left: 8px;
}

/* RIGHT SIDE */
.payment-right {
    background: #0b0b0b;
    height: 100%;
    padding: 35px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: #f0f8ff4f;
    backdrop-filter: blur(14px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .pricing-card h2 {
        font-size: 40px;
        margin: 15px 0 20px;
    }
    .pricing-card h2 span {
        font-size: 22px;
    }
    .pricing-card h5 {
        font-size: 27px;
    }
}

@media (max-width: 992px) {
    .payment-left {
        padding: 30px;
    }

    .payment-right {
        padding: 25px;
    }
    .pricing-card h2 {
        font-size: 40px;
        margin: 15px 0 20px;
    }
    .pricing-card h2 span {
        font-size: 20px;
    }
    .pricing-card h5 {
        font-size: 25px;
    }
    .pricing {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .payment-left h3 {
        font-size: 24px;
    }

    .payment-left {
        padding: 22px;
    }
}

/* Mobile Responsive  */

@media (max-width: 576px) {
    .pricing-card h2 {
        font-size: 33px;
        margin: 15px 0 20px;
    }
    .pricing-card h2 span {
        font-size: 15px;
    }
    .pricing-card h5 {
        font-size: 20px;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
}
