﻿:root {
    --job-gradient-bg-light: linear-gradient(to bottom right, #f0f9ff, #e0f2fe, #bae6fd);
    --job-gradient-bg-dark: linear-gradient(to bottom right, #0f172a, #155e7520, #020617);
    --job-title-color-light: #111827;
    --job-title-color-dark: #f3f4f6;
    --job-text-color-light: #4b5563;
    --job-text-color-dark: rgba(255, 255, 255, 0.9);
    --job-card-bg-light: rgba(255, 255, 255, 0.3);
    --job-card-bg-dark: rgba(255, 255, 255, 0.08);
    --job-border-color-light: #e5e7eb;
    --job-border-color-dark: rgba(255, 255, 255, 0.15);
    --job-hover-border-light: #60a5fa;
    --job-hover-border-dark: rgba(255, 255, 255, 0.25);
    --job-button-bg-light: linear-gradient(to right, #06b6d4, #3b82f6);
    --job-button-bg-hover-light: linear-gradient(to right, #0891b2, #2563eb);
    --job-button-bg-dark: linear-gradient(to right, #06b6d4, #3b82f6);
    --job-button-bg-hover-dark: linear-gradient(to right, #0891b2, #2563eb);
    --job-filter-bg-light: rgba(229, 231, 235, 0.6);
    --job-filter-bg-dark: rgba(255, 255, 255, 0.08);
    --job-filter-border-light: #d1d5db;
    --job-filter-border-dark: rgba(255, 255, 255, 0.15);
    --job-filter-active-bg-light: #06b6d4;
    --job-filter-active-text-light: #ffffff;
    --job-filter-active-bg-dark: rgba(255, 255, 255, 0.25);
    --job-filter-active-text-dark: #ffffff;
    --job-filter-text-light: #374151;
    --job-filter-text-dark: rgba(255, 255, 255, 0.7);
    --job-filter-hover-text-dark: #ffffff;
    --job-badge-bg: #06b6d4;
    --job-badge-text: #ffffff;
    --job-card-hover-title-light: #3b82f6;
    --job-card-hover-title-dark: #93c5fd;
    --job-description-text-dark: rgba(255, 255, 255, 0.85);
}

.job-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: var(--job-gradient-bg-light);
    position: relative;
    overflow: hidden;
}

[data-bs-theme="dark"] .job-section {
    background: var(--job-gradient-bg-dark);
}

.job-glow-1 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background: radial-gradient(circle at 30% 20%, rgba(0, 180, 255, 0.2), transparent 60%);
}

[data-bs-theme="dark"] .job-glow-1 {
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3), transparent 50%);
}

.job-glow-2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    background: radial-gradient(circle at 70% 80%, rgba(0, 150, 200, 0.15), transparent 60%);
}

[data-bs-theme="dark"] .job-glow-2 {
    background: radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.25), transparent 50%);
}

.job-grid-texture {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(0, 0, 0, 0.03) 49%, rgba(0, 0, 0, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
}

[data-bs-theme="dark"] .job-grid-texture {
    background: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%);
}

.job-icon {
    position: absolute;
    z-index: 50;
    color: rgba(6, 182, 212, 0.15);
    top: 2%;
    right: 2%;
    transform: rotate(12deg);
    width: 6rem;
    height: 6rem;
    animation: pulse 2s infinite;
    display: none;
}

[data-bs-theme="dark"] .job-icon {
    color: rgba(6, 182, 212, 0.35);
}

@media (min-width: 576px) {
    .job-icon {
        display: block;
    }
}

@media (min-width: 768px) {
    .job-icon {
        top: 4%;
        right: 10%;
        width: 8rem;
        height: 8rem;
    }
}

@media (min-width: 992px) {
    .job-icon {
        top: 10%;
        right: 20%;
    }
}

.job-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 576px) {
    .job-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 992px) {
    .job-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.job-header {
    margin-bottom: 4rem;
}

.job-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--job-title-color-light);
    letter-spacing: -0.025em;
}

[data-bs-theme="dark"] .job-title {
    color: var(--job-title-color-dark);
}

@media (min-width: 992px) {
    .job-title {
        font-size: 2.25rem;
    }
}

.job-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4, #3b82f6);
    border-radius: 9999px;
}

.job-filter-group {
    z-index: 10;
    display: inline-flex;
    background: var(--job-filter-bg-light);
    border: 1px solid var(--job-filter-border-light);
    border-radius: 9999px;
    padding: 0.5rem;
    margin-top: 2rem;
}

[data-bs-theme="dark"] .job-filter-group {
    background: var(--job-filter-bg-dark);
    border-color: var(--job-filter-border-dark);
}

.job-filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--job-filter-text-light);
    background: transparent;
    border: none;
    cursor: pointer;
}

[data-bs-theme="dark"] .job-filter-btn {
    color: var(--job-filter-text-dark);
}

.job-filter-btn:hover {
    color: var(--job-filter-hover-text-dark);
}

.job-filter-btn.active {
    color: var(--job-filter-active-text-light);
    background: var(--job-filter-active-bg-light);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

[data-bs-theme="dark"] .job-filter-btn.active {
    color: var(--job-filter-active-text-dark);
    background: var(--job-filter-active-bg-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.job-grid {
    display: grid;
    gap: 1.5rem;
    opacity: 1;
}

@media (min-width: 768px) {
    .job-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .job-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.job-card {
    background: var(--job-card-bg-light);
    border-radius: 1rem;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid var(--job-border-color-light);
    opacity: 1;
    transform: translateY(0);
}

[data-bs-theme="dark"] .job-card {
    background: var(--job-card-bg-dark);
    border-color: var(--job-border-color-dark);
}

.job-card.hidden {
    display: none;
}

.job-card.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.job-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.job-card:hover {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2), 0 0 10px rgba(59, 130, 246, 0.3);
    transform: scale(1.02) rotate(1deg);
    border-color: var(--job-hover-border-light);
}

[data-bs-theme="dark"] .job-card:hover {
    border-color: var(--job-hover-border-dark);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(59, 130, 246, 0.4);
}

.job-header-gradient {
    height: 12rem;
    position: relative;
    overflow: hidden;
}

.job-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.job-card:hover .job-header-image {
    opacity: 0.6;
}

.job-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--job-badge-bg);
    color: var(--job-badge-text);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.job-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
}

.job-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--job-title-color-light);
    transition: color 0.3s ease;
    min-height: 3.5rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

[data-bs-theme="dark"] .job-card-title {
    color: var(--job-title-color-dark);
}

.job-card:hover .job-card-title {
    color: var(--job-card-hover-title-light);
}

[data-bs-theme="dark"] .job-card:hover .job-card-title {
    color: var(--job-card-hover-title-dark);
}

.job-description {
    font-size: 0.875rem;
    color: var(--job-text-color-light);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
    list-style-type: disc;
}

[data-bs-theme="dark"] .job-description {
    color: var(--job-description-text-dark);
}

.job-know-more {
    width: 100%;
    background: var(--job-button-bg-light);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

    .job-know-more:hover {
        background: var(--job-button-bg-hover-light);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
        color: #ffffff;
        text-decoration: none;
    }

[data-bs-theme="dark"] .job-know-more {
    background: var(--job-button-bg-dark);
}

    [data-bs-theme="dark"] .job-know-more:hover {
        background: var(--job-button-bg-hover-dark);
        color: #ffffff;
    }

.job-explore-all {
    background: var(--job-button-bg-light);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

    .job-explore-all:hover {
        background: var(--job-button-bg-hover-light);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
        color: #ffffff;
        text-decoration: none;
    }

[data-bs-theme="dark"] .job-explore-all {
    background: var(--job-button-bg-dark);
}

    [data-bs-theme="dark"] .job-explore-all:hover {
        background: var(--job-button-bg-hover-dark);
        color: #ffffff;
    }

.job-blur-1 {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(96, 165, 250, 0.25);
    border-radius: 50%;
    filter: blur(3rem);
    animation: pulse 2s infinite;
}

.job-blur-2 {
    position: absolute;
    bottom: 10rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(192, 132, 252, 0.25);
    border-radius: 50%;
    filter: blur(4rem);
    animation: pulse 2s infinite;
    animation-delay: 1s;
}

.job-blur-3 {
    position: absolute;
    top: 33%;
    right: 25%;
    width: 4rem;
    height: 4rem;
    background: rgba(244, 114, 182, 0.25);
    border-radius: 50%;
    filter: blur(2rem);
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-grid.owl-carousel {
    display: block !important;
}
.owl-dots {
    margin-top: 1rem; 
    margin-bottom: 0.25rem; 
}