/*       body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf1 100%) !important;
    min-height: 100vh !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: auto !important;
}*/

.form-container.registration-form {
    margin: 0 auto;
}
section.my-section-1.register-user-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf1 100%) !important;
    min-height: 100vh !important;
    align-items: center;
    padding: 20px;
    height: auto !important;
}

    .form-container {
        width: 100%;
        max-width: 1400px;
        background: #ffffff;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        overflow: hidden;
        position: relative;
        animation: containerSlide 0.6s ease-out forwards;
    }

    @keyframes containerSlide {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.98);
        }

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

    /* ===== HEADER AND PROGRESS ===== */
.form-container.registration-form .form-header {
    padding: 30px 40px;
    background: #f6f8fb;
    position: relative;
    overflow: hidden;
}

    .form-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: #1b6dba;
        transform: scaleX(0);
        transform-origin: left;
        animation: headerLine 1s ease-out 0.3s forwards;
    }

    @keyframes headerLine {
        to {
            transform: scaleX(1);
        }
    }

.form-container.registration-form h1 {
    color: #2c2c2c;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.5s ease-out 0.4s forwards;
}

    .progress-container {
        margin-top: 20px;
        opacity: 0;
        animation: fadeUp 0.5s ease-out 0.6s forwards;
    }

    .progress-bar {
        height: 8px;
        background-color: rgba(74, 108, 247, 0.2);
        border-radius: 4px;
        margin-bottom: 20px;
        overflow: hidden;
        position: relative;
    }

    .progress {
        height: 100%;
        background: linear-gradient(90deg, var(--primary) 0%, #6c8aff 100%);
        border-radius: 4px;
        transition: var(--transition);
        width: 25%;
        position: relative;
    }

    .progress::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-image: linear-gradient(-45deg,
                rgba(255, 255, 255, 0.2) 25%,
                transparent 25%,
                transparent 50%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0.2) 75%,
                transparent 75%,
                transparent);
        background-size: 20px 20px;
        animation: moveStripes 1s linear infinite;
        border-radius: 4px;
    }

    @keyframes moveStripes {
        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 20px 0;
        }
    }

    .steps {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
        flex: 1;
    }

    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #e2e8f0;
        z-index: -1;
    }

    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: white;
        color: var(--secondary);
        border: 2px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 10px;
        transition: var(--transition);
        position: relative;
    }

.registration-form .step-label {
    font-size: 14px;
    color: #2c2c2c;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

    .step.active .step-number {
        background: #1b6dba;
        color: white;
        border-color: var(--primary);
        box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
        transform: scale(1.1);
    }

    .step.completed .step-number {
            background: #129b4b;
            color: #fff;
            border-color: #10c65c;
    }

    .step.completed .step-label {
        color: var(--success);
    }

    /* ===== FORM CONTENT ===== */
    .form-content {
        padding: 40px;
        position: relative;
    }

    .form-step {
        animation: stepEnter 0.6s ease-out forwards;
        display: none;
    }

    .form-step.active {
        display: block;
    }

    @keyframes stepEnter {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }

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

.form-container.registration-form h2 {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

    .form-container.registration-form h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #1b6dba;
        border-radius: 3px;
    }

    /* ===== SUBSCRIPTION PLANS COMPARISON TABLE ===== */
    .plans-container {
        overflow-x: auto;
        padding-top: 40px;
        /* margin: 30px 0; */
    }

    .plans-table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        min-width: 1000px;
    }

    .plans-table th,
    .plans-table td {
        padding: 15px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }

    .plans-table thead th {
        font-size: 1.1rem;
        padding: 20px 15px;
    }

    .plans-table tbody tr:nth-child(even) {
        background-color: #f9fafb;
    }

    .plans-table tbody tr:hover {
        background-color: #f3f4f6;
    }

    .plans-table .category-row {
        background-color: #e5e7eb !important;
        font-weight: 600;
        text-align: left;
        font-size: 1.1rem;
    }

    .plans-table .feature-name {
        text-align: left;
        font-weight: 500;
        background-color: #f9fafb;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

.heading-contact-info {
    justify-content: space-between;
}

.form-check.heading-checkbox input.form-check-input {
    width: auto;
    border-radius: 4px !important;
    margin-right: 10px;
    height: 11px !important;
}

.form-check.heading-checkbox span {
    margin-top: 27px !important;
    font-size: 13px;
    color: #2c2c2c;
    font-weight: 400;
}

.form-container.registration-form label {
    display: block;
/*    margin-bottom: 8px;*/
    color: #2c2c2c;
    font-weight: 400;
    font-size: 0.95rem;
}

    .input-with-icon {
        position: relative;
    }

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"],
.registration-form input[type="password"],
.registration-form select,
.registration-form input,
.registration-form textarea {
    width: 100%;
    padding: 10px 10px 10px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--dark);
}

/*    textarea {
        min-height: 120px;
        resize: vertical;
    }*/

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15);
    }

    .terms {
        margin-top: 20px;
    }

    .checkbox {
        display: flex;
        align-items: center;
    }

    .checkbox input {
        margin-right: 10px;
        width: 18px;
        height: 18px;
    }
    .form-container.form-container.registration-form.Reregistration-heading h2::after {
        left: 11px;
    }
/* ===== NAVIGATION BUTTONS ===== */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

    .form-navigation button , button#dashboardBtn {
        padding: 15px 30px;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 120px;
    }

    .btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

    .btn-prev {
        background: white;
        color: #1b6dba;
        border: 2px solid #1b6dba !important;
    }

    .btn-next:hover, .btn-submit:hover {
        background-color: #1b6dba;
        color: #fff;
    }
    .btn-prev:hover {
        background: white;
        color: #1b6dba;
        border: 2px solid #1b6dba;
    }

    .btn-next,
    .btn-submit {
        background-color: #1b6dba;
        border-radius: 14px;
        /* padding: 9px 35px; */
        font-weight: 600;
        font-size: 17px;
        color: white;
        box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
    }

    .input-with-icon.input-wrapper {
        position: relative;
        width: 100%;
    }

    .input-with-icon.input-wrapper {
        position: relative;
        width: 100%;
    }
    button.send-otp-btn {
        position: absolute;
        top: 50%;
        right: 5px;
        transform: translateY(-50%);
        background-color: #1b6dba;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .btn-submit {
            background-color: #1b6dba;
        box-shadow: 0 5px 15px rgba(16, 198, 92, 0.3);
    }

    /* ===== SUCCESS MESSAGE ===== */
    .success-message {
        /* text-align: center; */
        padding: 40px 20px;
        animation: successAppear 0.8s ease-out forwards;
    }

    @keyframes successAppear {
        0% {
            opacity: 0;
            transform: scale(0.9);
        }

        50% {
            transform: scale(1.02);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
    button#dashboardBtn {
            margin: 0 auto;
        }

    .success-icon {
        width: 80px;
        height: 80px;
        background: #1b6dba;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        margin: 0 auto 25px;
        animation: iconScale 0.5s ease-out 0.5s both;
    }

    @keyframes iconScale {
        0% {
            transform: scale(0);
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    .success-message h2 {
        color: var(--success);
        margin-bottom: 15px;
        text-align: center;
        padding-bottom: 0;
    }

    .success-message h2::after {
        display: none;
    }

    .success-message p {
        color: var(--secondary);
        line-height: 1.6;
        margin-bottom: 25px;
    }

.plans-table th {
    vertical-align: top;
    padding-top: 20px;
}

    .plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px;
    margin-bottom: 40px;
}

.plan-card {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #ddd;
    position: relative;
}

.plan-card.popular {
        border: 2px solid #1b6dba;
}

.plan-card h3 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: 600;
}

.plan-card p {
    font-size: 14px;
    color: #666;
}

.price {
    font-size: 32px;
    font-weight: bold;
    margin: 20px 0 5px;
}

.price span {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.plans-container .btn {
        display: inline-block;
    margin-top: 15px;
    background: #1b6dba;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
}

.plan-title {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Comparison Table */
table.plans-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table.plans-table thead th {
    text-align: center;
    padding: 14px;
    background: #fafafa;
    border-bottom: 2px solid #ddd;
    color: #000;
}

table.plans-table tbody td {
    padding: 14px;
/*    text-align: center;*/
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

table.plans-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

/*tbody tr:nth-child(odd) {
    background: #fcfcfc;
}*/

td.check {
color: #27ae60;
font-size: 16px;
font-weight: bold;
}

tr.category-row td {
padding: 15px;
text-align: center;
}
.pricing-toggle {
    display: inline-flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.pricing-toggle input {
    display: none;
}

.pricing-toggle label {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    transition: all 0.3s ease;
    user-select: none;
        margin-bottom: 0;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #1b6dba;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-toggle label:first-of-type {
    border-right: 1px solid #ddd;
}
.pricing-toggle input:checked + label {
    background: #fff;
    color: #000;
    font-weight: 600;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.15);
}
.plans-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
}
.plans-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 1000px;
}

.payment-container {
    max-width: 50%;
    margin: 0 auto;
}

.payment-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stripe-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.stripe-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--secondary);
}

.stripe-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #635bff;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.stripe-badge i {
    font-size: 1.2rem;
}

.payment-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.card-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark);
}

.card-form {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pay-now-btn {
    width: 100%;
     background: #3b5be3;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pay-now-btn:hover {
    background: #3b5be3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .payment-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
   
    .payment-summary {
        order: 2;
    }
   
    .payment-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
   
    .payment-card {
        padding: 15px;
    }
   
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

    /* card payemnt end css*/
    @media (max-width: 1200px) {
            .form-container {
                width: 95%;
            }
        }

        @media (max-width: 992px) {
            .form-container {
                width: 100%;
            }

            .form-header {
                padding: 25px;
            }

            .form-content {
                padding: 25px;
            }

            .step:not(:last-child)::after {
                display: none;
            }

            .steps {
                gap: 10px;
            }

            .step-label {
                font-size: 0.75rem;
            }

            .form-navigation {
                flex-direction: column;
                gap: 15px;
            }

/*            .btn {
                width: 100%;
            }*/
        }

        @media (max-width: 768px) {
            .form-container {
                border-radius: 10px;
            }

            .plans-table {
                font-size: 0.9rem;
            }

            .plans-table th,
            .plans-table td {
                padding: 10px 8px;
            }

            .plan-price {
                font-size: 1.2rem;
            }
            
        }