  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: #f8fafc;
            line-height: 1.6;
            overflow-x: hidden;
        }

     /* Job Page Styles */
        .job-background {
            position: fixed;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: -2;
            opacity: 0.9;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Floating orbs 
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: float 20s infinite ease-in-out;
            z-index: -1;
        }

        .orb1 {
            width: 400px;
            height: 400px;
            background: #3b82f6;
            top: -200px;
            left: -200px;
            animation-delay: 0s;
            opacity: 0.25;
        }

        .orb2 {
            width: 300px;
            height: 300px;
            background: #0ea5e9;
            bottom: -150px;
            right: -150px;
            animation-delay: 5s;
            opacity: 0.25;
        }

        .orb3 {
            width: 350px;
            height: 350px;
            background: #06b6d4;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 10s;
            opacity: 0.25;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }*/

        /* Job Container */
        .job-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }

        /* Job Header */
        .job-header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease-out;
        }

        .job-header h1 {
            position: relative; /* Important */
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight:700;
            margin-bottom: 40px; /* extra space for underline */
            background: #111;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            line-height: 1.2;
    }

        .job-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px; /* space under text */
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0066ff, #8a2be2); /* fallback colors */
            border-radius: 2px;
        }

        .job-header p {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .job-section {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(59, 130, 246, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .job-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .job-section:hover::before {
            left: 100%;
        }

        .job-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

      .job-section h2 {
            position: relative;
            display: flex;   /* shrink underline width to text width */
            font-size: 2rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 40px; 
            align-items: center;    /* space below heading for the line */
    }
         .icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: inline-flex;
            margin-right: 10px;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .skill-category {
            background: rgba(239, 246, 255, 0.8);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
        }

        .skill-category:hover {
            background: rgba(219, 234, 254, 0.8);
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .skill-category h3 {
            color: #0066ff;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .skill-item {
            background: linear-gradient(135deg, #dbeafe, #e0f2fe);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            color: #1e293b;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .skill-item:hover {
            background: linear-gradient(135deg, #bfdbfe, #93c5fd);
            transform: scale(1.05);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .job-section ul {
            list-style: none;
            padding-left: 0;
        }

        .job-section li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            color: #334155;
        }

        .job-section li:hover {
            transform: translateX(10px);
            color: #1e293b;
        }

        .job-section li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #3b82f6;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .job-section li:hover::before {
            transform: translateX(5px);
            color: #0066ff;
        }

        .highlight {
            color: #0066ff;
            font-weight: 600;
        }

        .apply-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: linear-gradient(135deg, #3b82f6, #0ea5e9);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            margin-top: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .apply-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            background: linear-gradient(135deg, #2563eb, #0284c7);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 0;
            }

            .nav-link {
                padding: 15px 15px;
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none !important;
            }

            .container-fluid {
                padding: 0 15px;
            }

            .navbar {
                padding: 12px 0;
            }

            .logo img {
                height: 40px;
            }

            .main-content {
                padding-top: 70px;
            }

            .demo-section {
                padding: 40px 15px;
            }

            .demo-section h2 {
                font-size: 2rem;
            }

            .mobile-menu {
                display: block;
            }

            .job-header h1 {
                font-size: 2.5rem;
            }
            
            .job-section {
                padding: 1.5rem;
            }
            
            .job-section h2 {
                font-size: 1.5rem;
            }

            .job-container {
                padding: 20px 15px;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 100vw;
                max-width: 100vw;
            }

            .demo-section h2 {
                font-size: 1.75rem;
            }

            .mobile-menu-header {
                padding: 0 15px;
            }

            .mobile-close-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
        }

       