 /* Responsive Layout for Mobile/Tablets */
        @media (max-width: 992px) {
            .bottom-section { grid-template-columns: repeat(4, 1fr); }
        }
        @media (max-width: 768px) {
            .top-section, .bottom-section { grid-template-columns: 1fr; }
        }
		@media (max-width: 768px) {
    .top-section, .bottom-section { grid-template-columns: 1fr; }
    .tools-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px; 
    }
}
        /* Tool Card */
        .card { background: white; padding: 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .card h2 { color: var(--orange); border-bottom: 2px solid #eee; padding-bottom: 10px; font-size: 20px; margin-top: 0; }
        
        
        /* Grid Layout for new tools buttons with logo */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 15px;
        }
        .tool-logo-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 15px 10px;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.2s ease-in-out;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        }


.toprank{padding-top:50px}
#panel { padding: 10px; display: flex; flex-wrap: wrap; gap: 10px; }

#panelnsdl { padding: 10px; display: flex; flex-wrap: wrap; gap: 10px; }
#panelUTIITSL { padding: 10px; display: flex; flex-wrap: wrap; gap: 10px; }
#panelincome { padding: 10px; display: flex; flex-wrap: wrap; gap: 10px; }
#panelLabour { padding: 10px; display: flex; flex-wrap: wrap; gap: 10px; }


:root {
            --primary-blue: #1e3a8a;
            --accent-orange: #f97316;
            --text-dark: #334155;
            --border-light: #e2e8f0;
            --bg-hover: #f8fafc;
        }

        nav {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

       
        .ilove-nav {
            background-color: #ffffff;
            border-bottom: 1px solid lightgray;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 2000;
            height: 65px;
        }

        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            padding: 0 24px;
        }
.nav-logo-img {
    height: 30px; /* Aap isko 35px se 50px ke beech apne mutabiq set kar sakte hain */
    width: auto;  /* Isse logo ka aspect ratio kharab nahi hoga */
    vertical-align: middle; /* Text ke sath perfectly align karne ke liye */
    margin-right: 10px; /* Logo aur text ke beech thodi jagah chodne ke liye */
}
        /* Brand Logo */
        .brand-logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .brand-logo span {
            color: var(--accent-orange);
            margin-left: 2px;
        }

        /* Desktop Menu Controls */
        .menu-links-container {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .nav-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0 14px;
            height: 100%;
            display: flex;
            align-items: center;
            transition: color 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--primary-blue);
            background-color: var(--bg-hover);
        }

        /* iLovePDF Dropdown Panel System */
        .dropdown-panel {
            position: absolute;
            top: 65px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            display: none;
            padding: 15px;
            min-width: 240px;
            z-index: 2500;
        }

        .nav-item:hover .dropdown-panel {
            display: block;
        }

        .dropdown-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #94a3b8;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 4px;
        }

        .dropdown-panel a {
            display: block;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: all 0.15s ease;
        }

        .dropdown-panel a:hover {
            background-color: #eff6ff;
            color: red;
            padding-left: 16px;
        }

        /* Hamburger Button (Left Aligned on Mobile) */
        .burger-trigger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 22px;
            height: 16px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .burger-trigger span {
            width: 100%;
            height: 2.5px;
            background-color: var(--text-dark);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Mobile View Responsive Shift (Breakpoint for full navigation protection) */
        @media (max-width: 1150px) {
            .burger-trigger {
                display: flex;
                order: 1;
            }

            .brand-logo {
                order: 2;
                margin-right: auto;
                margin-left: 16px;
            }

            .menu-links-container {
                position: fixed;
                top: 65px;
                left: -100%;
                width: 290px;
                height: calc(100vh - 65px);
                background-color: #ffffff;
                box-shadow: 4px 0 15px rgba(0,0,0,0.1);
                flex-direction: column;
                align-items: flex-start;
                padding: 10px 0;
                transition: left 0.3s ease-in-out;
                overflow-y: auto;
            }

            .menu-links-container.active {
                left: 0;
            }

            .nav-item {
                width: 100%;
                height: auto;
                flex-direction: column;
                align-items: flex-start;
            }

            .nav-link {
                width: 100%;
                padding: 14px 20px;
                height: auto;
                border-bottom: 1px solid #f1f5f9;
                justify-content: space-between;
            }

            /* Hide hover action on mobile view layout */
            .nav-item:hover .dropdown-panel {
                display: none;
            }

            /* Show dropdown panels inside drawer system natively */
            .dropdown-panel {
                position: static;
                transform: none;
                box-shadow: none;
                border: none;
                width: 100%;
                display: none; /* Controlled via JS click toggle on mobile */
                padding: 5px 20px;
                background-color: var(--bg-hover);
            }

            .nav-item.open-submenu .dropdown-panel {
                display: block;
            }
            
            /* Hamburger animation morphing states */
            .burger-trigger.open span:nth-child(1) {
                transform: translateY(6.5px) rotate(45deg);
            }
            .burger-trigger.open span:nth-child(2) {
                opacity: 0;
            }
            .burger-trigger.open span:nth-child(3) {
                transform: translateY(-7.5px) rotate(-45deg);
            }
        }
		
		@media (max-width: 480px) {
    .nav-logo-img {
        height: 20px; /* Choti screen par logo automatic chota hokar 30px ka ho jayega */
    }
	.brand-logo {
        font-size: 18px; /* Choti screen par text bhi halka sa chota ho jayega taaki screen se bahar na bhaage */
    }
		}
		
		
/*Registration*/
    .Registrationpage { font-family: Arial, sans-serif; background-color: #f4f4f9; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; }
        .form-container { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); width: 350px; }
        #heading { text-align: center; color: #333; }
        .form-group { margin-bottom: 15px; position: relative; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
        .form-group input { width: 100%; padding: 10px; padding-right: 40px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 5px; }
        .toggle-password { position: absolute; right: 10px; top: 35px; cursor: pointer; color: #888; }
        .submit-btn { width: 100%; padding: 12px; background: #007bff; color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; margin-top: 10px; }
        .submit-btn:hover { background: #0056b3; }
        .error-message { color: red; font-size: 12px; display: none; margin-top: 5px; }
		
		