 body {
        background: #000;
        color: #ffffff;
        min-height: 100vh;
        font-family: 'Arial', sans-serif;
    }

    .radio-input {
        display: block !important;
    }

    .credit-pricing-btn:hover {
        background: #D1FE17;
        color: #000;
        text-decoration: none;
    }
.header-effect{backdrop-filter: blur(2px);}
    #subscription,
    #credits {
        background: url(https://images.pixazo.ai/sitefiles/backgroundCheck.png);
        background-size: cover;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #fff !important;
    }

    ul.feature-list {
        /* column-count: 2; */
        list-style: none;
        margin-bottom: 0;
    }

    li.feature {
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        margin-bottom: 20px;
        position: relative;
    }

    li.feature:before {
        position: absolute;
        left: -30px;
        top: 0px;
        color: #5985f9;
        content: url(https://images.pixazo.ai/sitefiles/badge-check.svg);
    }

    .subscription-container {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .header-tabs {
        display: flex;
        justify-content: center;
        margin: 40px;
    }

    .tab-button {
        background: transparent;
        border: none;
        color: #888;
        font-size: 18px;
        font-weight: 500;
        margin: 0 10px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .tab-button.active {
        color: #ffffff;
        /* text-decoration: underline; */
        border-bottom: 1px solid #fff;
    }

    .features-card {
        background: #151904;
        border: 2px solid #4a6a4a;
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding: 10px 0;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .check-icon {
        background: #7ed321;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .check-icon i {
        color: #000;
        font-size: 12px;
        font-weight: bold;
    }

    .feature-text {
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
    }

    .pricing-cards {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }

    .pricing-card {
        flex: 1;
        border: 2px solid #445014;
        border-radius: 15px;
        padding: 25px;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pricing-card:hover {
        border-color: #7ed321;
        transform: translateY(-5px);
    }

    .pricing-card.selected {
        border-color: #7ed321;
        background: #1A1F05;
    }

    .radio-container {
        /* position: absolute; */
        /* top: 20px; */
        /* left: 20px; */
        padding: 3px;
    }

    .radio-input {
        width: 20px;
        height: 20px;
        border: 2px solid #666;
        border-radius: 50%;
        background: transparent;
        position: relative;
        cursor: pointer;
    }

    .radio-input.checked {
        border-color: #7ed321;
    }

    .radio-input.checked::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: #7ed321;
        border-radius: 50%;
    }

    .plan-details {
        display: flex;
        align-items: center;
    }

    .credits-amount {
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 5px;
    }

    .plan-type {
        font-size: 14px;
        color: #888;
        margin-bottom: 15px;
    }

    .price {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .price-currency {
        font-size: 18px;
    }

    .price-period {
        font-size: 16px;
        color: #888;
    }

    .yearly-badge {
        background: #7ed321;
        color: #000;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 8px;
        border-radius: 12px;
        margin-left: 10px;
    }

    .disclaimer {
        text-align: center;
        font-size: 14px;
        color: #888;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .subscribe-btn {
        background: #D1FE17;
        color: #000;
        font-size: 18px;
        font-weight: 600;
        padding: 15px 50px;
        border: none;
        border-radius: 12px;
        display: block;
        margin: 0 auto;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
    }

    .subscribe-btn:hover {
        background: linear-gradient(135deg, #6bc91a 0%, #5ab018 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .subscription-container {
            padding: 20px 15px;
        }

        .header-tabs {
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .tab-button {
            font-size: 16px;
            padding: 12px 20px;
            margin: 5px;
        }

        .features-card {
            padding: 20px;
        }

        ul.feature-list {
            column-count: 1;
            padding: 20px 20px 0;
            padding-right: 0;
        }

        .pricing-cards {
            flex-direction: column;
            gap: 15px;
        }

        .feature-text {
            font-size: 15px;
        }

        .credits-amount {
            font-size: 14px;
        }

        .yearly-badge {
            font-size: 8px;
            margin-left: 4px;
        }

        .plan-type {
            font-size: 12px;
        }

        .price {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .subscription-container {
            padding: 15px 10px;
        }

        .features-card {
            padding: 15px;
        }

        .pricing-card {
            padding: 20px;
        }

        .feature-item {
            margin-bottom: 15px;
        }

        .feature-text {
            font-size: 14px;
        }

        .subscribe-btn {
            font-size: 16px;
            padding: 12px 40px;
        }
    }


    .enterprise-section {
        background: #121313;
    }

    .enterprise-card {
        background: #151904;
        border: 2px solid #4a6a4a;
        border-radius: 15px;
        padding: 40px;
        margin-bottom: 80px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .enterprise-content {
        display: flex;
        align-items: flex-start;
        gap: 60px;
    }

    .enterprise-left {
        flex: 1;
    }

    .enterprise-title {
        font-size: 42px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .enterprise-description {
        font-size: 16px;
        color: #cccccc;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .contact-email {
        color: #D1FE17;
        text-decoration: none;
        font-weight: 500;
    }

    .contact-email:hover {
        color: #6bc91a;
        text-decoration: underline;
    }

    .enterprise-features {
        flex: 1;
    }

    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding: 8px 0;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .check-icon {
        background: #7ed321;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .check-icon i {
        color: #000;
        font-size: 12px;
        font-weight: bold;
    }

    .feature-text {
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
    }

    .credit-usage-section {
        text-align: center;
        padding: 0 20px 60px;
        background: #121313;
    }

    .section-title {
        font-size: 36px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 25px;
    }

    .section-description {
        font-size: 18px;
        color: #cccccc;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .credit-pricing-btn {
        background: transparent;
        color: #D1FE17;
        font-size: 16px;
        font-weight: 600;
        padding: 15px 35px;
        border: 2px solid #D1FE17;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }


    @media (max-width: 992px) {
        .enterprise-content {
            flex-direction: column;
            gap: 40px;
        }

        .enterprise-card {
            padding: 30px;
        }

        .enterprise-title {
            font-size: 36px;
        }

        .section-title {
            font-size: 32px;
        }
    }

    @media (max-width: 768px) {
        .enterprise-section {
            padding: 40px 15px;
        }

        .enterprise-card {
            padding: 25px;
            margin-bottom: 60px;
        }

        .enterprise-title {
            font-size: 32px;
            margin-bottom: 25px;
        }

        .enterprise-description {
            font-size: 15px;
        }

        .feature-text {
            font-size: 15px;
        }

        .section-title {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 16px;
            margin-bottom: 35px;
        }

        .credit-usage-section {
            padding: 0 15px 40px;
        }
    }

    @media (max-width: 576px) {
        .enterprise-card {
            padding: 20px;
        }

        .enterprise-title {
            font-size: 28px;
        }

        .enterprise-description {
            font-size: 14px;
        }

        .feature-item {
            margin-bottom: 15px;
        }

        .feature-text {
            font-size: 14px;
        }

        .section-title {
            font-size: 24px;
        }

        .section-description {
            font-size: 15px;
        }

        .credit-pricing-btn {
            font-size: 15px;
            padding: 12px 30px;
        }
    }

    .enterprise-features ul {
        column-count: 1;
    }


    .faq-section {
        padding: 80px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .faq-title {
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin-bottom: 60px;
        line-height: 1.2;
    }

    .faq-divider {
        width: 100%;
        height: 1px;
        background: #333;
        /* margin: 0 0 20px 0; */
    }

    .faq-item {
        border-bottom: 1px solid #333;
        margin-bottom: 0;
    }

    .faq-item:last-child {
        border-bottom: none;
    }

    .faq-question {
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        padding: 20px 0;
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        outline: none;
    }

    .collapsed.faq-question {
        color: #B2B4B6;
    }

    .faq-question {
        color: #fff;
    }


    .faq-question:focus {
        outline: none;
        box-shadow: none;
    }

    .faq-question .faq-icon {
        font-size: 20px;
        color: #7ed321;
        transition: all 0.3s ease;
        flex-shrink: 0;
        margin-left: 20px;
    }

    .collapsed .faq-icon {
        font-size: 20px;
        color: #fff;
        transition: all 0.3s ease;
        flex-shrink: 0;
        margin-left: 20px;
    }

    .faq-question.collapsed .faq-icon {
        transform: rotate(0deg);
    }

    .faq-question:not(.collapsed) .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        background: transparent;
        border: none;
        padding: 0 0 30px 0;
    }

    .faq-answer-text {
        font-size: 18px;
        color: #B2B4B6;
        line-height: 1.6;
        margin: 0;
        padding-right: 60px;
    }

    .collapse:not(.show) {
        display: none;
    }

    .collapse.show {
        display: block;
    }

    /* Custom collapse animation */
    .collapse {
        transition: height 0.3s ease;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .faq-section {
            padding: 60px 15px;
        }

        .faq-title {
            font-size: 36px;
            margin-bottom: 40px;
        }

        .faq-question {
            font-size: 20px;
            padding: 25px 0;
        }

        .faq-answer-text {
            font-size: 16px;
            padding-right: 40px;
        }

        .faq-icon {
            font-size: 18px;
            margin-left: 15px;
        }
    }

    @media (max-width: 576px) {
        .faq-section {
            padding: 40px 10px;
        }

        .faq-title {
            font-size: 28px;
            margin-bottom: 30px;
        }

        .faq-question {
            font-size: 18px;
            padding: 20px 0;
        }

        .faq-answer-text {
            font-size: 15px;
            padding-right: 30px;
        }

        .faq-icon {
            font-size: 16px;
            margin-left: 10px;
        }
    }

    .excellent {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0;
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .excellent .exc-lt {
        list-style-type: none;
        font-size: 14px;
    }

    .exc-lt1 {
        font-size: 21px;
    }

    .exc-lt2,
    .exc-lt4 {
        margin: 0 10px;
    }

    .exc-lt3 {
        font-weight: 300;
    }

    .exc-lt3,
    .faq-box h5,
    .faq-box p,
    ul.faqs-list {
        font-size: 14px;
    }

    li.exc-lt.exc-lt5 a {
        cursor: pointer;
    }


    .testimonials-section {
        /* padding: 80px 20px; */
        /* max-width: 1400px; */
        margin: 0 auto;
        padding-bottom: 40px;
    }

    .testimonials-container {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: stretch;
    }

    .testimonial-card {
        background: #121313;
        border: 1px solid #242526;
        border-radius: 0px;
        padding: 20px;
        flex: 1;
        max-width: 400px;
        position: relative;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        border-color: #444;
    }

    .testimonial-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 16px;
        border-bottom: 1px solid #242526;
    }

    .customer-name {
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
    }

    .star-rating {
        display: flex;
        gap: 2px;
    }

    .star {
        color: #ffd700;
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 15px;
        color: #cccccc;
        line-height: 1.6;
        margin: 0;
        text-align: justify;
        margin-top: 16px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .testimonials-container {
            flex-direction: column;
            align-items: center;
        }

        .testimonial-card {
            max-width: 600px;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .testimonials-section {
            padding: 60px 15px;
        }

        .testimonial-card {
            padding: 25px;
            max-width: none;
        }

        .customer-name {
            font-size: 16px;
        }

        .testimonial-text {
            font-size: 14px;
        }

        .star {
            font-size: 13px;
        }
    }

    @media (max-width: 576px) {
        .testimonials-section {
            padding: 40px 10px;
        }

        .testimonial-card {
            padding: 20px;
        }

        .testimonials-container {
            gap: 15px;
        }

        .testimonial-header {
            margin-bottom: 15px;
        }
    }

    /* Animation for cards */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .testimonial-card {
        animation: fadeInUp 0.6s ease forwards;
    }

    .testimonial-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .testimonial-card:nth-child(3) {
        animation-delay: 0.2s;
    }

    .trustedby {
        text-align: center;
        padding: 0 20px 60px;
        background: #000;
    }

    .trusted img {
        width: 891px;
        height: 114px;
        margin: 20px 0px;
    }

    .trusted {
        text-align: center;
        background: #121313;
    }

    @media (max-width: 768px) {
        .trusted img {
            width: 100%;
            height: auto;
            margin: 50px 0;
            padding: 0 30px;
        }
    }

    .videoDiv {
        border: 1px solid #3B3B3B;
        background: #121313;
        padding: 32px;
        border-radius: 14px;
    }

    .videoDiv p {
        color: #B2B4B6;
    }

    .seo-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .credit-pack-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .credit-pack-card {
        background: #151904;
        border: 2px solid #445014;
        border-radius: 15px;
        padding: 40px 30px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .credit-pack-card:hover {
        border-color: #7ed321;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        background: #1A1F05;
    }

    .credit-pack-card.selected {
        border-color: #7ed321;
        background: linear-gradient(135deg, #2a4a2a 0%, #1a3a1a 100%);
        box-shadow: 0 8px 25px rgba(126, 211, 33, 0.2);
    }

    .credit-amount {
        font-size: 42px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .credit-amount i {
        font-size: 36px;
    }

    .credit-price {
        font-size: 32px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 8px;
    }

    .credit-value {
        font-size: 14px;
        color: #888;
        font-weight: 400;
    }

    .purchase-btn {
        background: linear-gradient(135deg, #7ed321 0%, #6bc91a 100%);
        color: #000;
        font-size: 18px;
        font-weight: 600;
        padding: 15px 50px;
        border: none;
        border-radius: 25px;
        display: block;
        margin: 0 auto;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(126, 211, 33, 0.3);
    }

    .purchase-btn:hover {
        background: linear-gradient(135deg, #6bc91a 0%, #5ab018 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
    }

    .purchase-btn:active {
        transform: translateY(0);
    }

    /* Selection indicator */
    .credit-pack-card.selected::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, #7ed321, #6bc91a);
        border-radius: 15px;
        z-index: -1;
        opacity: 0.8;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
       

        .credit-pack-grid {
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .credit-pack-card {
            padding: 30px 25px;
            min-height: 180px;
        }

        .credit-amount {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .credit-amount i {
            font-size: 30px;
        }

        .credit-price {
            font-size: 28px;
        }

        .credit-value {
            font-size: 13px;
        }

        .purchase-btn {
            font-size: 16px;
            padding: 12px 40px;
        }
    }

    @media (max-width: 576px) {
       

        .credit-pack-card {
            padding: 25px 20px;
            min-height: 160px;
        }

        .credit-amount {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .credit-amount i {
            font-size: 26px;
        }

        .credit-price {
            font-size: 24px;
        }

        .credit-value {
            font-size: 12px;
        }

        .purchase-btn {
            font-size: 15px;
            padding: 12px 35px;
        }
    }

    /* Animation on load */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .credit-pack-card {
        /* animation: fadeInUp 0.5s ease forwards; */
    }

    .credit-pack-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .credit-pack-card:nth-child(3) {
        animation-delay: 0.2s;
    }

    .credit-pack-card:nth-child(4) {
        animation-delay: 0.3s;
    }

    .purchase-btn {
        animation: fadeInUp 0.5s ease forwards;
        animation-delay: 0.4s;
    }

    .credit-amount i {
        color: #d1fe17;
    }

    .pricing-banner {
        text-align: center;
        background: url(https://images.pixazo.ai/sitefiles/pricingBanner.png);
        padding: 80px 0;
        background-size: cover;
        background-position: center;
    }

    .pricing-banner h1 {
        font-size: 42px;
        font-weight: 500;
        width: fit-content;
        margin: 10px auto;
        position: relative;
    }

    .pricing-banner h2 {
        color: #B2B4B6;
        font-size: 16px;
    }

    .pricing-banner h1:after {
        content: "";
        background: url(https://images.pixazo.ai/sitefiles/sparkles.png);
        height: 25px;
        width: 25px;
        position: absolute;
        right: -40px;
        background-size: contain;
        background-repeat: no-repeat;
        top: 20px;
    }

    .pricing-banner h1:before {
        content: "";
        background: url(https://images.pixazo.ai/sitefiles/sparkles.png);
        height: 25px;
        width: 25px;
        position: absolute;
        left: -40px;
        background-size: contain;
        background-repeat: no-repeat;
        top: 20px;
    }