:root {
            --primary: #6d28d9;
            --primary-dark: #5b21b6;
            --accent: #10b981;
            --accent-dark: #059669;
            --light-bg: #f8fafc;
            --card-bg: #ffffff;
            --text-dark: #1e293b;
            --radius: 14px;
            --shadow: 0 8px 24px rgba(109,40,217,0.12);
            --shadow-hover: 0 16px 40px rgba(109,40,217,0.22);
            --nav-height: 70px;
        }

        * { margin:0; padding:0; box-sizing:border-box; }
        body { 
            font-family: 'Inter', system-ui, sans-serif; 
            background: var(--light-bg); 
            color: var(--text-dark); 
            line-height: 1.6; 
            min-height: 100dvh;
        }

        .container { 
            max-width: 1440px; 
            margin: 0 auto; 
            padding: 0 15px; 
        }

        /* Mobile pe right/left extra space remove + full width center */
        .main-content-wrapper {
            display: grid;
            grid-template-columns: 1fr minmax(auto, 960px) 1fr;
            gap: 28px;
        }

        .sidebar { display: none; }

        @media (min-width: 1101px) {
            .sidebar { display: block; }
            .sidebar.left  { order: 1; }
            .sidebar.right { order: 3; }
            .main-content  { order: 2; }
        }

        @media (max-width: 1100px) {
            .main-content-wrapper {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .main-content {
                grid-column: 1 / -1;
                max-width: 100%;
                margin: 0 auto;
            }
        }

        /* Mobile content center alignment */
        @media (max-width: 768px) {
            body, .container, main, section, .quick-grid, .grid-3 {
                text-align: center !important;
            }

            .quick-grid {
                justify-items: center;
            }

            .quick-item {
                max-width: 360px;
                margin: 0 auto !important;
                width: 100%;
            }

            .grid-3 {
                justify-items: center;
            }

            .card {
                max-width: 420px;
                margin: 0 auto 1.8rem !important;
                width: 100%;
            }

            .card-body {
                padding: 1.4rem 1rem;
                text-align: center;
            }

            .job-list {
                list-style: none;
                padding: 0;
                margin: 0 auto;
                max-width: 90%;
            }

            .job-list li {
                padding-left: 0 !important;
                text-align: center;
                margin: 1.1rem 0;
            }

            .job-list li::before {
                display: none;
            }

            .job-list a {
                display: inline-block;
            }

            .view-more {
                margin: 1.8rem auto 0 !important;
            }
        }

        .ad-placeholder {
            background: #f1f5f9;
            border: 1px dashed #cbd5e1;
            border-radius: var(--radius);
            padding: 16px;
            text-align: center;
            font-size: 0.95rem;
            color: #64748b;
            margin: 2rem 0;
        }

        .hero { 
            background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 50%, #059669 100%);
            color: white;
            padding: 2rem 1rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 140px;
            background: linear-gradient(to top, var(--light-bg), transparent);
        }
        .hero h1 { 
            font-family: 'Poppins', sans-serif;
            font-size: clamp(1.9rem, 6vw, 3.2rem);
            font-weight: 700;
            margin-bottom: 0.6rem;
            letter-spacing: -1px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.4);
        }
        .hero p { 
            font-size: 1.1rem; 
            max-width: 680px; 
            margin: 0 auto 1.8rem; 
            opacity: 0.95;
        }

        nav { 
            background: white;
            box-shadow: 0 6px 20px rgba(109,40,217,0.12);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: var(--nav-height);
        }
        .nav-inner { 
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        .nav-links {
            display: flex;
            gap: 1.1rem;
        }
        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.25s;
        }
        .nav-links a:hover { color: var(--primary); }

        .menu-toggle {
            display: none;
            font-size: 2.2rem;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-dark);
        }

        @media (max-width: 920px) {
            .menu-toggle { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: var(--nav-height);
                left: 0; right: 0;
                background: white;
                box-shadow: 0 8px 24px rgba(0,0,0,0.18);
                padding: 1.5rem;
                gap: 1.2rem;
                text-align: center;
            }
            .nav-links.active { display: flex; }
            .nav-links a { font-size: 1.1rem; padding: 0.6rem 0; }
        }

        .join-whatsapp-container {
            text-align: center;
            padding: 1.3rem 2rem;
            background: linear-gradient(to right, rgba(109,40,217,0.05), rgba(16,185,129,0.05));
        }
        .join-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: white;
            padding: 0.9rem 2rem;
            font-size: 1.05rem;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(37,211,102,0.3);
            transition: all 0.3s;
        }
        .join-whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 32px rgba(37,211,102,0.4);
        }

        .quick-section {
            padding: 2rem 0 3.5rem;
            margin: 2rem 0;
            background: linear-gradient(to bottom, #f1f5f9, #e0e7ff);
            border-radius: var(--radius);
        }
        .quick-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 1.6rem;
        }
        .quick-item {
            border-radius: var(--radius);
            padding: 2rem 1.6rem;
            text-align: center;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 6px rgba(0,0,0,0.5);
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            transition: all 0.35s ease;
            text-decoration: none;
            display: block;
            background-size: 200% 200%;
        }
        .quick-item:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 22px 50px rgba(109,40,217,0.28);
        }

        .item-1 { background: linear-gradient(135deg, #6d28d9, #8b5cf6); }
        .item-2 { background: linear-gradient(135deg, #10b981, #34d399); }
        .item-3 { background: linear-gradient(135deg, #7c3aed, #c084fc); }
        .item-4 { background: linear-gradient(135deg, #059669, #6ee7b7); }
        .item-5 { background: linear-gradient(135deg, #5b21b6, #a78bfa); }
        .item-6 { background: linear-gradient(135deg, #10b981, #059669); }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 1.8rem;
            margin: 0 0 4.5rem;
        }
        @media (max-width:1100px) {.grid-3{grid-template-columns:1fr 1fr;}}
        @media (max-width:768px)  {.grid-3{grid-template-columns:1fr;}}

        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.35s ease;
            border: 1px solid rgba(109,40,217,0.08);
        }
        .card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
        }

        .card-header {
            color: white;
            padding: 1.4rem;
            font-size: 1.4rem;
            font-weight: 700;
            text-align: center;
        }
        .card-jobs  .card-header { background: linear-gradient(90deg, #6d28d9, #8b5cf6); }
        .card-admit  .card-header { background: linear-gradient(90deg, #10b981, #34d399); }
        .card-result .card-header { background: linear-gradient(90deg, #7c3aed, #c084fc); }
        .card-answer .card-header { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

        .card-body { padding: 1.5rem 1.8rem; }
        .job-list { list-style: none; }
        .job-list li {
            margin: 1rem 0;
            padding-left: 1.6rem;
            position: relative;
            font-size: 1.02rem;
        }
        .job-list li::before {
            content: "➜";
            color: var(--accent);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .job-list a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.25s;
        }
        .job-list a:hover { color: var(--accent); }

        .view-more {
            display: block;
            width: fit-content;
            margin: 1.6rem auto 0;
            padding: 0.85rem 2.2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .view-more:hover {
            background: var(--primary-dark);
            transform: translateY(-4px);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 68px;
            height: 68px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(37,211,102,0.35);
            z-index: 999;
            text-decoration: none;
        }

        footer {
            background: linear-gradient(135deg, #4c1d95 0%, #1e293b 100%);
            color: white;
            padding: 4rem 2rem 2rem;
            text-align: center;
        }
        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            background: linear-gradient(90deg, #10b981, #a78bfa, #ffffff);
            /*-webkit-background-clip: text;
            -webkit-text-fill-color: transparent;*/
        }
        .footer-links a {
            color: #d1d5db;
            margin: 0 1.2rem;
            font-weight: 500;
            transition: all 0.25s;
        }
        .footer-links a:hover { color: var(--accent); }

        .footer-copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.12);
            font-size: 0.95rem;
            color: #9ca3af;
        }
