        :root {
            --primary-color: #206BC4;
            --primary-hover: #4299E1;
            --btn-primary: #4299E1;
            --btn-primary-hover: #68ADE7;
            --btn-secendary: #74B816;
            --btn-secendary-hover: #90C645;
            --btn-warning: #F76707;
            --btn-warning-hover: #F98539;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --bg-light: #ffffff;
            --bg-hover: #f1f5f9;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 55px;

            /* Social Colors */
            --facebook: #1877F2;
            --twitter: #1DA1F2;
            --youtube: #FF0000;
            --instagram-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

         * { box-sizing: border-box; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
        .container { max-width: 1100px; margin: 0 auto; }

        body {
            background-color: #f1f5f9;
            font-size: 14px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            /* For scroll demo */
        }

        /* --- Navbar Container --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            background: var(--bg-light);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .navbar.scrolled {
            box-shadow: var(--shadow);
            border-bottom-color: transparent;
        }

        .nav-container {
            width: 100%;
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* --- Logo --- */
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .logo-img {
	        height: 35px;
	        margin-right: 8px;
        }


        /* --- Desktop Navigation --- */
        .nav-content {
            display: flex;
            align-items: center;
            flex-grow: 1;
        }

        .nav-links {
            display: none; /* Mobile first */
            list-style: none;
            gap: 0.5rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.85rem;
            color: var(--text-main);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 6px;
            transition: var(--transition);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
        }

        .nav-link svg {
            width: 18px;
            height: 18px;
            stroke-width: 2;
        }

        /* --- Dropdowns (Desktop) --- */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 260px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--text-main);
            text-decoration: none;
            font-size: inherit;
            border-radius: 6px;
            transition: var(--transition);
        }

        .dropdown-item:hover {
            background-color: var(--bg-hover);
            color: var(--primary-color);
            padding-left: 1.25rem;
        }

        .chevron {
            width: 14px !important;
            height: 14px !important;
            transition: transform 0.2s;
        }

        .nav-item:hover .chevron {
            transform: rotate(180deg);
        }

        /* --- Action Buttons --- */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .search-icon{
            background: none;
            border: 1px solid #ccc;
            width: 40px;
            height: 40px;
            cursor: pointer;
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: var(--transition);
        }

        .icon-btn {
            background: none;
            border: none;
            padding: 0rem;
            cursor: pointer;
            color: var(--text-main);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

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

        /* --- Mobile Controls --- */
        .mobile-toggle {
            display: flex;
            order: -1;
            margin-right: 1rem;
        }

        /* --- Mobile Sidebar --- */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(2px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: var(--bg-light);
            z-index: 1002;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .sidebar.active {
            left: 0;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sidebar-header {
            padding: 1rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sidebar-content {
            padding: 0rem 0;
        }

        /* --- Mobile Accordion --- */
        .mobile-nav-item {
            width: 100%;
        }

        .mobile-nav-link {
            display: -webkit-box;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            color: var(--text-main);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid transparent;
        }

        .mobile-nav-link.has-dropdown::after {
            content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
            transition: transform 0.3s;
            display: flex;
            margin-left:auto;
        }

        .mobile-nav-item.open .mobile-nav-link.has-dropdown::after {
            transform: rotate(180deg);
        }

        .mobile-dropdown {
            background-color: #f8fafc;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .mobile-nav-item.open .mobile-dropdown {
            max-height: 500px;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 0.8rem 1.5rem 0.8rem 3rem;
            color: var(--text-muted);
            text-decoration: none;
            font-size: inherit;
            border-left: 3px solid transparent;
        }

        .mobile-dropdown-item:hover {
            color: var(--primary-color);
            border-left-color: var(--primary-color);
            background: var(--bg-hover);
        }
        
        /* Main Sidebar Styles */
        .page-wrapper {
	flex: 1;
	display: flex;
	gap: 1rem;
	padding: 2rem;
	max-width: 1160px;
	margin: 3rem auto;
	align-items: flex-start;
}

.main-content {
	flex: 1;
	min-width: 0;
}
        
        .main-sidebar {
	width: 25%;
	flex-shrink: 0;
	position: sticky;
	top: calc(55px + 2rem);
}

aside.mian-sidebar {
    position: sticky;
    top: calc(5px + 2rem);
}

.sidebar-widget {
	background-color: #fff;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
}

.widget-header {
	background-color: var(--bg-color);
	color: #000;
	padding: 1rem 1.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-bottom: 1px solid var(--border-color);
}

.widget-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid var(--border-color);
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: background-color .2s;
}

.widget-list li:last-child a {
	border-bottom: none;
}

.widget-list li a:hover {
	background-color: #f8f9fa;
}

.widget-list i {
	color: #28a745;
}

.tool-container {
	background-color: #fff;
	border-radius: 8px;
	border: 1px solid var(--border-color);
}

.tool-intro {
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.tool-intro h4 {
	padding: 0;
	margin: 0;
	font-size: 1rem;
}

.generator-wrapper {
	padding: 1rem;
}

.discover-more {
	padding: 1.5rem;
	border-top: 1px solid var(--border-color);
}

.discover-more h4 {
	margin: 0 0 1rem 0;
	font-weight: 500;
	background: #fff;
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	background-color: #fff;
	border: 1px solid var(--border-color);
	padding: .3rem .8rem;
	border-radius: 20px;
	font-size: .85rem;
	color: var(--text-color);
	text-decoration: none;
	transition: all .2s;
}

.tag:hover {
	background-color: #f5f5f5;
	border-color: #bbb;
}

.tag i {
	color: var(--primary-blue);
}

        
        
        /* Footer Main Styles */
        .site-footer {
            background-color: var(--bg-light);
            padding: 0rem 0 0.02rem;
            border-top: 1px solid #e2e8f0;
            text-align: center;
            width: 100%;
        }

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

        /* Top Section - Follow Us */
        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color);
            margin-bottom: 1.5rem;
            text-transform: capitalize;
        }

        /* Social Icons Grid */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 1.5rem;
        }

        .social-links a {
            color: #fff;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.2rem;
            transition: transform .2s;
        }

        .social-links a:hover {
            transform: scale(1.1);
        }

        .social-facebook { background-color: var(--facebook); }
        .social-twitter { background-color: var(--twitter); }
        .social-instagram { background: var(--instagram-gradient); }
        .social-youtube { background-color: var(--youtube); }

        /* Bottom Section - Copyright */
        .footer-bottom {
            color: var(--text-color);
            font-size: 0.9rem;
        }

        .footer-bottom b {
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Scroll to Top Button */
        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: var(--primary-color);
            color: var(--bg-light);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }

        #scrollTopBtn.visible {
            opacity: 1;
            visibility: visible;
        }

        #scrollTopBtn:hover {
            background-color: #1a56a0;
            transform: scale(1.05);
        }

        #scrollTopBtn svg {
            width: 24px;
            height: 24px;
            stroke-width: 2.5;
        }

        /* Mobile Responsive Adjustments */
        @media (min-width: 300px) and (max-width: 640px) {
            .footer-bottom {
                font-size: 0.85rem;
                padding: 1.5rem 0.5rem 0;
            }

            
            #scrollTopBtn {
                bottom: 20px;
                right: 20px;
            }
            
            .page-wrapper {
		        flex-direction: column;
		        padding: 2rem .5rem;
                
            }
	
	        aside.mian-sidebar {
	            width: 100%;
	            
	        }
	        
	        .main-sidebar {
		        width: 100%;
		        position: static;
	        }
        }


        /* --- Desktot Responsive Queries --- */
        @media (min-width: 1024px) {
            .nav-links {
                display: flex;
                padding-left: 0px;
            }
            .mobile-toggle {
                display: none;
            }
            .sidebar, .sidebar-overlay {
                display: none;
            }
        }

        /* --- Tablet Responsive Queries --- */
        @media (min-width: 641px) and (max-width: 768px) {
            .logo-img {
                margin-right: 0;
                position: absolute;
                left: 35%;
                transform: translateX(-50%);
            }
            
            .page-wrapper {
                flex-direction: column;
                padding: 2rem .5rem;
            }
            
            aside.mian-sidebar {
	            width: 100%;
	        }
            
            .main-sidebar {
                width: 100%;
                position: static;
            }
        }
