
        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit';
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            min-height: 100vh;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .header {
            text-align: center;
            margin-top: 80px;
            animation: fadeInDown 0.8s ease;
        }

        .header h1 {
            font-size: 3rem;
            font-weight: 900;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 10px;
        }

        .header p {
            font-size: 1.1rem;
            color: #666;
        }

        .header a {
            color: #1C2582;
            text-decoration: none;
            font-weight: 600;
        }

        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            width: 100%;
            position: relative;
            top: 80px;
            padding-bottom: 100px;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .pricing-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .pricing-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .pricing-card:nth-child(3) {
            animation-delay: 0.3s;
        }

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

        .pricing-card.featured {
            border: 3px solid #1C2582;
            transform: scale(1.05);
        }

        .badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #1a1a1a;
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .plan-description {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        .price {
            display: flex;
            align-items: baseline;
            text-decoration: line-through;
            color: #999;
            margin-bottom: 8px;
        }

        .currency {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a1a1a;
        }

        .amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1;
        }

        .period {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 8px;
        }

        .billing-info {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 25px;
        }

        .cta-button {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }

        .cta-button.primary {
            background: #1C2582;
            color: white;
        }

        .cta-button.primary:hover {
            background: #1C2582;
            transform: scale(1.02);
        }

        .cta-button.secondary {
            background: transparent;
            color: #1a1a1a;
            border: 2px solid #e5e7eb;
        }

        .cta-button.secondary:hover {
            background: #f9fafb;
            border-color: #d1d5db;
        }

        .additional-link {
            text-align: center;
            margin-bottom: 25px;
        }

        .additional-link a {
            color: #1C2582;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .additional-link a:hover {
            color: #1C2582;
        }

        .divider {
            height: 1px;
            background: #e5e7eb;
            margin: 25px 0;
        }

        .highlights-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .features-list {
            list-style: none;
        }

        .features-list li {
            padding: 10px 0;
            color: #4b5563;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            line-height: 1.5;
        }

        .the-menu{
            display: none;
        }

        .Login{
    display: none;
}

        .features-list li:before {
            content: "✓";
            color: #10b981;
            font-weight: 700;
            margin-right: 12px;
            font-size: 1.1rem;
        }

        .contact-section {
            text-align: center;
        }

        .contact-text {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-container {
                grid-template-columns: 1fr;
            }
        }

        .navigation {
            height: 10vh;
            width: 900px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(240, 244, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 100%);
            backdrop-filter: blur(15px);
            /* main frosted glass blur */
            -webkit-backdrop-filter: blur(15px);
            /* Safari support */
            border: 1px solid rgba(255, 255, 255, 0.63);
            position: fixed;
            left: 200px;
            top: 20px;
            border-radius: 20px;
            display: flex;
            z-index: 999;
        }


        .the-navs {
            width: 250px;
            /* background-color: grey; */
            position: relative;
            top: 20px;
            left: 60px;
        }


        .the-navs ul {
            list-style: none;
            display: flex;
            gap: 20px;

        }


        .the-navs ul a {
            text-decoration: none;
            font-size: 20px;
            white-space: nowrap;
            color: #1C2582;
        }


        .logo {
            height: 50px;
            width: 140px;
            /* background-color: green; */
            position: relative;
            top: 10px;
            left: 20px;
            overflow: hidden;
        }


        .logo img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .Login {
            height: 40px;
            width: 100px;
            position: absolute;
            right: 30px;
            top: 10px;
            border: none;
            background-color: #1C2582;
            border-radius: 10px;
            color: white;
            font-size: 18px;
            font-family: 'Outfit';
        }

        .menu {
            display: none;
        }



        @media (max-width: 480px) {
            .navigation {
                width: 340px;
                position: fixed;
                left: 20px;

            }

            .logo {
                width: 130px;
                height: 40px;
                /* background-color: green; */
                position: relative;
                top: 25px;
            }

            .the-navs {
                display: none;

            }

            .Login {
                display: none;
                ;
            }


            .menu {
                height: 40px;
                width: 40px;
                /* background-color: green; */
                position: absolute;
                right: 20px;
                top: 25px;
                color: #1C2582;
                display: block;
            }

            .menu i {
                font-size: 34px;
            }

        }


        .pricing {
            font-weight: 600;
        }




        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            min-height: 100vh;
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .comparison-container {
            max-width: 1200px;
            width: 100%;
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .header-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .header-section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .header-section p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            overflow: hidden;
        }

        .comparison-table thead {
            background: #f8f9fa;
        }

        .comparison-table th {
            padding: 20px 15px;
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
            color: #1a1a1a;
            border-bottom: 2px solid #e5e7eb;
        }

        .comparison-table th:first-child {
            text-align: left;
            padding-left: 30px;
        }

        .comparison-table th.highlight {
            background: #e0e7ff;
            color: #4f46e5;
            position: relative;
        }

        .comparison-table tbody tr {
            transition: background 0.2s ease;
        }

        .comparison-table tbody tr:hover {
            background: #f9fafb;
        }

        .comparison-table td {
            padding: 18px 15px;
            text-align: center;
            font-size: 0.9rem;
            color: #4b5563;
            border-bottom: 1px solid #f3f4f6;
        }


        .navigation {
    height: 10vh;
    width: min(900px, 90%);
    max-width: 1200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(240, 244, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.63);
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    border-radius: 20px;
    display: flex;
    z-index: 999;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    height: 50px;
    width: 140px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.the-navs {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
    /* background-color: green; */
    position: relative;
    top:  0px;
}

.the-navs ul {
    list-style: none;
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    margin: 0;
    padding: 0;
    align-items: center;
}

.the-navs ul a {
    text-decoration: none;
    font-size: clamp(16px, 1.5vw, 20px);
    white-space: nowrap;
    color: #1C2582;
    transition: opacity 0.3s;
}

.the-navs ul a:hover {
    opacity: 0.7;
}

.home-link {
    font-weight: 600;
}

.Login {
    height: 40px;
    width: 100px;
    border: none;
    background-color: #1C2582;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-family: 'Outfit';
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.Login:hover {
    transform: scale(1.05);
}

.menu {
    display: none;
}


        .comparison-table td:first-child {
            text-align: left;
            font-weight: 600;
            color: #1a1a1a;
            padding-left: 30px;
        }

        .comparison-table td.highlight {
            background: #f5f7ff;
        }

        .category-row td {
            background: #f8f9fa;
            font-weight: 700;
            color: #1a1a1a;
            padding: 25px 15px;
            font-size: 1rem;
            text-align: center;
        }

        .category-row td:first-child {
            text-align: center;
        }

        .checkmark {
            color: #10b981;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1px solid #d1d5db;
            color: #9ca3af;
            font-size: 0.75rem;
            margin-left: 8px;
            cursor: help;
        }

        @media (max-width: 768px) {
            .comparison-container {
                padding: 30px 20px;
                overflow-x: auto;
            }

            .header-section h2 {
                font-size: 1.5rem;
            }

            .comparison-table {
                min-width: 600px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 12px 10px;
                font-size: 0.85rem;
            }

            .comparison-table th:first-child,
            .comparison-table td:first-child {
                padding-left: 15px;
            }
        }

        @media (max-width: 480px) {
            .main {
        margin-bottom: -180px;
        width: 100%;
        overflow-x: hidden;
        height: 600px;
    }

    .navigation {
        width: 90%;
        max-width: 360px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 15px;
        height: 60px;
    }


    .the-about{
        margin-top: -750px;
        position: relative;
        bottom: auto;
        overflow: hidden;
    }
    .logo {
        width: 110px;
        height: 40px;
        top: 5px;
    }

    .the-navs {
        display: none;
    }

    .Login {
        display: none;
    }

    .menu {
        height: 40px;
        width: 40px;
        position: absolute;
        right: 15px;
        top: 13px;
        color: #1C2582;
        display: block;
    }


    .the-menu {
        height: auto;
        width: 360px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 244, 255, 0.95) 50%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.63);
        position: fixed;
        z-index: 111;
        top: 110px;
        left: 22px;
        right: 0;
        border-radius: 10px;
        padding: 20px 0;
        display: none;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }

    .the-menu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .the-menu a {
        text-decoration: none;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .the-menu li {
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        box-sizing: border-box;
    }

    .the-menu li:hover {
        background-color: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
        padding-left: 28px;
    }

    .the-menu li:last-child {
        border-bottom: none;
        padding-bottom: 20px;
    }

    /* Add some spacing between menu items and login button */
    .the-menu {
        margin-bottom: 20px;
    }

    /* Login Button Styling for Mobile Menu */
    .the-menu~.Login,
    .menu+.the-menu .Login {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        padding: 14px 24px;
        background: linear-gradient(135deg, #1C2582 0%, #2563eb 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 112;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .the-menu~.Login:hover,
    .menu+.the-menu .Login:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    }

    /* Animation for menu appearance */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    /* Optional: Add this if you want the menu to hide/show with a toggle */
    .the-menu.hidden {
        display: none;
    }

    .the-menu.show {
        display: flex;
    }

    .menu i {
        font-size: 34px;
    }
        

        }
