:root {
            --primary: #ff6b6b;
            --secondary: #4ecdc4;
            --accent: #ffd166;
            --dark: #1a1a2e;
            --light: #f7f7f7;
            --text: #333333;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            background-color: var(--primary);
            color: white;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #f0f0f0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--dark);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 0;
            text-align: center;
            border-bottom: 5px solid var(--accent);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-box h2 {
            color: var(--dark);
            margin-bottom: 1rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ff5252;
        }
        main {
            padding: 3rem 0;
        }
        .content-section {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .content-section h2 {
            color: var(--dark);
            border-left: 5px solid var(--secondary);
            padding-left: 15px;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        .content-section h3 {
            color: var(--primary);
            margin: 1.5rem 0 1rem;
            font-size: 1.5rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff9e6;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            box-shadow: var(--shadow);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        .rating-box, .comment-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffd700;
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            margin: 1rem 0;
            min-height: 150px;
            resize: vertical;
            font-size: 1rem;
        }
        .comment-form button, .rating-box button {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover, .rating-box button:hover {
            background-color: #3db8af;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-section a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: var(--shadow);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
        }
        @media (max-width: 576px) {
            .hero {
                padding: 2.5rem 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 700; color: var(--dark); }
        .keyword { background-color: #e6f7ff; padding: 2px 6px; border-radius: 3px; }
