 /* v2.3first caved*/
      :root {

            --htr-glass: rgba(255, 255, 255, 0.05);
            --htr-border: rgba(255, 255, 255, 0.1);
            --htr-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --htr-glow: 0 0 30px rgba(150, 201, 61, 0.3);
        }


        /* Header */
        .htr-nav {
            position: fixed;
            top: 0;
            width: 100%;
            background:var(--background);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--htr-border);
        }

        .htr-nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .htr-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--g-branding);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .htr-nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .htr-nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .htr-nav-links a:hover {
            color: var(--branding);
        }

        /* Hero Section */
        .htr-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: radial-gradient(circle at 50% 50%, rgba(150, 201, 61, 0.1) 0%, transparent 50%);
            overflow: hidden;
        }

        .htr-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .htr-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--branding);
            border-radius: 50%;
            animation: htr-float 6s ease-in-out infinite;
            opacity: 0.3;
        }

        @keyframes htr-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .htr-hero-content {
            text-align: center;
            max-width: 800px;
            padding: 0 2rem;
            z-index: 2;
        }

        .htr-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: var(--g-branding);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .htr-hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            font-weight: 400;
        }

        .htr-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .htr-btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .htr-btn-primary {
            background: var(--g-branding);
            color: white;
            box-shadow: var(--htr-glow);
        }

        .htr-btn-secondary {
            background: var(--htr-glass);
            color: var(--light-text);
            border: 1px solid var(--htr-border);
            backdrop-filter: blur(10px);
        }

        .htr-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(150, 201, 61, 0.4);
        }

        /* Categories Marquee */
        .htr-marquee {
            background: var(--card-bg);
            padding: 1.5rem 0;
            overflow: hidden;
            border-top: 1px solid var(--htr-border);
            border-bottom: 1px solid var(--htr-border);
        }

        .htr-marquee-content {
            display: flex;
            animation: htr-scroll 30s linear infinite;
            white-space: nowrap;
        }

        @keyframes htr-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .htr-marquee span {
            padding: 0 3rem;
            font-size: 1.1rem;
            opacity: 0.8;
        }
        
        
               /* Responsive Design */
        @media (max-width: 768px) {
            .htr-nav-inner {
                padding: 0 1rem;
            }
            
            .htr-nav-links {
                display: none;
            }

            .htr-hero-content {
                padding: 0 1rem;
            }

            .htr-cta-group {
                flex-direction: column;
                align-items: center;
            }
}

 /* Floating elements */
        .htr-float {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
        }

        .htr-float-1 {
            top: 20%;
            right: 10%;
            font-size: 2rem;
            animation: htr-float 8s ease-in-out infinite;
        }

        .htr-float-2 {
            bottom: 30%;
            left: 15%;
            font-size: 1.5rem;
            animation: htr-float 6s ease-in-out infinite reverse;
        }

        .htr-float-3 {
            top: 60%;
            right: 20%;
            font-size: 1.8rem;
            animation: htr-float 7s ease-in-out infinite;
            animation-delay: -2s;
        }
    
    
    /*  others tracked */
    
          /* 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%;
}
    
    
    
    .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);
    }
