        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
           margin-bottom: 20px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to top, #f8fafc 0%, #ffffff 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .hero-text h1 .highlight {
            color: #1266D3;
        }

        .hero-text .subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .saas-badge {
            display: inline-flex;
            gap: 8px;
            align-items: center;
            background: #dcfce7;
            color: #16A249;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 12px 24px;
            max-width: fit-content;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: #1266D3;
            color: white;
        }
        .btn-primary img{
            margin-top: 10px;
            margin-right: 8px;
        }

        .btn-primary:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: white;
            padding: 4px 40px;
            color: #1266D3;
            border: 1px solid rgba(30, 77, 169, 0.685);
        }

        .btn-secondary:hover {
            background: #E6F1FF;
            color: #0E4FA4;
        }

        .stats {
            display: flex;
            align-items: center;
            gap: 2rem;
            color: #64748b;
            font-size: 0.9rem;
        }
        .stats-item{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: start;
            position: relative;
        }
        .hero-visual img{
            max-width: 500px;
            border-radius: 20px;
            animation: shadow-anime 2s linear infinite;
        } 
        @keyframes shadow-anime {
            0%{
            box-shadow: 0 5px 40px 25px rgba(33, 127, 222, 0.566);
            }
            25%{
                box-shadow: 0 5px 40px 20px rgba(33, 127, 222, 0.566);
            }
            50%{

                box-shadow: 0 5px 40px 15px rgba(33, 128, 222, 0.21);
            }
            75%{
                box-shadow: 0 5px 40px 20px rgba(33, 127, 222, 0.566);

            }
            100%{
                box-shadow: 0 5px 40px 25px rgba(33, 127, 222, 0.566);

            }
        }
        @media (max-width:600px) {
            .hero-visual img{
                max-width: 300px;
                align-self: center;
            }
            .container-cta h2{
                font-size: 40px !important;
            }
        }
       
        .message {
            background: #f1f5f9;
            padding: 12px 16px;
            border-radius: 15px;
            margin-bottom: 15px;
            position: relative;
        }

        .message::before {
            content: "";
            position: absolute;
            top: 15px;
            left: -8px;
            width: 0;
            height: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-right: 8px solid #f1f5f9;
        }

        .floating-elements {
            position: absolute;
            top: 20%;
            left: -10%;
            opacity: 0.1;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Features Grid */
        .features {
            padding: 80px 0;
            background: #f8fafc;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
            gap: 1.4rem;
        }

        .feature-card {
            background: white;
            padding: 1rem;
            border: 1px solid #dfdedebf;
            border-radius: 16px;
            transition: all 2.3s, box-shadow 0.3s;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: #0F54AF;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
    .feature-card:hover {
        box-shadow: 0 10px 25px rgba(176, 194, 255, 0.1);
    }
    .feature-card h3 {
            transition: color 0.4s ease;
        }

        .feature-card .feature-icon {
            transition: transform 0.3s ease;
        }


        .feature-card:hover h3 {
            color: #1266D3;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.075);
        }
     

        

        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* How it Works */
        .how-it-works {
            padding: 80px 0;
            background: linear-gradient(to top, #F5F9FF, white);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .step {
            text-align: center;
            position: relative;
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: #0F57B4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
            transition: 0.6s;

        }

        .step::after {
            content: "";
            position: absolute;
            top: -8px;
            right: -8px;
            width: 24px;
            height: 24px;
            background: #16A249;
            font-weight: 700;
            border-radius: 50%;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .step:nth-child(1):after { content: "1"; }
        .step:nth-child(2):after { content: "2"; }
        .step:nth-child(3):after { content: "3"; }
        .step:nth-child(4):after { content: "4"; }

        .step h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1e293b;
            transition: 0.6s;
        }
        .step:hover h3{
            color: #1266D3;
        }
        .step:hover .step-number{
            transform: scale(1.10);
        }

        .step p {
            color: #64748b;
            line-height: 1.6;
        }

        .saas-badge-2 {
            max-width: fit-content;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            align-items: center;
            background: #E7F5EC;
            color: #16A249;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }
.saas-badge-2 img{
    margin-top: 5px;
}
        /* Pricing */
        .pricing {
            padding: 80px 0;
            background: #ffffff;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 1rem;
            margin-top: 4rem;
        }

        .pricing-card {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: white;
            border-radius: 16px;
            padding: 2rem 0.4rem;
            border: 1px solid #ccccccc9;
            position: relative;
            transition: transform 0.3s;
        }

       

        .pricing-card.popular {
            border: 1px solid #276ac2d8;/* transform: scale(1.05); */
            background: #F3F7FD;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #1266D3;
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #2B303B; text-align: center;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            color: #1266D3;
            margin-bottom: 1rem;
        }

        .plan-price .currency {
            font-size: 14px;
            font-weight: 400;
            color: #676F7E;
        }

        .plan-description {
            color: #64748b;
            margin-bottom: 2rem;
        }

         .plan-description-1 {
            font-size: 24px;
            color: #182332;
        font-weight: 700;
        }
        .text-green{
            color:#16A249;
        }
        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
            font-size: 14px;
            font-weight: 400;
        }

        .plan-features li {
            padding: 0.5rem 0;
            color: #64748b;
            display: flex;
            align-items: center;
        }

        .plan-features li::before {
            content: "";
            background: url('/assets/tick.svg');
            width: 16px;
            height: 16px;
            background-position: center center;
            background-size: cover;
            font-weight: bold;
            margin-right: 10px;
        }
        .detailed-pricing{
            min-width: 90%;
                margin-bottom: 10px;

        }
        .aline-text{
            color: #676F7E;
            font-size: 14px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 50px;
        }
            .pkg-details{
                margin: auto;
                display: flex;
                justify-content: space-between;
            }
            .pkg-details>span:nth-child(1){
                color: #2B303B;
                font-weight: 400;
                font-size: 14px;
            }
            .pkg-details>span:nth-child(2){
                font-size: 14px;
                font-weight: 600;
            }



        /* CTA Section */
        .cta-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #1161C9 0%, #1161C9 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        .container-cta{
            max-width: 1000px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .cta-section h2 {
            font-size:48px;
            line-height: 56px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section .highlight {
            color: #16A249;
        }
        .container-cta .btn:hover{
             background: #0d873ae6 !important;
        }

        .cta-stats {
            display: flex;
            justify-content: center;
            gap: 8rem;
            margin-top: 3rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 30px;
            font-weight: 700;
            color: #16A249;
        }

        .stat-label {
            font-size: 1rem;
            color: #FAFAFACC;
            opacity: 0.9;
        }

        
        /* Footer */
        footer {
            background: #2B303B;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand {
            color: #cbd5e1;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links:nth-child(1) li a{
            transition: color 0.2s;
        }
        .footer-links:nth-child(1) li a:hover{
              color: #0E4FA4;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            margin-top: 3rem;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 2rem;
        }
        .footer-bottom-links a{
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-bottom-links a:hover{
            color: #0E4FA4;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .chat-interface {
                width: 100%;
                max-width: 350px;
            }

            .cta-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
    