        
        /* Job Grid */
        .job-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 10px;
            padding: 10px;
            margin: 0 auto;
            max-width: 1400px;
        }

        /* Job Card */
        .portfolio-card {
            background: var(--card-bg);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            animation: fadeIn 0.5s ease forwards;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 255, 224, 0.15);
            border-color: var(--light-text);
        }

.image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 10px;
}

/* Blurred background (same as profile image) */
.hust-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(0.6);
    transform: scale(1.2);
}

/* Profile image - focus */
.hust-profile {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--light-text);
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    z-index: 2;
}


        .port-content {
            padding:7px;
        }

        .port-title {
        font-size: 17px;
        white-space:nowrap;
        overflow:hidden;
        text-align:center;
            margin: 0 0 10px;
            color: var(--light-text);
            font-weight: 600;  }
        
        
        .j-job-group {
            overflow:hidden;
            gap:7px;
            max-height:54px;
            display:flex;
            flex-wrap:wrap;
            justify-content:start;
            margin-bottom:7px; }
        
        
        .j-card-foot {
        margin:7px 0;
        justify-content:center;
        align-items:center;
        flex-wrap:nowrap;
        display:flex;
        gap: 10px;
        min-height:45px;
        overflow:hidden;   }
    
    
        .view-job {
        background: rgba(0, 255, 224, 0.1);
        border-radius:5px;
        padding: 10px 16px;
        display:inline-block;
        color:var(--light-text);
        font-size:15px; }

        .card-job {
            display: inline-block;
            background: rgba(0, 255, 224, 0.1);
            color: var(--light-text);
            border:1px dashed var(--light-text);
            padding:4px;
            border-radius: 4px;
            font-size: 12px;
            font-weight:bold; }

        .card-location {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            color: var(--light-text);
            opacity: 0.8;
            font-size: 12px;  }

        .card-about {
            margin-bottom: 10px auto;
            font-size: 13px;
            min-height:45px;
             max-height:45px;
            line-height: 1.3;
            color: var(--light-text);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden; } 

        .tag {
            background: rgba(0, 255, 224, 0.1);
            color: var(--light-text);
            padding: 4px;
            display:block;
            border-radius: 9px;
            font-size: 11px;  }

        .social-links {
            display: flex;
            gap: 12px;
            min-height:37px;
            height:37px;
            margin-bottom: 0.3rem;
            overflow-x:auto;
            overflow-y:hidden;
        }
        
        .no-socials {
            color:var(--danger);
            font-size:13px;
            background:  rgba(0, 255, 224, 0.1);
           display:block;
           padding:7px;
           font-weight:bold;
           
           border-radius:4px;
           opacity:0.6;
        }

        .social-link {
            color: var(--light-text);
            background:  rgba(0, 255, 224, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--branding);
            color: var(--background);
            transform: scale(1.1);
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: #25D366;
            color: white;
            padding: 10px 16px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            width:93%;
            transition: all 0.3s ease;
            font-size: 15px;
            text-align: center;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        .no-whatsapp {
            background: var(--simple-color);
            cursor: not-allowed;
        }

        .no-whatsapp:hover {
            background: var(--simple-color);
            transform: none;
        }

        /* Loading States */
        .loading-indicator {
            text-align: center;
            padding: 2rem;
            display: none;
        }

        .loading-spinner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 4px solid rgba(0, 255, 224, 0.2);
            border-radius: 50%;
            border-top-color: var(--branding);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .no-more-jobs {
            text-align: center;
            padding: 0.9rem 1.8rem;
            font-weight:bold;
            border:1px dashed var(--light-text);
            border-radius:10px;
            color: var(--light-text);
            display: none;
            grid-column: 1 / -1;
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .job-container {
                grid-template-columns: 1fr;
                padding: 0.5rem;
            }


        }
    
    .unitag {
    display: inline-flex;
    font-size:11px;
    align-items: center;
    gap: 5px;
    padding: 5px; }

.unilogo-tag {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 50%;
}
    
    /* Hero Section */
    .hero-section {
        padding: 1.5rem 1rem;
        text-align: center;
        width: 94%;
        max-width: 1200px;
        margin: 10px auto;
        background: (--card-bg);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border-radius: 5px;
        position: relative;
        overflow: hidden;
    }

    .hero-content {
        position: relative;
        padding:15px auto;
        z-index: 2;
    }
    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 255, 224, 0.05) 0%, transparent 70%);
        z-index: -1;
    }

    .hero-section h2 {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 auto 10px;
        background: linear-gradient(90deg, var(--branding), #6E44FF);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        line-height: 1.2;
    }
    
    .hero-section p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        color: var(--light-text);
        opacity: 0.7;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin: 20px auto;
        flex-wrap: wrap;
    }

    .cta-button {
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cta-button.primary {
        background: linear-gradient(90deg, var(--branding), #6E44FF);
        color: black;
        border: none;
    }

    .cta-button.secondary {
        background: transparent;
        color: var(--branding);
        border: 1px solid var(--branding);
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 255, 224, 0.3);
    }

    /* Marquee */
    .job-marquee {
        background: transparent;
        color: var(--light-text);
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
        font-size: 0.7rem;
        padding: 9px 0;
        margin: 5px auto;
        max-width: 1200px;
        width:96%;
    }

    .job-marquee p {
        display: inline-block;
        padding-left: 100%;
        margin: 0;
        opacity:0.7;
        animation: marquee 20s linear infinite;
    }
    
    

    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }
    
    .fliter-p {
        font-size:17px;
        font-weight:bold;
        color
    }

    /* Filter Panel */
    .filter-panel-container {
        position: sticky;
        top: 50px;
        z-index: 900;
        background: var(--background);
        padding: 6px 0;
    }
    
    .filter-panel-container  p {
     font-size:14px;
     font-weight:bold;
     color:var(--light-text);
     text-align:left;
     opacity:0.7;
    }

    .filter-panel {
        display: flex;
        padding: 5px 10px;
        gap: 9px;
        overflow-x: auto;
        justify-content: start;
        align-items: center;
        margin: 0 auto;
        max-width: 1200px;  }

    .filter-panel::-webkit-scrollbar {
        height: 4px;  }

    .filter-panel select {
        padding: 10px 12px;
        border: 1px solid var(--simple-color);
        border-radius: 8px;
        background: rgba(30, 30, 30, 0.8);
        color: var(--light-text);
        font-size: 0.85rem;
        min-width: 50px;
        max-width:135px;
        transition: all 0.2s ease;
        cursor: pointer; }

    .filter-panel select:focus {
        border-color: var(--branding);
        outline: none;
        box-shadow: 0 0 0 2px rgba(0, 255, 224, 0.2);
    }

    .filter-panel select option {
        background: var(--card-bg);
    }
   
    /* Floating Elements */
    .floating-element {
        position: absolute;
        z-index: -1;
        opacity: 0.7;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(2px);
    }

    .floating-cube {
        width: 80px;
        height: 80px;
        background: rgba(0, 255, 224, 0.03);
         color: var(--light-text);
        opacity:0.5;
        transform: rotate(15deg);
        animation: float 8s ease-in-out infinite;
    }

    .floating-sphere {
        width: 70px;
        height: 70px;
        background: rgba(110, 68, 255, 0.03);
         color: var(--light-text);
        opacity:0.5;
        border-radius: 50%;
        animation: float 10s ease-in-out infinite;
    }

    .floating-icon {
        font-size: 3rem;
        color: var(--light-text);
        opacity:0.5;
        animation: float-icon 12s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-30px) rotate(10deg); }
    }

    @keyframes float-icon {
        0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
        30% { transform: translateY(-40px) rotate(15deg) scale(1.1); }
        70% { transform: translateY(20px) rotate(-10deg) scale(0.9); }
    }