        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(145deg, #f7f4ef, #ece6dc);
            color: #2c2c2c;
            overflow-x: hidden;
        }

        .top-bar {
            width: 100%;
            background: linear-gradient(90deg, #6c5ce7, #00a8ff);
            color: white;
            padding: 8px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            font-size: 0.95rem;
        }

        .top-bar h1 {
            font-size: 1.2rem;
            margin: 0;
        }

        .back-btn {
            background-color: white;
            color: #007bff;
            font-weight: 600;
            border-radius: 20px;
            padding: 4px 12px;
            font-size: 0.85rem;
        }


        .back-btn {
            background-color: white;
            color: #007bff;
            font-weight: 600;
            border-radius: 30px;
            padding: 8px 18px;
            border: none;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background-color: #e3f2ff;
        }

        .fade-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .hero {
            position: relative;
            width: 100%;
            height: 430px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background: #000;
            margin-bottom: 40px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-bg img,
        .hero-bg video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            transform: translate(-50%, -50%);
            transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
            opacity: 0;
        }

        .hero-bg .active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 2.4rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .hero-content p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .filter-card {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 18px;
            padding: 25px;
            margin-top: 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
        }

        .filter-card select,
        .filter-card input {
            background: rgba(255, 255, 255, 0.85);
            color: #2c2c2c;
            border: 1px solid rgba(0, 0, 0, 0.15);
        }


        .filter-card option {
            color: #000;
        }

       .job-card {
    background: rgba(255, 255, 255);
    color: #2c2c2c;
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 650px;
    animation: fadeInUp 0.8s ease both;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

        .job-card:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-6px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .job-card h5 {
            font-weight: 600;
			margin-top:10px;
            color: #222;
        }

        .job-card p {
            color: #555;
        }

      .job-img-wrap {
    width: 100%;
    height: 440px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.job-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

        .btn-apply {
            background: linear-gradient(45deg, #00cec9, #0984e3);
            border: none;
            color: white;
            font-weight: 500;
            border-radius: 8px;
        }

        .btn-outline-light {
            color: #262626ff;
            border-color: #837a7aff;
        }


        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #backToTop {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #00a8ff;
            color: white;
            border: none;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 5;
        }

        #backToTop:hover {
            background: #0091d9;
            transform: translateY(-3px);
        }

        .btn-outline-light:hover {
            background: #797878ff;
        }

        .social-btn {
            display: inline-flex;
            gap: 10px;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            transform: translateZ(0);
            transition: transform .18s ease, box-shadow .18s ease, opacity .15s ease;
            line-height: 1;
        }

        .social-btn svg {
            width: 20px;
            height: 20px;
            display: block;
            flex-shrink: 0;
            filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.12));
        }

        .social-btn.facebook {
            background: linear-gradient(180deg, #1877F2 0%, #155fcc 100%);
        }

        .social-btn.facebook:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 30px rgba(24, 119, 242, 0.18);
        }

        .social-btn.instagram {
            background: linear-gradient(45deg, #f58529 0%, #dd2a7b 50%, #515bd4 100%);
        }

        .social-btn.instagram:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 30px rgba(221, 42, 123, 0.18);
        }

        .social-btn.tiktok {
            background: #000000;
            position: relative;
            overflow: hidden;
        }

        .social-btn.tiktok svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        .social-btn.tiktok:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
            background: #0d0d0d;
        }
 		.social-btn.linkedin {
            background: #000000;
            position: relative;
            overflow: hidden;
        }


        .social-btn.linkedin:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
            background: #0d0d0d;
        }

        .hero-outer {
            width: 100%;
            padding-top: 30px;
        }

        .hero-contained {
            border-radius: 20px;
            overflow: hidden;
            height: 440px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        }

        .media-row {
    display: flex;
    gap: 10px;
    width: 100%;
    height: 600px;
    align-items: center;
    justify-content: center;
}

        .media-row .full {
            width: 100%;
            height: 100%;
            border-radius: 12px;
        }


        .job-video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
            border-radius: 12px;
            background: black;
        }

        @media (max-width: 768px) {
            .media-row {
                flex-direction: column;
                height: auto;
            }

            .media-row .half,
            .media-row .full {
                width: 100%;
                height: auto;
            }
        }

        @media (max-width: 768px) {
            .hero-contained {
                min-height: 280px;
                height: auto;
                border-radius: 14px;
                padding: 24px 16px;
            }

            .hero-content h1 {
                font-size: 1.7rem;
                line-height: 1.25;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }

        .filter-buttons .btn {
            font-weight: 600;
            border-radius: 14px;
            padding: 12px 16px;
            font-size: 0.95rem;
        }

        .filter-buttons .btn-primary {
            background: linear-gradient(45deg, #0d6efd, #00a8ff);
            border: none;
            box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
        }

        .filter-buttons .btn-outline-light {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.2);
            color: #333;
        }

        .pozi-card {
            border-bottom: solid rgba(100, 100, 100, 0.35);
            font-size: 24px;
        }

        .filter-card {
            padding: 22px;
        }

        .filter-card .form-control,
        .filter-card .form-select {
            border-radius: 12px;
            min-height: 46px;
            font-size: 0.95rem;
        }

        .filter-card .form-label {
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .btn-filter {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 14px 18px;
            border-radius: 999px;
            transition: all .25s ease;
            letter-spacing: 0.3px;
        }

        .btn-filter-primary {
            background: linear-gradient(135deg, #0d6efd, #00a8ff);
            color: #fff;
            border: none;
            box-shadow: 0 8px 22px rgba(13, 110, 253, .35);
        }

        .btn-filter-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 34px rgba(13, 110, 253, .45);
            color: #fff;
        }

        .btn-filter-reset {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, .15);
            color: #333;
        }

        .btn-filter-reset:hover {
            background: #f1f1f1;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }

        @media (max-width: 768px) {
            .btn-filter {
                width: 100%;
                font-size: 1rem;
                padding: 16px;
            }
        }


        @media (max-width: 576px) {

            .filter-card {
                padding: 16px;
                border-radius: 14px;
            }

            .filter-card .row {
                row-gap: 12px;
            }

            .filter-card .form-control,
            .filter-card .form-select {
                font-size: 1rem;
                min-height: 50px;
            }

            .filter-buttons {
                margin-top: 10px;
            }

            .filter-buttons .btn {
                width: 100%;
                padding: 14px;
                font-size: 1rem;
                border-radius: 14px;
            }
        }

        @media (max-width: 992px) {

            .filter-card {
                margin-left: auto;
                margin-right: auto;
            }

            .filter-buttons .btn {
                padding: 13px;
            }
        }

        @media (max-width: 768px) {
            .filter-card {
                top: 70px;
                z-index: 10;
            }
        }

        @media (max-width: 1200px) {

            .filter-buttons {
                margin-top: 12px;
            }

            .filter-buttons .btn {
                width: 100%;
                padding: 14px 18px;
                font-size: 1rem;
            }

            .filter-buttons .btn-primary {
                font-size: 1.05rem;
                letter-spacing: 0.3px;
            }
        }