
        :root {
            --primary-orange: #f5a623;
            --primary-orange-hover: #d38d1c;
            --primary-blue: #3374C4;
            --text-dark: #334155;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --bg-accent-blue: #86b2fb;
            --bg-dark-blue: ##3d6fc3;
            
            --text-white: #f5f7f9;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: var(--primary-blue);
        }

        /* Buttons */
        .btn-custom {
            background-color: var(--primary-orange) !important;
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-custom:hover,
        .btn-custom.active {
            background-color: var(--primary-orange-hover);
            color: white;
        }

        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary-orange);
            border: 2px solid var(--primary-orange);
            padding: 8px 22px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-outline-custom:hover {
            background-color: var(--primary-orange);
            color: white;
        }

        /* Navbar */
        .navbar {
            padding: 0px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background: #3374C4;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
        }

        .navbar-brand span {
            color: var(--primary-orange);
        }

        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            /*color: var(--text-dark) !important;*/
            color: var(--text-white) !important;;
            transition: color 0.3s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-orange) !important;
        }

        /* Hero Section */
        .hero {
            padding: 100px 0 60px;
            position: relative;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 500px;
        }

        /* About Us */
        .about-section {
            padding:0px 0;
            background-color: white;
        }

        .about-content {
            padding-left: 20px;
            font-size:21px;
        }

        /* Why Choose */
        .why-choose {
            padding: 60px 0;
            text-align: center;
        }

        .why-choose h3,
        .why-choose h6 {
            color: #505050;
        }

        .icon-box {
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .icon-box:hover {
            transform: translateY(-5px);
        }

        .icon-box i {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        /* Features */
    
        
        .features {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .features h2,
        .features h5 {
            color: #000000;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: #3374C4;
            color: var(--primary-blue);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .flip-card {
            background-color: transparent;
            perspective: 1000px;
            height: 100%;
            min-height: 320px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.3s;
        }

        .flip-card-front {
            background-color: white;
        }

        .flip-card-back {
            background: linear-gradient(135deg, #faefd6 0%, #cbe1fa 100%);
            transform: rotateY(180deg);
            text-align: left;
            align-items: flex-start;
        }

        .flip-card:hover .flip-card-front,
        .flip-card:hover .flip-card-back {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .flip-card-back h5 {
            color: var(--primary-blue) !important;
            margin-bottom: 20px;
            font-weight: 700;
            width: 100%;
        }

        .flip-card-back ul {
            list-style-type: none;
            padding-left: 0;
            margin: 0;
            width: 100%;
        }

        .flip-card-back li {
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--text-dark);
            position: relative;
            padding-left: 20px;
            font-weight: 500;
            line-height: 1.4;
        }

        .flip-card-back li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--text-dark);
            font-weight: bold;
        }
        
        
        
        
        
    
    

        /* How It Works */
        .how-it-works {
            padding: 80px 0;
            text-align: center;
        }

        .how-it-works h2 {
            color: #000000;
        }

        .step-circle {
            width: 60px;
            height: 60px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .step-connector {
            position: relative;
        }

        .step-connector::after {
            content: '';
            position: absolute;
            top: 30px;
            left: 50%;
            width: 100%;
            height: 2px;
            background-color: #cbd5e1;
            z-index: 1;
        }

        .step-connector:last-child::after {
            display: none;
        }

        /* CTA Blue Section */
        .cta-blue {
            background-color: var(--bg-accent-blue);
            padding: 60px 0;
            text-align: center;
            color: white;
        }

        .cta-blue h2 {
            color: #000000;
            margin-bottom: 10px;
        }

        .cta-blue p {
            color: #000000;
        }

        /* Pricing */
        

        /* Selected Plan Highlight */
        /* .pricing-card.selected-plan-box {
            border: 2px solid #10b981 !important;
            background: #f0fdf4 !important;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2) !important;
            transform: scale(1.05);
            z-index: 3;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-orange);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin: 20px 0;
        }

        .price span {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            text-align: left;
        }

        .pricing-list li {
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .pricing-list li i {
            color: #10b981;
            margin-right: 10px;
        }

        .pricing-list li.disabled i {
            color: #ef4444;
        }

        .pricing-list li.disabled {
            color: var(--text-muted);
        } */

        /* Clients */
        .clients {
            padding: 60px 0;
            background: var(--bg-light);
        }

        .clients h2,
        .client-box h6 {
            color: #000000;
        }

        .client-box {
            background: white;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .client-box i {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        /* Demo Form */
        .demo-section {
            padding: 80px 0;
        }

        .demo-section h2 {
            color: #000000;
        }

        .demo-features {
            list-style: none;
            padding: 0;
        }

        .demo-features li {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .demo-features li i {
            color: #10b981;
            margin-right: 15px;
            font-size: 1.3rem;
            background: #d1fae5;
            padding: 5px;
            border-radius: 50%;
        }

        .demo-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        /* Get Started Newsletter */
        .newsletter {
            background: #f1f5f9;
            padding: 80px 0;
            text-align: center;
        }

        .newsletter h2 {
            color: #000000;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }

        .newsletter-input {
            width: 100%;
            padding: 15px 140px 15px 20px;
            border-radius: 30px;
            border: 1px solid #cbd5e1;
        }

        .newsletter-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            bottom: 5px;
            border-radius: 25px;
            padding: 0 20px;
        }

        /* Footer */
        .footer {
            background: var(--primary-blue);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--primary-orange);
        }

        .footer p {
            color: #cbd5e1;
        }

        .footer-heading {
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #94a3b8;
        }

        /* Responsive Global Adjustments for Mobile, Tablet & Mac */
        @media (max-width: 991px) {
            .hero {
                padding: 100px 0 40px !important;
                text-align: center;
            }

            .hero-title {
                font-size: 2.8rem;
            }

            .hero-subtitle {
                margin: 0 auto 30px;
            }

            .hero .d-flex.gap-3 {
                justify-content: center;
                margin-bottom: 40px;
            }

            .about-content {
                padding-left: 0;
                padding-top: 30px;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .price {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero .d-flex.gap-3 {
                flex-direction: column;
                align-items: center;
            }

            .btn-custom,
            .btn-outline-custom {
                width: 100%;
                max-width: 300px;
            }

            h2 {
                font-size: 1.8rem !important;
            }

            .step-connector::after {
                display: none;
            }
        }




        /*  Custom css    */

        .dark-line {
        border: none;
        height: 4px;
    }
    
    
    /* Pricing Card Styles */
    .pricing-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        background: white;
        border-radius: 24px;
        padding: 1.8rem 1.2rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid #e9ecef;
    }
    .pricing-card.selected-plan-box {
        border: 2px solid #3374C4;
        box-shadow: 0 15px 35px rgba(51,116,196,0.15);
        transform: scale(1.02);
    }
    /* .pricing-list {
        height: 220px;
        overflow-y: auto;
        padding-right: 6px;
        margin-bottom: 0;
        list-style: none;
        padding-left: 0;
    } */


    .pricing-list {
        padding-right: 6px;
        margin-bottom: 0;
        list-style: none;
        padding-left: 0;
    }


    .pricing-list li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
    .pricing-list li i {
        margin-right: 8px;
    }
    .fa-check-circle { color: #28a745; }
    .fa-times-circle { color: #dc3545; }
    .price {
        font-size: 1.8rem;
        font-weight: bold;
        color: #3374C4;
        margin: 15px 0;
    }
    
    /* Stepper Styles */
    .stepper-wrapper {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        position: relative;
    }
    .stepper-wrapper::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 0;
        right: 0;
        height: 3px;
        background: #e0e0e0;
        z-index: 1;
    }
    .stepper-item {
        position: relative;
        z-index: 2;
        text-align: center;
        flex: 1;
    }
    .step-counter {
        width: 50px;
        height: 50px;
        background: #e0e0e0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        font-weight: bold;
        font-size: 1.2rem;
        color: #fff;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }
    .stepper-item.active .step-counter {
        background: #3374C4;
        box-shadow: 0 0 0 5px rgba(51,116,196,0.2);
    }
    .stepper-item.completed .step-counter {
        background: #28a745;
    }
    .stepper-item.completed .step-counter i {
        font-size: 1.2rem;
    }
    .step-name {
        font-size: 0.8rem;
        color: #6c757d;
        font-weight: 500;
    }
    .stepper-item.active .step-name {
        color: #3374C4;
        font-weight: 600;
    }
    .stepper-item.completed .step-name {
        color: #28a745;
    }
    
    /* Registration Steps Styling */
    .registration-step {
        display: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    .registration-step.active-step {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: slideIn 0.3s ease;
    }
    @keyframes slideIn {
        from { opacity: 0; transform: translateY(20px);}
        to { opacity: 1; transform: translateY(0);}
    }
    .otp-input {
        letter-spacing: 8px;
        font-size: 1.5rem;
        text-align: center;
        font-weight: bold;
    }
    .form-control.is-invalid {
        border-color: #dc3545;
    }
    .invalid-feedback { display: none; }
    .form-control.is-invalid ~ .invalid-feedback { display: block; }
    .domain-choice {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .domain-option {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        padding: 10px 15px;
        border: 1px solid #dee2e6;
        border-radius: 12px;
        flex: 1;
        min-width: 180px;
    }
    .domain-option input { margin: 0; }
    .selected-plan-badge {
        background: #e8f0fe;
        padding: 8px 15px;
        border-radius: 30px;
        display: inline-block;
        margin-bottom: 15px;
    }
    .hero {
        background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    }
    section {
        padding: 60px 0;
    }
    .step-circle {
        width: 50px;
        height: 50px;
        background: #3374C4;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .text-primary { color: #3374C4 !important; }
    .btn-primary { background-color: #3374C4 !important; border-color: #3374C4 !important; }
    
    /* Navigation Buttons */
    .step-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        gap: 15px;
    }
    .step-navigation button {
        min-width: 120px;
    }
    
    .btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    /* Highlight animation for pricing section */
    @keyframes highlightPulse {
        0% { box-shadow: 0 0 0 0 rgba(51,116,196,0.4); }
        70% { box-shadow: 0 0 0 15px rgba(51,116,196,0); }
        100% { box-shadow: 0 0 0 0 rgba(51,116,196,0); }
    }
    .pricing-highlight {
        animation: highlightPulse 0.8s ease-in-out;
    }
    
    .plan-required-alert {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 9999;
        animation: slideInRight 0.3s ease;
    }
    @keyframes slideInRight {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    
    /* Error Alert Styles */
    .error-alert {
        background-color: #f8d7da;
        border: 1px solid #f5c6cb;
        color: #721c24;
        padding: 12px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .error-alert i {
        font-size: 1.2rem;
    }
    .error-alert .login-link {
        color: #721c24;
        font-weight: bold;
        text-decoration: underline;
        margin-left: 5px;
    }
    .error-alert .login-link:hover {
        color: #491217;
    }
    
    /* Field specific error styling */
    .field-error {
        font-size: 0.8rem;
        color: #dc3545;
        margin-top: 5px;
        display: block;
    }
    
    .is-invalid {
        border-color: #dc3545 !important;
    }
    
    /* Subscription Details Card Styles */
    .subscription-details-card {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 16px;
        border: 1px solid #e9ecef;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .subscription-details-card strong {
        font-weight: 600;
    }
    .subscription-details-card .badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    #trialDaysRow {
        border-top: 1px dashed #dee2e6;
        padding-top: 10px;
        margin-top: 5px;
    }
    .success-icon-animation {
        animation: bounceIn 0.6s ease;
    }
    @keyframes bounceIn {
        0% { transform: scale(0.3); opacity: 0; }
        50% { transform: scale(1.05); }
        70% { transform: scale(0.9); }
        100% { transform: scale(1); opacity: 1; }
    }


    
.pricing-category-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;
}

.pricing-category-tabs .btn-custom{
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
    transition:all .3s ease;
}

/* Inactive Tab */
.pricing-category-tabs .btn-custom:not(.active){
    background:#f5f7fa !important;
    color:#444 !important;
    border:1px solid #e5e7eb !important;
}

/* Hover */
.pricing-category-tabs .btn-custom:hover{
    transform:translateY(-2px);
}

/* Active Tab */
.pricing-category-tabs .btn-custom.active{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}