
 :root {
    /* Main Color: #1896fe */
    --primary: #1896fe;
    --primary-dark: #1274ca;  /* Darker shade for hover */
    --primary-light: #60b6ff; /* Lighter shade for gradients */
    --primary-bg: #eaf6ff;    /* Very light background tint */

    /* Neutral Colors */
    --secondary: #1a1a2e;     /* Footer/Dark Backgrounds */
    --text-dark: #1a1a2e;     /* Headings */
    --text-medium: #4a4a68;   /* Paragraphs */
    --text-light: #8888a0;    /* Meta text */
    --white: #ffffff;
    
    /* Grays */
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;

    /* Status Colors */
    --success: #22c55e;
    --warning: #f59e0b;

    /* UI Elements */
    --radius: 6px;
    --radius-lg: 16px;
    --radius-xl: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--white);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

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

        /* Header */
        .header {
    background: rgba(255, 255, 255, 0.85); /* Thoda transparent taaki blur dikhe */
    backdrop-filter: blur(12px);           /* Glass effect */
    -webkit-backdrop-filter: blur(12px);   /* Safari ke liye */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Dark shadow neeche */
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo img {
            height: 50px;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-medium);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }

        .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
  /*  box-shadow: 0 4px 14px rgba(24, 150, 254, 0.4); */
}

.btn-primary:hover {
    transform: none !important; /* Movement band */
  /*  box-shadow: 0 4px 14px rgba(24, 150, 254, 0.4) !important; /* Shadow constant rakhi */
    background: var(--primary-dark); /* Sirf color badlega */
}

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary-bg);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            background: #fefefe;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            background-size: 50px 50px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 55px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 24px;
            color: black;
        }

        .hero-text h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

        .hero-text p {
            font-size: 18px;
            color: #18113C;
            margin-bottom: 32px;
            line-height: 1.7;
            font-weight: 500 !important;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image img {
            border-radius: var(--radius-xl);
          /*  box-shadow: var(--shadow-xl); */
            width: 100%;
        }

        /* Why Different Section */
        .why-different {
            padding: 20px 0;
            background: var(--white);
        }

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

        .section-title {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .why-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
            transition: all 0.3s;
        }

        .why-card:hover, .pricing-card:hover, .feature-card:hover {
    transform: none !important;
    box-shadow: var(--shadow) !important; /* Shadow change nahi hogi */
    border-color: var(--primary) !important;
}

        .why-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-bg) 0%, #e5fbff 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .why-icon i {
            font-size: 28px;
            color: var(--primary);
        }

        .why-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .why-card p {
            color: var(--text-medium);
            font-size: 14px;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s;
            border: 1px solid var(--gray-200);
        }


        .feature-card i {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-medium);
            font-size: 13px;
            line-height: 1.5;
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: var(--white);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-xl);
            padding: 32px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }


        .plan-label {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 4px;
        }

        .pricing-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .pricing-price {
            margin-bottom: 24px;
        }

        .price-currency {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            vertical-align: top;
        }

        .price-amount {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
        }

        .price-period {
            font-size: 16px;
            color: var(--text-light);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 28px;
            text-align: left;
        }

        .pricing-features li {
            padding: 10px 0;
            color: var(--text-medium);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--gray-100);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--success);
            font-size: 14px;
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 16px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
        }

        .faq-question:hover {
            background: var(--gray-50);
        }

        .faq-question i {
            transition: transform 0.3s;
            color: var(--primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 0 24px 20px;
            color: var(--text-medium);
            font-size: 15px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 32px;
            color: var(--text-dark);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
        }

        .contact-item h4 {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .contact-item p {
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .contact-form {
            background: var(--gray-50);
            padding: 40px;
            border-radius: var(--radius-xl);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius);
            font-size: 15px;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Footer */
        .footer {
            background: var(--secondary);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-logo img {
            height: 40px;
            filter: brightness(0) invert(1);
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.2s;
        }

        .footer-social a:hover {
            background: var(--primary);
        }

        .footer-bottom {
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 74px;
            left: 0;
            right: 0;
            background: var(--white);
            padding: 20px;
            box-shadow: var(--shadow-lg);
            z-index: 999;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav li {
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-100);
        }

        /* Sirf list items (Features, Pricing, etc.) par apply hoga */
.mobile-nav li a {
    display: block;       /* Full width click */
    width: 100%;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

        /* Telegram Banner */
        .telegram-banner {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            z-index: 1000;
            max-width: 300px;
            display: none;
        }

        .telegram-banner.show {
            display: block;
        }

        .telegram-banner h6 {
            font-size: 14px;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .telegram-banner p {
            font-size: 13px;
            color: var(--text-medium);
            margin-bottom: 12px;
        }

        .telegram-banner .btn-telegram {
            background: #0088cc;
            color: var(--white);
            padding: 10px 20px;
            border-radius: var(--radius);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .telegram-banner .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: var(--text-light);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 40px;
            }

/* Mobile View Fixes */
@media (max-width: 768px) {
    /* ...baki codes... */

    .hero-buttons { 
        display: flex; 
        flex-wrap: nowrap; /* Wrap band kiya taaki next line me na jaye */
        gap: 10px; 
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn { 
        flex: 1; /* Dono buttons barabar jagah lenge */
        width: auto; 
        font-size: 14px; 
        padding: 12px 6px; 
        white-space: nowrap;
    }
}

            .hero-image {
                max-width: 500px;
                margin: 0 auto;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav .btn {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-text h1 {
                font-size: 32px;
            }

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

            .why-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

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

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        /* Typewriter Cursor Effect */
.txt-type {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-right: 5px; /* Thoda space cursor ke liye */
}

/* Cursor jo blink karega */
.txt-type::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 17%;
    width: 3px;
    height: 65%;
    background-color: #1896fe; /* Cursor ka color */
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.mobile-login-btn {
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 100%;
    background: var(--primary); /* Blue color */
    color: white !important;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
  /*  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); */
    margin-top: 15px;
    text-decoration: none;
}

  /* 1. Plan Label (Baby Panel etc.) Fix - Dark Text on Light Background */
    .plan-label {
        color: #000000 !important; /* Text ko Black kar diya */
        background-color: #e0f2f1 !important; /* Background ko Light kar diya */
        font-weight: 700 !important;
    }

    /* 2. Price Period (/Monthly) Fix - Darker Grey */
    .price-period {
        color: #444444 !important; /* Pehle light grey tha, ab dark grey hai */
    }

    /* 3. Pricing Card Text Fix */
    .pricing-card {
        color: #212529 !important; /* Text ko Dark Grey/Black kar diya */
    }

    /* 4. Telegram Button Fix - Darker Blue for Contrast */
    .btn-telegram {
        background-color: #005c8a !important; /* Blue ko thoda dark kiya taaki White text chamke */
        color: #ffffff !important;
    }
    
    /* Hover effect for Telegram button */
    .btn-telegram:hover {
        background-color: #004a70 !important;
    }
    
    /* Sabhi elements se transition aur animation delete karne ke liye */
.btn, .btn-primary, .pricing-card, .why-card, .feature-card, .footer-social a {
    transition: none !important;
    animation: none !important;
}

/* Mouse le jaane par blinking rokne ke liye hard reset */
*:hover {
    transition: none !important;
}