 :root {
            --primary-color: #0aec33;
            --primary-hover: #08d42d;
            --primary-glow: rgba(10, 236, 51, 0.25);
            --dark-blue: #012641;
            --dark-blue-light: #024a6f;
            --bg-color: #f5f7fa;
            --card-bg: #ffffff;
            --text-muted: #6b7a8d;
            --border-color: #e8ecf1;
            --font-family: 'Onest', sans-serif;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
            --shadow-green: 0 8px 24px rgba(10, 236, 51, 0.25);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --radius-full: 50px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--dark-blue);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ===================== ANIMATIONS ===================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulseGlow {

            0%,
            100% {
                box-shadow: 0 0 15px rgba(10, 236, 51, 0.2);
            }

            50% {
                box-shadow: 0 0 30px rgba(10, 236, 51, 0.45);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .animate-fade-up {
            animation: fadeInUp 0.7s ease-out forwards;
        }

        .animate-fade-left {
            animation: fadeInLeft 0.5s ease-out forwards;
        }

        .animate-delay-1 {
            animation-delay: 0.1s;
        }

        .animate-delay-2 {
            animation-delay: 0.2s;
        }

        .animate-delay-3 {
            animation-delay: 0.3s;
        }

        .animate-delay-4 {
            animation-delay: 0.4s;
        }

        .animate-delay-5 {
            animation-delay: 0.5s;
        }

        .animate-delay-6 {
            animation-delay: 0.6s;
        }

        /* ===================== HERO SECTION ===================== */
        .hero-banner {
            background: linear-gradient(160deg, var(--dark-blue) 0%, var(--dark-blue-light) 50%, #036289 100%);
            color: white;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.6;
        }

        .hero-banner::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 60px;
            background: var(--bg-color);
            clip-path: ellipse(55% 100% at 50% 100%);
        }

        .text-white {
            color: white;
        }

        /* Floating decorative circles */
        .hero-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(10, 236, 51, 0.08);
            pointer-events: none;
        }

        .hero-circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -50px;
            animation: float 6s ease-in-out infinite;
        }

        .hero-circle-2 {
            width: 200px;
            height: 200px;
            bottom: 50px;
            left: -60px;
            animation: float 8s ease-in-out infinite reverse;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .stats-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(10, 236, 51, 0.12);
            border: 1px solid rgba(10, 236, 51, 0.3);
            color: var(--primary-color);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 28px;
            animation: pulseGlow 3s ease-in-out infinite;
        }

        .hero-title {
            color: white font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .highlight {
            position: relative;
            display: inline-block;
        }

        .highlight .underline {
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 12px;
        }

        .hero-subtitle {
            color: white font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 45px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-subtitle strong {
            color: white;
            opacity: 1;
        }

        /* ===================== SEARCH BOX ===================== */
        .search-box {
            background: var(--card-bg);
            padding: 14px;
            border-radius: var(--radius-lg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            max-width: 900px;
            margin: 0 auto;
        }

        .search-box .form-control {
            height: 58px;
            font-size: 1rem;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding-left: 45px;
            font-weight: 500;
            color: var(--dark-blue);
            background: var(--bg-color);
            transition: all 0.3s ease;
        }

        .search-box .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px var(--primary-glow);
            background: white;
        }

        .search-box .form-control::placeholder {
            color: var(--text-muted);
            font-weight: 400;
        }

        .search-input-wrap {
            position: relative;
        }

        .search-input-wrap .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 1rem;
            z-index: 3;
        }

        .btn-search {
            background: var(--primary-color);
            color: var(--dark-blue);
            border: none;
            font-weight: 800;
            padding: 16px 28px;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            transition: all 0.3s ease;
            letter-spacing: 0.01em;
        }

        .btn-search:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-green);
            color: var(--dark-blue);
        }

        /* ===================== HERO STATS ===================== */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 45px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-value {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
        }

        .hero-stat-label i {
            color: var(--primary-color);
            margin-right: 4px;
        }

        /* ===================== JOBS SECTION ===================== */
        .section-header {
            margin-bottom: 35px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--dark-blue);
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .section-title .text-green {
            color: var(--primary-color);
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .badge-count {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--dark-blue);
            color: white;
            padding: 10px 22px;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* ===================== JOB CARDS ===================== */
        .job-card {
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 20px 24px;
            transition: all 0.35s ease;
            margin-bottom: 12px;
            position: relative;
            overflow: hidden;
        }

        .job-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 0;
            background: var(--primary-color);
            transition: width 0.35s ease;
            border-radius: var(--radius-md) 0 0 var(--radius-md);
        }

        .job-card:hover {
            border-color: rgba(10, 236, 51, 0.35);
            box-shadow: var(--shadow-md);
            transform: translateX(4px);
        }

        .job-card:hover::before {
            width: 5px;
        }

        .job-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .job-card:hover .job-title {
            color: var(--primary-color);
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .job-meta-item i {
            color: rgba(10, 236, 51, 0.6);
            font-size: 0.85rem;
        }

        .job-meta-item.salary {
            color: #0d9e38;
            font-weight: 700;
        }

        .badge-urgent {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: #fff0f0;
            color: #d63031;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: var(--radius-full);
        }

        .btn-view {
            padding: 10px 22px;
            border: 2px solid var(--border-color);
            background: transparent;
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: var(--radius-sm);
            transition: all 0.3s;
        }

        .btn-view:hover {
            background: var(--dark-blue);
            border-color: var(--dark-blue);
            color: white;
        }

        .btn-apply {
            padding: 10px 26px;
            background: var(--primary-color);
            color: var(--dark-blue);
            border: none;
            font-weight: 800;
            font-size: 0.9rem;
            border-radius: var(--radius-sm);
            transition: all 0.3s;
        }

        .btn-apply:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(10, 236, 51, 0.3);
            color: var(--dark-blue);
        }

        /* ===================== CITIES SECTION ===================== */
        .cities-section {
            background: linear-gradient(180deg, var(--bg-color) 0%, white 100%);
        }

        .city-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            height: 220px;
            transition: all 0.4s ease;
            cursor: pointer;
            box-shadow: var(--shadow-md);
        }

        .city-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(1, 38, 65, 0.9) 0%, rgba(1, 38, 65, 0.15) 60%, transparent 100%);
            z-index: 1;
            transition: all 0.4s ease;
        }

        .city-card:hover::before {
            background: linear-gradient(to top, rgba(1, 38, 65, 0.85) 0%, rgba(1, 38, 65, 0.1) 50%, transparent 100%);
        }

        .city-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .city-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .city-card:hover img {
            transform: scale(1.12);
        }

        .city-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            z-index: 2;
        }

        .city-name {
            font-size: 1.6rem;
            font-weight: 900;
            margin-bottom: 4px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .city-jobs {
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
        }

        .city-jobs i {
            color: var(--primary-color);
        }

        /* ===================== COMPANIES SECTION ===================== */
        .company-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 32px 20px;
            text-align: center;
            transition: all 0.35s ease;
            border: 2px solid transparent;
            height: 100%;
            box-shadow: var(--shadow-sm);
        }

        .company-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-lg);
            transform: translateY(-8px);
        }

        .company-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin: 0 auto 18px;
            border-radius: var(--radius-md);
            padding: 14px;
            background: var(--bg-color);
            transition: all 0.35s ease;
        }

        .company-card:hover .company-logo {
            background: white;
            box-shadow: var(--shadow-sm);
            transform: scale(1.08);
        }

        .company-name {
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 6px;
            color: var(--dark-blue);
        }

        .company-jobs {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* ===================== FAQ SECTION ===================== */
        .faq-section {
            background: var(--card-bg);
            border-radius: var(--radius-xl);
            padding: 50px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }

        .faq-section .accordion-item {
            border: 2px solid var(--border-color) !important;
            border-radius: var(--radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-section .accordion-item:hover {
            border-color: rgba(10, 236, 51, 0.3) !important;
        }

        .faq-section .accordion-button {
            font-size: 1.05rem;
            font-weight: 700;
            padding: 20px 24px;
            color: var(--dark-blue);
            background: transparent;
            border-radius: var(--radius-md) !important;
        }

        .faq-section .accordion-button:not(.collapsed) {
            background: rgba(10, 236, 51, 0.05);
            color: var(--dark-blue);
            box-shadow: none;
            border-left: 4px solid var(--primary-color);
        }

        .faq-section .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        .faq-section .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230aec33'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-section .accordion-body {
            font-size: 1rem;
            line-height: 1.8;
            padding: 16px 24px 24px;
            color: var(--text-muted);
        }

        /* ===================== EXPLORE BUTTON ===================== */
        .btn-explore {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 40px;
            font-size: 1rem;
            font-weight: 800;
            border: 2px solid var(--dark-blue);
            color: var(--dark-blue);
            border-radius: var(--radius-full);
            background: var(--primary-color);
            transition: all 0.3s ease;
        }

        .btn-explore:hover {
            background: var(--dark-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(1, 38, 65, 0.3);
        }

        /* ===================== STICKY MOBILE CTA ===================== */
        @media (max-width: 768px) {
            .sticky-apply {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 12px 16px;
                background: white;
                box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
                z-index: 1000;
                display: flex;
                gap: 10px;
            }

            .sticky-apply .btn {
                flex: 1;
                padding: 14px;
                font-weight: 700;
                border-radius: var(--radius-sm);
                font-size: 0.95rem;
            }

            .sticky-apply .btn-search-sticky {
                background: var(--primary-color);
                color: var(--dark-blue);
                border: none;
            }

            .sticky-apply .btn-outline-sticky {
                border: 2px solid var(--border-color);
                background: white;
                color: var(--dark-blue);
            }

            body {
                padding-bottom: 70px;
            }

            .hero-banner {
                padding: 50px 0 70px;
            }

            .hero-title {
                font-size: 2rem;
                margin-bottom: 14px;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .hero-stats {
                gap: 24px;
                margin-top: 30px;
            }

            .hero-stat-value {
                font-size: 1.6rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .city-card {
                height: 170px;
            }

            .city-name {
                font-size: 1.3rem;
            }

            .faq-section {
                padding: 28px 18px;
                border-radius: var(--radius-md);
            }

            .search-box {
                padding: 10px;
            }

            .search-box .form-control {
                height: 50px;
                font-size: 0.9rem;
            }

            .btn-search {
                padding: 14px 20px;
            }

            .job-card {
                padding: 16px;
            }

            .job-title {
                font-size: 1.05rem;
            }

            .company-card {
                padding: 24px 16px;
            }

            .company-logo {
                width: 80px;
                height: 80px;
            }
        }

        @media (min-width: 769px) {
            .sticky-apply {
                display: none !important;
            }
        }

        /* ===================== SCROLLBAR ===================== */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-color);
        }

        ::-webkit-scrollbar-thumb {
            background: #c0c8d1;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #a0a8b1;
        }

        /* ===================== EMPTY STATE ===================== */
        .empty-state {
            padding: 60px 20px;
            text-align: center;
        }

        .empty-state i {
            font-size: 4rem;
            color: var(--border-color);
            margin-bottom: 20px;
        }

        .empty-state h3 {
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 8px;
        }

        .empty-state p {
            color: var(--text-muted);
        }