:root {
            --primary: #4f46e5;
            --secondary: #10b981;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f1f5f9;
            color: #334155;
            line-height: 1.7;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #7c3aed);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .search-form {
            display: flex;
            width: 100%;
            max-width: 400px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 24px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #e69c0a;
        }
        nav {
            background-color: rgba(255,255,255,0.08);
            padding: 0.8rem 0;
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            gap: 2rem;
            list-style: none;
        }
        .nav-desktop a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            list-style: none;
            background-color: var(--primary);
            padding: 1rem;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-mobile a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1.2rem 0;
            background-color: #e2e8f0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: var(--gray);
        }
        main {
            padding: 2.5rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .content {
            background-color: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }
        h1 {
            color: var(--dark);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--accent);
            padding-left: 1.5rem;
        }
        h2 {
            color: var(--primary);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px dashed #e2e8f0;
        }
        h3 {
            color: var(--secondary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #f0f9ff;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, var(--primary), #6366f1);
            color: white;
            padding: 1.8rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 12px rgba(79,70,229,0.3);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-8px);
        }
        .stat-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .stat-card h3 {
            color: white;
            font-size: 2.2rem;
            margin: 0.5rem 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: var(--dark);
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #f1f5f9;
        }
        .download-box {
            text-align: center;
            background: linear-gradient(to bottom right, #dbeafe, #f0f9ff);
            border: 2px dashed var(--primary);
        }
        .download-btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            margin-top: 1rem;
            transition: all 0.3s;
        }
        .download-btn:hover {
            background-color: #0da271;
            transform: scale(1.05);
        }
        .interactive {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 3rem;
            border: 1px solid #e2e8f0;
        }
        .interactive h2 {
            text-align: center;
            color: var(--primary);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79,70,229,0.2);
        }
        .rating {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #e2e8f0;
            margin: 1rem 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #fbbf24;
        }
        .btn-submit {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        .btn-submit:hover {
            background-color: #4338ca;
        }
        .longtail-links {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }
        .longtail-links h2 {
            text-align: center;
            color: var(--primary);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .web-link {
            background-color: #f1f5f9;
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: #e0f2fe;
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background-color: var(--dark);
            color: #cbd5e1;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.3rem;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-top {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .search-form {
                order: 3;
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            .content, .sidebar-widget, .interactive, .longtail-links {
                padding: 1.8rem;
            }
            .stats {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
                padding-left: 1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .logo a {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            .stat-card h3 {
                font-size: 1.8rem;
            }
        }
