/* =========================================================
   WorkDu Homepage v2.1 — Modern Blue Theme with Animations
   Full redesign: 3D stats, uniform cards, premium effects
   ========================================================= */

/* =========================================================
   HEADER NAV BUTTONS — Unified Advanced Design
   ========================================================= */
.wdu-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1;
}
.wdu-header-btn--outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.wdu-header-btn--outline:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.85);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.wdu-header-btn--solid {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.wdu-header-btn--solid:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.85);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
/* Non-homepage header: scrolled state */
.site-header.scrolled .wdu-header-btn--solid,
.site-header:not(.homepage-header) .wdu-header-btn--solid {
    background: transparent;
    color: #1f2937;
    border-color: rgba(10, 101, 204, 0.5);
    box-shadow: none;
}
.site-header.scrolled .wdu-header-btn--solid:hover,
.site-header:not(.homepage-header) .wdu-header-btn--solid:hover {
    background: rgba(10, 101, 204, 0.06);
    border-color: #0a65cc;
    color: #0a65cc;
    box-shadow: 0 4px 14px rgba(10, 101, 204, 0.12);
}
/* Non-homepage: outline button state */
.site-header.scrolled .wdu-header-btn--outline,
.site-header:not(.homepage-header) .wdu-header-btn--outline {
    background: transparent;
    color: #1f2937;
    border-color: rgba(10, 101, 204, 0.5);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.site-header.scrolled .wdu-header-btn--outline:hover,
.site-header:not(.homepage-header) .wdu-header-btn--outline:hover {
    background: rgba(10, 101, 204, 0.06);
    border-color: #0a65cc;
    color: #0a65cc;
    box-shadow: 0 4px 14px rgba(10, 101, 204, 0.12);
}

/* --- Scroll-Reveal Animation Base --- */
.wdu-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.wdu-reveal.wdu-visible {
    opacity: 1;
    transform: translateY(0);
}
.wdu-reveal-delay-1 { transition-delay: 0.1s; }
.wdu-reveal-delay-2 { transition-delay: 0.2s; }
.wdu-reveal-delay-3 { transition-delay: 0.3s; }
.wdu-reveal-delay-4 { transition-delay: 0.4s; }

/* --- Keyframe Animations --- */
@keyframes wduFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes wduPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}
@keyframes wduSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes wduGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes wduShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.wdu-hero {
    position: relative;
    background-image: url('/frontend/assets/images/hero-bg-5.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
/* Hide all floating visual cards/badges that may have been left from old hero designs */
.wdu-hero__visual,
.hero-floating-card,
.hero-badge-card,
.hero-stat-badge {
    display: none !important;
}
.wdu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 24, 60, 0.78) 0%, rgba(10, 50, 100, 0.6) 50%, rgba(10, 101, 204, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}
/* Animated particles overlay */
.wdu-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 60% 80%, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    z-index: 1;
    pointer-events: none;
    animation: wduGradientShift 20s ease infinite;
}
.wdu-hero > .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 150px;
}
.wdu-hero__title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-align: center;
    animation: wduSlideUp 0.8s ease-out both;
}
.wdu-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    animation: wduSlideUp 0.8s 0.15s ease-out both;
}

/* Hero search box */
.wdu-hero__search {
    background: #fff;
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
    max-width: 720px;
    margin: 0 auto;
    animation: wduSlideUp 0.8s 0.3s ease-out both;
    transition: box-shadow 0.3s, transform 0.3s;
}
/* Show icon badges inside hero search */
.wdu-hero__search .icon-badge {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 2;
}
.wdu-hero__search .fromGroup {
    position: relative !important;
}
.wdu-hero__search:focus-within {
    box-shadow: 0 24px 80px rgba(10, 101, 204, 0.3), 0 0 0 3px rgba(10, 101, 204, 0.2);
    transform: translateY(-2px);
}
.wdu-hero__search .fromGroup {
    border-right: 1px solid #E4E5E8;
    margin-right: 0;
    position: relative;
}
.wdu-hero__search .fromGroup.no-border {
    border-right: 0;
}
.wdu-hero__search .btn-primary {
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    background: linear-gradient(135deg, #0a65cc 0%, #084ea3 100%);
    border-color: #0a65cc;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.wdu-hero__search .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    background-size: 200% 100%;
    animation: wduShimmer 3s infinite;
}
.wdu-hero__search .btn-primary:hover {
    background: linear-gradient(135deg, #084ea3 0%, #063d80 100%);
    border-color: #084ea3;
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(10, 101, 204, 0.4);
}
.wdu-hero__search input {
    border: none !important;
    background: transparent !important;
    font-size: 15px;
    padding-left: 44px !important;
    text-align: left;
}
.wdu-hero__search .icon-badge svg {
    opacity: .6;
    color: #6B7280;
    width: 18px;
    height: 18px;
}

/* Hero suggestions — hidden */
.wdu-hero__tags {
    display: none !important;
}

/* Hide stat cards inside hero */
.wdu-hero__visual {
    display: none;
}

/* =========================================================
   STATS BAR — 3D Floating Cards (overlapping hero)
   ========================================================= */
.wdu-stats-bar {
    background: transparent;
    border-bottom: none;
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.wdu-stats-bar__inner {
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 44, 109, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(10, 101, 204, 0.06);
    padding: 18px 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    animation: wduSlideUp 0.8s 0.5s ease-out both;
    position: relative;
    overflow: hidden;
}
/* Gradient bar at top */
.wdu-stats-bar__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a65cc, #3b82f6, #0a65cc);
    background-size: 200% 100%;
    animation: wduGradientShift 4s ease infinite;
    border-radius: 20px 20px 0 0;
}
.wdu-stats-bar__item {
    text-align: center;
    padding: 8px 20px;
    flex: 1;
    min-width: 140px;
    position: relative;
    transition: transform 0.3s;
}
.wdu-stats-bar__item:hover {
    transform: translateY(-4px);
}
.wdu-stats-bar__item + .wdu-stats-bar__item {
    border-left: 1px solid rgba(10, 101, 204, 0.08);
}
.wdu-stats-bar__number {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #0a65cc, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}
.wdu-stats-bar__label {
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 2px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Icon above number */
.wdu-stats-bar__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e7f0fa, #dbeafe);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: #0a65cc;
    transition: all 0.3s;
}
.wdu-stats-bar__item:hover .wdu-stats-bar__icon {
    background: linear-gradient(135deg, #0a65cc, #3b82f6);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(10, 101, 204, 0.3);
}

/* =========================================================
   SECTION SHARED STYLES
   ========================================================= */
.wdu-section {
    padding: 80px 0;
    position: relative;
}
.wdu-section--alt {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.wdu-section__header {
    text-align: center;
    margin-bottom: 52px;
}
.wdu-section__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}
/* Animated underline accent */
.wdu-section__header .wdu-section__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0a65cc, #3b82f6);
}
.wdu-section__desc {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 560px;
    margin: 16px auto 0;
    line-height: 1.6;
}

/* =========================================================
   WHY CHOOSE US CARDS
   ========================================================= */
.wdu-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(10, 101, 204, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.wdu-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0a65cc, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.wdu-feature-card:hover::before {
    transform: scaleX(1);
}
.wdu-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 101, 204, 0.12);
    border-color: rgba(10, 101, 204, 0.15);
}
.wdu-feature-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e7f0fa, #dbeafe);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s;
}
.wdu-feature-card:hover .wdu-feature-card__icon {
    background: linear-gradient(135deg, #0a65cc, #3b82f6);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(10, 101, 204, 0.3);
}
.wdu-feature-card:hover .wdu-feature-card__icon svg circle[fill="#e7f0fa"] {
    fill: rgba(255,255,255,0.2);
}
.wdu-feature-card:hover .wdu-feature-card__icon svg path,
.wdu-feature-card:hover .wdu-feature-card__icon svg rect,
.wdu-feature-card:hover .wdu-feature-card__icon svg circle:not([fill="#e7f0fa"]) {
    stroke: #fff;
}
.wdu-feature-card__icon i {
    font-size: 28px;
    color: var(--primary-500);
}
.wdu-feature-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.wdu-feature-card__text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
}

/* =========================================================
   POPULAR VACANCIES — Uniform Grid Cards
   ========================================================= */
.wdu-vacancy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.wdu-vacancy-item {
    background: #fff;
    border: 1px solid rgba(10, 101, 204, 0.08);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--gray-900);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    position: relative;
    overflow: hidden;
}
.wdu-vacancy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 101, 204, 0.03), rgba(59, 130, 246, 0.03));
    opacity: 0;
    transition: opacity 0.3s;
}
.wdu-vacancy-item:hover::before {
    opacity: 1;
}
.wdu-vacancy-item:hover {
    border-color: rgba(10, 101, 204, 0.2);
    box-shadow: 0 12px 36px rgba(10, 101, 204, 0.1);
    transform: translateY(-4px);
    color: var(--gray-900);
    text-decoration: none;
}
.wdu-vacancy-item h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
}
.wdu-vacancy-item p {
    font-size: 13px;
    color: #0a65cc;
    margin: 0;
    font-weight: 500;
    position: relative;
}

/* =========================================================
   POPULAR CATEGORIES — Uniform Size Cards
   ========================================================= */
/* Prevent Bootstrap row stretching from making columns unequal */
.wdu-category-section .row {
    align-items: flex-start !important;
}
.wdu-category-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(10, 101, 204, 0.08);
    border-radius: 16px;
    padding: 0 20px;
    text-decoration: none;
    color: var(--gray-900);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}
.wdu-category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 101, 204, 0.03), rgba(59, 130, 246, 0.03));
    opacity: 0;
    transition: opacity 0.3s;
}
.wdu-category-card:hover::before {
    opacity: 1;
}
.wdu-category-card:hover {
    border-color: rgba(10, 101, 204, 0.2);
    box-shadow: 0 12px 36px rgba(10, 101, 204, 0.1);
    transform: translateY(-4px);
    color: var(--gray-900);
    text-decoration: none;
}
.wdu-category-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e7f0fa, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0a65cc;
    transition: all 0.35s;
}
.wdu-category-card:hover .wdu-category-card__icon {
    background: linear-gradient(135deg, #0a65cc, #3b82f6);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(10, 101, 204, 0.25);
}
.wdu-category-card h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    line-height: 1.3;
}
.wdu-category-card p {
    font-size: 12px;
    color: #0a65cc;
    margin: 0;
    font-weight: 500;
    white-space: nowrap;
}
/* Force all Bootstrap cols holding category cards to equal height */
[class*="col-"] > .wdu-category-card,
a.wdu-category-card {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
}
/* Follow Us label */
.wdu-footer__social-label {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    display: block;
}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.wdu-process {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
}
.wdu-process__step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    position: relative;
}
.wdu-process__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a65cc, #3b82f6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    box-shadow: 0 8px 32px rgba(10, 101, 204, 0.25);
    transition: all 0.4s;
}
.wdu-process__step:hover .wdu-process__icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(10, 101, 204, 0.35);
}
.wdu-process__icon i {
    font-size: 28px;
    color: #fff;
}
.wdu-process__num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #0a65cc;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border: 2px solid #0a65cc;
}
.wdu-process__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.wdu-process__text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}
.wdu-process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -18px;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #0a65cc, #3b82f6);
    opacity: 0.3;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.wdu-cta {
    padding: 80px 0;
}
.wdu-cta__card {
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.4s, box-shadow 0.4s;
}
.wdu-cta__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.wdu-cta__card--candidate {
    background: linear-gradient(135deg, #0A65CC 0%, #1e40af 100%);
    color: #fff;
}
.wdu-cta__card--employer {
    background: linear-gradient(135deg, #E05151 0%, #b91c1c 100%);
    color: #fff;
}
.wdu-cta__card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
    animation: wduPulse 4s ease-in-out infinite;
}
.wdu-cta__card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.wdu-cta__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.wdu-cta__text {
    font-size: 15px;
    opacity: .85;
    margin-bottom: 28px;
    max-width: 360px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.wdu-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--gray-900);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}
.wdu-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: var(--gray-900);
    text-decoration: none;
}
.wdu-cta__btn i {
    font-size: 18px;
    transition: transform 0.3s;
}
.wdu-cta__btn:hover i {
    transform: translateX(4px);
}

/* =========================================================
   FEATURED JOBS & TOP COMPANIES
   ========================================================= */
.featurejob-area {
    position: relative;
}
.featurejob-area h4 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
}
.featurejob-area .jobcardStyle1 {
    border: 1px solid rgba(10, 101, 204, 0.08);
    border-radius: 16px;
    transition: all 0.35s;
}
.featurejob-area .jobcardStyle1:hover {
    border-color: rgba(10, 101, 204, 0.15);
    box-shadow: 0 12px 36px rgba(10, 101, 204, 0.08);
    transform: translateY(-3px);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimoinals-area {
    background: linear-gradient(180deg, #f1f5f9, #e8ecf1) !important;
}
.testimoinals-area h4 {
    font-size: 28px;
    font-weight: 800;
}

/* =========================================================
   FOOTER — Modern Dark Design with Newsletter
   ========================================================= */
.wdu-footer-newsletter {
    background: linear-gradient(135deg, #0a65cc 0%, #1e40af 100%);
    border-radius: 20px;
    padding: 48px 40px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    margin-bottom: -60px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 101, 204, 0.3);
}
.wdu-footer-newsletter::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}
.wdu-footer-newsletter::after {
    content: '';
    position: absolute;
    bottom: -20px; left: 20%;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.wdu-footer-newsletter__title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}
.wdu-footer-newsletter__title span {
    color: #fff;
    font-style: normal;
    font-weight: 800;
}
.wdu-footer-newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 400px;
}
.wdu-footer-newsletter__form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}
.wdu-footer-newsletter__form input::placeholder {
    color: rgba(255,255,255,0.6);
}
.wdu-footer-newsletter__form input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}
.wdu-footer-newsletter__form button {
    padding: 14px 28px;
    border-radius: 12px;
    background: #fff;
    color: #0a65cc;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.wdu-footer-newsletter__form button:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Footer body */
.wdu-footer {
    background: #111827;
    padding-top: 100px;
    padding-bottom: 0;
}
.wdu-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}
.wdu-footer__brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0a65cc, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}
.wdu-footer__brand-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.wdu-footer__desc {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 24px;
}
.wdu-footer__social {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.wdu-footer__social li a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s;
    text-decoration: none;
}
.wdu-footer__social li a:hover {
    background: #0a65cc;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(10, 101, 204, 0.3);
}
.wdu-footer__social li a svg {
    width: 18px;
    height: 18px;
}
.wdu-footer__social li a svg path {
    fill: currentColor;
}
.wdu-footer__col-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.wdu-footer__col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0a65cc;
    border-radius: 1px;
}
.wdu-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wdu-footer__links li {
    margin-bottom: 10px;
}
.wdu-footer__links li a {
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-block;
}
.wdu-footer__links li a:hover {
    color: #fff;
    transform: translateX(4px);
}
.wdu-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    margin-top: 48px;
}
.wdu-footer__copyright {
    color: #6b7280;
    font-size: 13px;
}
.wdu-footer__copyright a {
    color: #0a65cc;
    text-decoration: none;
}

/* App Store Buttons */
.wdu-footer__app-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.wdu-footer__app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    min-width: 140px;
}
.wdu-footer__app-btn:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.wdu-footer__app-btn-icon {
    font-size: 24px;
    line-height: 1;
}
.wdu-footer__app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.wdu-footer__app-btn-text small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 3px;
}
.wdu-footer__app-btn-text span {
    font-size: 15px;
    font-weight: 600;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (max-width: 1199.98px) {
    .wdu-hero__title { font-size: 44px; }
    .wdu-vacancy-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
    .wdu-hero { min-height: 100vh; }
    .wdu-stats-bar { margin-top: -60px; }
    .wdu-stats-bar__item + .wdu-stats-bar__item { border-left: none; }
    .wdu-stats-bar__inner { gap: 16px; }
    .wdu-process__step:not(:last-child)::after { display: none; }
    .wdu-section { padding: 60px 0; }
    .wdu-section__title { font-size: 26px; }
    .wdu-vacancy-grid { grid-template-columns: repeat(2, 1fr); }
    .wdu-cta__card { padding: 36px 28px; }
    .wdu-footer-newsletter { margin-bottom: -40px; padding: 36px 28px; }
    .wdu-footer { padding-top: 80px; }
    .wdu-footer-newsletter__form { max-width: 100%; }
}
@media (max-width: 767.98px) {
    .wdu-hero__title { font-size: 32px; }
    .wdu-hero__subtitle { font-size: 16px; }
    .wdu-stats-bar { margin-top: -50px; }
    .wdu-stats-bar__inner { flex-direction: column; text-align: center; padding: 24px 16px; }
    .wdu-stats-bar__item { min-width: unset; width: 100%; }
    .wdu-stats-bar__item + .wdu-stats-bar__item { border-left: none; border-top: 1px solid rgba(10,101,204,0.06); padding-top: 16px; }
    .wdu-vacancy-grid { grid-template-columns: 1fr 1fr; }
    .wdu-section { padding: 48px 0; }
    .wdu-cta__title { font-size: 22px; }
    .wdu-footer-newsletter { padding: 28px 20px; flex-direction: column; margin-bottom: -30px; border-radius: 16px; }
    .wdu-footer-newsletter__form { flex-direction: column; }
}
@media (max-width: 575.98px) {
    .wdu-hero { padding: 110px 0 48px; }
    .wdu-hero__title { font-size: 28px; }
    .wdu-hero__search { border-radius: 14px; flex-direction: column !important; }
    .wdu-hero__search .fromGroup { border-right: none; border-bottom: 1px solid var(--gray-100); padding-bottom: 8px; margin-bottom: 8px; }
    .wdu-hero__search .fromGroup.no-border { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
    .wdu-hero__search .btn-primary { border-radius: 10px; width: 100%; }
    .wdu-vacancy-grid { grid-template-columns: 1fr; }
    .wdu-category-card h5 { max-width: 140px; font-size: 13px; }
}

/* =========================================================
   Scroll-triggered header search bar
   Hidden at top of page, slides in when hero search scrolls out
   ========================================================= */
.header-search-form {
    transition: opacity .35s ease, transform .35s ease, max-width .35s ease;
    transform-origin: left center;
}
.header-search-hidden .header-search-form {
    opacity: 0 !important;
    max-width: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px);
    padding: 0 !important;
    margin: 0 !important;
}
.header-search-visible .header-search-form {
    opacity: 1 !important;
    max-width: 550px !important;
    pointer-events: auto !important;
    transform: translateY(0);
}

/* Override old template banner padding that interferes */
.banner-section.wdu-hero-override { padding: 0 !important; background: none !important; }

/* =========================================================
   HOMEPAGE TRANSPARENT HEADER OVERLAY
   Only applies when <body class="homepage"> (homepage only)
   Uses header.homepage-header class + body.homepage for high
   specificity that definitively beats public-styles.blade.php
   ========================================================= */

/* Remove the 132px body padding that creates white space above hero */
body.homepage {
    padding-top: 0 !important;
}

/* Hide the top bar entirely on homepage — zero height */
body.homepage .n-header--top,
body.homepage header.homepage-header .n-header--top {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* Single nav bar = n-header--bottom, transparent over hero.
   Higher specificity (3 classes + 2 elements = 0,0,3,2) beats
   public-styles' header.site-header .n-header--bottom (0,0,2,1) */
body.homepage header.homepage-header.site-header,
body.homepage header.homepage-header.site-header .n-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9100 !important;
    background: transparent !important;
    background-color: transparent !important;
}
body.homepage header.homepage-header.site-header .n-header--bottom {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
    padding: 16px 0 !important;
}

/* Hide the header search form on homepage (hero has its own search) */
body.homepage .header-search-form {
    display: none !important;
}

/* Nav links injected into bottom bar */
body.homepage .hp-injected-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 0 0 28px !important;
    padding: 0 !important;
    gap: 4px !important;
}
body.homepage .hp-injected-nav li a {
    color: rgba(255,255,255,0.88) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 10px 14px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    border: none !important;
    display: block !important;
    transition: color 0.15s, background 0.15s !important;
    white-space: nowrap !important;
}
body.homepage .hp-injected-nav li a:hover,
body.homepage .hp-injected-nav li a.active {
    color: #fff !important;
    background: rgba(255,255,255,0.12) !important;
}

/* Nav bar icons → white (but NOT inside dropdown menus) */
body.homepage .n-header--bottom .n-header--bottom__right > li > a,
body.homepage .n-header--bottom .n-header--bottom__right > li > button {
    color: #fff !important;
}
body.homepage .n-header--bottom .n-header--bottom__right > li > a > svg,
body.homepage .n-header--bottom .n-header--bottom__right > li > button > svg {
    color: #fff !important;
    stroke: #fff !important;
}
body.homepage .n-header--bottom .profile-user-name {
    color: rgba(255,255,255,0.88) !important;
}

/* Dropdown menus: normal dark icons + text */
body.homepage .n-header--bottom .custom-dropdown-menu svg,
body.homepage .n-header--bottom .dropdown-menu svg {
    color: #18191C !important;
    stroke: #18191C !important;
}
body.homepage .n-header--bottom .custom-dropdown-menu a,
body.homepage .n-header--bottom .dropdown-menu a {
    color: #18191C !important;
}
body.homepage .n-header--bottom .custom-dropdown-menu a:hover,
body.homepage .n-header--bottom .dropdown-menu a:hover {
    color: #0a65cc !important;
}

/* Post Job button → white bg, rounded, with blue text */
body.homepage .n-header--bottom .btn.btn-primary {
    background: #fff !important;
    color: #0a65cc !important;
    border-color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: all 0.3s !important;
}
body.homepage .n-header--bottom .btn.btn-primary:hover {
    background: #f0f7ff !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
}

/* Sign In button → white filled, rounded */
body.homepage .n-header--bottom .btn-outline-light {
    background: rgba(255,255,255,0.12) !important;
    border: 1.5px solid rgba(255,255,255,0.6) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    backdrop-filter: blur(4px) !important;
    transition: all 0.3s !important;
}
body.homepage .n-header--bottom .btn-outline-light:hover {
    background: rgba(255,255,255,0.25) !important;
    border-color: #fff !important;
}

/* On scroll: solid blue, readable on other sections */
body.homepage .site-header.rt-sticky.rt-sticky-active .n-header--bottom {
    background: #0a65cc !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15) !important;
    border-bottom: none !important;
}
body.homepage .site-header.rt-sticky.rt-sticky-active .n-header--bottom .btn.btn-primary {
    background: #fff !important;
    color: #0a65cc !important;
}

/* Sticky: dropdown menus still need normal colors */
body.homepage .site-header.rt-sticky.rt-sticky-active .custom-dropdown-menu svg,
body.homepage .site-header.rt-sticky.rt-sticky-active .dropdown-menu svg {
    color: #4b5563 !important;
    stroke: #4b5563 !important;
}

/* Hero: fill from very top, behind the single nav bar */
body.homepage .wdu-hero {
    margin-top: 0;
}

/* Dropdown menus: solid white with shadow */
body.homepage .custom-dropdown-menu,
body.homepage .dropdown-menu {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
}
body.homepage .custom-dropdown-menu a,
body.homepage .dropdown-menu a {
    color: #18191C !important;
}
body.homepage .custom-dropdown-menu a svg,
body.homepage .dropdown-menu a svg {
    color: #4b5563 !important;
    stroke: #4b5563 !important;
}

/* Mobile: keep blue background so menu is readable */
@media (max-width: 991.98px) {
    body.homepage .hp-injected-nav {
        display: none !important;
    }
    body.homepage .wdu-hero > .container {
        padding-top: 40px;
    }
    body.homepage .n-header--bottom {
        border-bottom: none !important;
    }
}