/* =========================================================
   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);
}
/* Mobile Sign In button on inner pages (non-homepage) — must be visible on white header */
body:not(.homepage) .wdu-mobile-signin-btn {
    background: #0a65cc !important;
    color: #ffffff !important;
    border: 1.5px solid #0a65cc !important;
    border-radius: 6px !important;
    padding: 5px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    overflow: visible !important;
    min-width: max-content !important;
}
body:not(.homepage) .wdu-mobile-signin-btn:hover {
    background: #084ea3 !important;
    border-color: #084ea3 !important;
    color: #ffffff !important;
}
/* Non-homepage mobile header layout — prevent Sign In clipping */
body:not(.homepage) .wdu-mobile-header-shell {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    width: 100%;
}
body:not(.homepage) .wdu-mobile-actions {
    min-width: max-content;
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
    gap: 8px;
    overflow: visible !important;
}
/* Mobile search icon on inner pages — use dark color on white header */
body:not(.homepage) #searchIconMblBlue path {
    stroke: #374151 !important;
}
/* Mobile hamburger on inner pages — dark icon */
body:not(.homepage) .wdu-mobile-hamburger-btn {
    color: #374151 !important;
}
/* Mobile logo on inner pages — dark version (not inverted) */
body:not(.homepage) .wdu-mobile-brand-logo-img {
    filter: none !important;
}

/* 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 — Premium 2-column layout
   ========================================================= */
.wdu-hero {
    position: relative;
    width: 100%;
    background-color: #eef2ff;
    background-image:
        linear-gradient(90deg, rgba(238,242,255,0.97) 0%, rgba(238,242,255,0.92) 38%, rgba(238,242,255,0.55) 52%, transparent 62%),
        url(../assets/images/hero-bg-7.jpg);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right center;
    background-size: 100% 100%, cover;
    padding: 0;
    overflow: hidden;
    min-height: 620px;
}
.wdu-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.wdu-hero__glow--1 {
    width: 400px; height: 400px;
    background: rgba(99,102,241,0.15);
    top: -100px; right: 10%;
}
.wdu-hero__glow--2 {
    width: 300px; height: 300px;
    background: rgba(59,130,246,0.12);
    bottom: -80px; left: 20%;
}

/* Wrapper = 2-column flex */
.wdu-hero__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    position: relative;
    z-index: 2;
    gap: 40px;
}

/* LEFT column = 55% */
.wdu-hero__left {
    flex: 0 0 55%;
    max-width: 55%;
    text-align: left;
    padding-right: 20px;
}

/* RIGHT column = 45% */
.wdu-hero__right {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.wdu-hero__visual-space {
    min-height: 500px;
}

/* --- Hiring badge (hidden) --- */
.wdu-hero__badge {
    display: none !important;
}
.wdu-hero__badge-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: wduPulse 2s ease infinite;
}
.wdu-hero__badge-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
}
.wdu-hero__badge-link:hover { color: #4338ca; text-decoration: underline; }

/* --- Title --- */
.wdu-hero__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: wduSlideUp 0.7s 0.1s ease-out both;
}
.wdu-hero__title-highlight {
    display: block;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #4f46e5 0%, #0a65cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Subtitle --- */
.wdu-hero__subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 500px;
    animation: wduSlideUp 0.7s 0.2s ease-out both;
}

/* --- Search bar (pill) --- */
.wdu-hero__search {
    animation: wduSlideUp 0.7s 0.35s ease-out both;
    margin-bottom: 0;
}
.wdu-hero__search-inner {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    height: 60px;
    padding: 6px 6px 6px 24px;
    box-shadow: 0 10px 40px rgba(79,70,229,0.10), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(99,102,241,0.1);
    transition: box-shadow 0.3s, transform 0.3s;
    max-width: 580px;
}
.wdu-hero__search-inner:focus-within {
    box-shadow: 0 14px 50px rgba(79,70,229,0.18), 0 0 0 3px rgba(99,102,241,0.08);
    transform: translateY(-2px);
}
.wdu-hero__search-field {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    min-width: 0;
}
.wdu-hero__search-field .icon-badge {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    flex-shrink: 0;
    margin-right: 10px;
    pointer-events: none;
}
.wdu-hero__search-field .icon-badge svg {
    opacity: 0.5;
    color: #6B7280;
    width: 18px; height: 18px;
}
.wdu-hero__search-field input {
    border: none !important;
    background: transparent !important;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    width: 100%;
    padding: 0;
    height: 100%;
}
.wdu-hero__search-field input::placeholder { color: #9ca3af; }
.wdu-hero__search-divider {
    width: 1px;
    height: 28px;
    background: #e5e7eb;
    flex-shrink: 0;
    margin: 0 12px;
}
.wdu-hero__search-btn {
    flex-shrink: 0;
    height: 48px;
    padding: 0 28px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #0a65cc 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.wdu-hero__search-btn::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:hover {
    background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%);
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}

/* --- Popular Searches (hidden) --- */
.wdu-hero__popular {
    display: none !important;
}
.wdu-hero__popular-label { font-size: 13px; font-weight: 600; color: #475569; }
.wdu-hero__popular-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 500;
    color: #374151;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(99,102,241,0.12);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}
.wdu-hero__popular-tag:hover {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79,70,229,0.25);
}
.wdu-hero__tags { display: none !important; }

/* --- Floating stat cards (hidden) --- */
.wdu-hero__float-card {
    display: none !important;
}
.wdu-hero__float-card--companies { top: 5%; left: -30px; animation-delay: 0s; }
.wdu-hero__float-card--jobs { top: 38%; right: -20px; left: auto; animation-delay: 1s; }
.wdu-hero__float-card--rate { bottom: 15%; left: -20px; animation-delay: 2s; }
.wdu-hero__float-card-title,
.wdu-hero__float-card-label {
    font-size: 11px; font-weight: 600; color: #64748b;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.wdu-hero__float-card-number { font-size: 24px; font-weight: 800; color: #4f46e5; line-height: 1; }
.wdu-hero__float-card-sub { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.wdu-hero__float-card-avatars { display: flex; align-items: center; gap: 4px; margin-top: 6px; }
.wdu-hero__avatar { font-size: 18px; }
.wdu-hero__float-card-count { font-size: 12px; font-weight: 700; color: #4f46e5; margin-left: 4px; }

/* Hide old stats */
.wdu-hero__visual, .hero-floating-card, .hero-badge-card, .hero-stat-badge { display: none !important; }
.wdu-stats-inside { display: none !important; }
.wdu-stats-bar { display: none !important; }
.wdu-hero__floaters { display: none !important; }

/* =========================================================
   STATS BAR — Overlapping hero bottom edge (50/50)
   ========================================================= */
.wdu-stats-overlap {
    position: relative;
    z-index: 20;
    margin-top: -50px;
    padding: 0 20px;
    margin-bottom: 30px;
}
.wdu-stats-overlap__inner {
    background: rgba(255,255,255,0.70);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 20px 60px rgba(0,44,109,0.10), 0 4px 16px rgba(0,0,0,0.04);
    padding: 24px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    animation: wduSlideUp 0.8s 0.6s ease-out both;
}
.wdu-stats-overlap__item {
    text-align: center;
    padding: 8px 20px;
    flex: 1;
}
.wdu-stats-overlap__divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(99,102,241,0.15), transparent);
    flex-shrink: 0;
}
.wdu-stats-overlap__icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(59,130,246,0.08));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #4f46e5;
    transition: all 0.3s;
}
.wdu-stats-overlap__item:hover .wdu-stats-overlap__icon {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(79,70,229,0.3);
}
.wdu-stats-overlap__number {
    font-size: 28px;
    font-weight: 800;
    color: #4f46e5;
    line-height: 1;
    margin-bottom: 4px;
}
.wdu-stats-overlap__label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.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);
}
.wdu-home-headingbar {
    align-items: center;
    row-gap: 12px;
}
.wdu-section__title--left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    text-align: left;
}
.wdu-brand-accent {
    color: #0a65cc;
    font-weight: 800;
}
.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);
}

/* Company Cards — Center avatar and content */
.featurejob-area .rt-single-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.featurejob-area .rt-single-icon-box .icon-thumb {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    width: 100%;
}
.featurejob-area .rt-single-icon-box .iconbox-content {
    width: 100%;
}
.featurejob-area .info-tools {
    justify-content: center;
    display: inline-flex;
    gap: 6px;
}

/* Top Companies — centered card grid */
.wdu-top-companies-section {
    padding: 60px 0;
}
.wdu-companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.wdu-co-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 20px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
.wdu-co-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 101, 204, 0.1);
    border-color: rgba(10, 101, 204, 0.2);
    text-decoration: none;
    color: inherit;
}
.wdu-co-card__logo {
    margin-bottom: 14px;
}
.wdu-co-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px;
    line-height: 1.3;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wdu-co-card:hover .wdu-co-card__name {
    color: #0a65cc;
}
.wdu-co-card__industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #0a65cc;
    background: rgba(10, 101, 204, 0.07);
    padding: 3px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    line-height: 1.5;
}
.wdu-co-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}
.wdu-co-card__loc {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #6b7280;
}
.wdu-co-card__loc svg {
    color: #9ca3af;
}
.wdu-co-card__jobs {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.07);
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}
@media (max-width: 991.98px) {
    .wdu-companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575.98px) {
    .wdu-companies-grid {
        grid-template-columns: 1fr;
    }
    .wdu-top-companies-section {
        padding: 40px 0;
    }
}

/* =========================================================
   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-hero__title-highlight { font-size: 44px; }
    .wdu-hero__wrapper { padding: 50px 40px 70px; gap: 30px; }
    .wdu-hero {
        background-size: 100% 100%, cover;
        min-height: 560px;
    }
    .wdu-hero__visual-space { min-height: 390px; }
    .wdu-vacancy-grid { grid-template-columns: repeat(3, 1fr); }
    .wdu-process { gap: 24px; }
    .wdu-process__step { min-width: 180px; max-width: 220px; }
    .wdu-hero__float-card--companies { left: -15px; }
    .wdu-hero__float-card--jobs { right: -10px; }
    .wdu-hero__float-card--rate { left: -10px; }
}
@media (max-width: 991.98px) {
    .wdu-hero {
        min-height: auto;
        background-image: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 40%, #eef2ff 100%);
        background-position: left top;
        background-size: auto;
    }
    .wdu-hero__title-highlight { font-size: 36px; }
    .wdu-hero__wrapper { flex-direction: column; padding: 40px 20px 60px; gap: 30px; }
    .wdu-hero__left { flex: none; max-width: 100%; padding-right: 0; }
    .wdu-hero__right { display: none !important; }
    .wdu-hero__title { font-size: 36px; }
    .wdu-stats-overlap { margin-top: -30px; }
    .wdu-stats-overlap__inner { flex-wrap: wrap; gap: 8px; padding: 16px 20px; }
    .wdu-stats-overlap__item { flex: 0 0 calc(50% - 16px); }
    .wdu-stats-overlap__divider { display: none; }
    .wdu-stats-overlap__number { font-size: 22px; }
    .wdu-process__step:not(:last-child)::after { display: none; }
    .wdu-process { gap: 20px; }
    .wdu-process__step { flex: 0 1 calc(50% - 10px); min-width: 160px; max-width: 100%; }
    .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: 28px; }
    .wdu-hero__title-highlight { font-size: 28px; }
    .wdu-hero__subtitle { font-size: 15px; }
    .wdu-hero__wrapper { padding: 30px 16px 50px; }
    .wdu-hero__badge { font-size: 12px; padding: 5px 12px; }
    .wdu-hero__popular { gap: 6px; }
    .wdu-hero__popular-tag { font-size: 11px; padding: 4px 10px; }
    .wdu-hero__search-inner {
        flex-direction: column;
        height: auto;
        border-radius: 16px;
        padding: 10px;
        gap: 8px;
    }
    .wdu-hero__search-divider { display: none; }
    .wdu-hero__search-field { width: 100%; padding: 8px 12px; }
    .wdu-hero__search-btn { width: 100%; border-radius: 12px; height: 48px; }
    .wdu-stats-overlap { margin-top: -25px; }
    .wdu-stats-overlap__inner { flex-direction: column; text-align: center; padding: 16px; }
    .wdu-stats-overlap__item { flex: 1 1 100%; }
    .wdu-stats-overlap__divider { width: 80%; height: 1px; margin: 4px auto; }
    .wdu-vacancy-grid { grid-template-columns: 1fr 1fr; }
    .wdu-section { padding: 48px 0; }
    .wdu-section__title { font-size: 22px; }
    .wdu-process { gap: 16px; }
    .wdu-process__step { flex: 0 1 calc(50% - 8px); min-width: 140px; max-width: 100%; }
    .wdu-process__icon { width: 64px; height: 64px; margin-bottom: 16px; }
    .wdu-process__title { font-size: 15px; }
    .wdu-process__text { font-size: 13px; }
    .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__wrapper { padding: 24px 12px 40px; }
    .wdu-hero__title { font-size: 26px; }
    .wdu-vacancy-grid { grid-template-columns: 1fr; }
    .wdu-category-card h5 { max-width: 140px; font-size: 13px; }
    .wdu-process { gap: 16px; }
    .wdu-process__step { flex: 0 1 100%; min-width: unset; max-width: 100%; text-align: center; }
    .wdu-process__icon { width: 56px; height: 56px; margin: 0 auto 14px; }
    .wdu-process__num { width: 24px; height: 24px; font-size: 11px; }
    .wdu-process__title { font-size: 14px; }
    .wdu-process__text { font-size: 12px; }
    .wdu-section__title { font-size: 20px; text-align: center; }
}
@media (max-width: 375px) {
    .wdu-hero__wrapper { padding: 20px 8px 32px; }
    .wdu-hero__title { font-size: 22px; }
    .wdu-hero__title-highlight { font-size: 22px; }
    .wdu-hero__subtitle { font-size: 13px; }
    .wdu-stats-overlap__inner { padding: 12px; }
    .wdu-stats-overlap__number { font-size: 20px; }
    .wdu-section__title { font-size: 18px; }
}
@media (max-width: 320px) {
    .wdu-hero__wrapper { padding: 16px 4px 24px; }
    .wdu-hero__title { font-size: 20px; }
    .wdu-hero__title-highlight { font-size: 20px; }
    .wdu-hero__subtitle { font-size: 12px; }
    .wdu-hero__search-field input { font-size: 13px; }
    .wdu-section { padding: 32px 0; }
    .wdu-section__title { font-size: 17px; }
}

/* =========================================================
   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 SOLID WHITE HEADER
   Navbar is white with dark text, hero starts below it.
   ========================================================= */

/* Body padding for the fixed header height */
body.homepage {
    padding-top: 72px !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;
}

/* Fixed header with frosted glass effect */
body.homepage header.homepage-header.site-header,
body.homepage header.homepage-header.site-header .n-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9100 !important;
    background: rgba(255,255,255,0.75) !important;
    backdrop-filter: blur(12px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
}
body.homepage header.homepage-header.site-header .n-header--bottom {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
    padding: 12px 0 !important;
}

/* Hide the header search form on homepage (hero has its own search) */
body.homepage .header-search-form {
    display: none !important;
}

/* Nav links: dark text on white bg */
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: #374151 !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 {
    color: #0a65cc !important;
    background: rgba(10,101,204,0.06) !important;
}
body.homepage .hp-injected-nav li a.active {
    color: #0a65cc !important;
    font-weight: 600 !important;
    background: transparent !important;
}

/* Nav bar icons → dark */
body.homepage .n-header--bottom .n-header--bottom__right > li > a,
body.homepage .n-header--bottom .n-header--bottom__right > li > button {
    color: #374151 !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: #374151 !important;
    stroke: #374151 !important;
}
body.homepage .n-header--bottom .profile-user-name {
    color: #374151 !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 / Register button → indigo filled */
body.homepage .n-header--bottom .btn.btn-primary {
    background: #4f46e5 !important;
    color: #fff !important;
    border-color: #4f46e5 !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: #4338ca !important;
    box-shadow: 0 4px 16px rgba(79,70,229,0.3) !important;
}

/* Sign In button → outline indigo */
body.homepage .n-header--bottom .btn-outline-light {
    background: transparent !important;
    border: 1.5px solid #4f46e5 !important;
    color: #4f46e5 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    backdrop-filter: none !important;
    transition: all 0.3s !important;
}
body.homepage .n-header--bottom .btn-outline-light:hover {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    color: #fff !important;
}

/* On scroll: slightly more opaque frosted glass */
body.homepage .site-header.rt-sticky.rt-sticky-active .n-header--bottom {
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(16px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(130%) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
    border-bottom: 1px solid rgba(0,0,0,0.04) !important;
}
body.homepage .site-header.rt-sticky.rt-sticky-active .n-header--bottom .btn.btn-primary {
    background: #0a65cc !important;
    color: #fff !important;
}

@media (min-width: 1200px) {
    body.homepage header.homepage-header.site-header .n-header--bottom .container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    body.homepage .hb-nav {
        gap: 14px !important;
    }

    body.homepage .hb-nav__link {
        font-size: 13px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
        color: #374151 !important;
    }
    body.homepage .hb-nav__link:hover {
        color: #0a65cc !important;
    }
    body.homepage .hb-nav__link.active {
        color: #0a65cc !important;
    }
}

@media (min-width: 1440px) {
    body.homepage header.homepage-header.site-header .n-header--bottom {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    body.homepage header.homepage-header.site-header .n-header--bottom .container {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    body.homepage .hb-nav {
        gap: 16px !important;
    }

    body.homepage .hb-nav__link {
        font-size: 14px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

@media (min-width: 1600px) {
    body.homepage header.homepage-header.site-header .n-header--bottom .container {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    body.homepage .hb-nav {
        gap: 18px !important;
    }

    body.homepage .hb-nav__link {
        font-size: 14px !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: starts below the fixed navbar */
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: solid white header */
@media (max-width: 991.98px) {
    body.homepage {
        padding-top: 56px !important;
    }

    body.homepage header.homepage-header.site-header .n-header--bottom {
        padding: 10px 0 !important;
        background: rgba(255,255,255,0.70) !important;
        border-bottom: 1px solid rgba(0,0,0,0.04) !important;
        backdrop-filter: blur(12px) saturate(120%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(120%) !important;
    }

    body.homepage .wdu-mobile-header-shell {
        display: grid !important;
        grid-template-columns: 40px minmax(0, 1fr) auto;
        align-items: center !important;
        gap: 10px !important;
        min-height: 52px;
    }

    body.homepage .wdu-mobile-hamburger-btn {
        width: 36px;
        height: 36px;
        padding: 4px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: 1px solid rgba(0,0,0,0.1) !important;
        background: transparent !important;
        color: #374151 !important;
    }

    body.homepage .wdu-mobile-brand-logo {
        display: inline-flex !important;
        justify-self: start;
        align-items: center;
        min-width: 0;
        margin-right: 0 !important;
        overflow: hidden;
    }

    body.homepage .wdu-mobile-brand-logo-img {
        height: 28px !important;
        width: auto !important;
        max-width: 150px;
        object-fit: contain;
        display: block;
        filter: none !important;
    }

    body.homepage .wdu-mobile-actions {
        margin-left: 0 !important;
        gap: 8px !important;
        flex-shrink: 0;
        min-width: 88px;
        justify-content: flex-end;
    }

    body.homepage .wdu-mobile-icon-btn {
        width: 36px;
        height: 36px;
        border-radius: 999px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid rgba(0,0,0,0.1);
        color: #374151;
    }

    body.homepage .wdu-mobile-signin-btn {
        min-height: 38px;
        padding: 8px 16px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        white-space: nowrap;
        background: #0a65cc !important;
        border: 1.5px solid #0a65cc !important;
        color: #fff !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.homepage .wdu-mobile-signin-btn:hover,
    body.homepage .wdu-mobile-signin-btn:focus {
        background: #084ea3 !important;
        border-color: #084ea3 !important;
        color: #fff !important;
    }

    body.homepage #searchIconMblBlue {
        width: 20px;
        height: 20px;
    }
    body.homepage #searchIconMblBlue path {
        stroke: #374151 !important;
    }

    body.homepage .wdu-mobile-nav-overlay {
        background: rgba(2, 6, 23, 0.58) !important;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    body.homepage .wdu-mobile-nav-panel {
        width: min(86vw, 304px) !important;
        max-width: 304px !important;
        background: #f8fbff !important;
        box-shadow: 18px 0 46px rgba(2, 21, 61, 0.34) !important;
        border-right: 1px solid rgba(10, 101, 204, 0.15);
    }

    body.homepage .wdu-mobile-nav-top {
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        padding: 16px 14px !important;
    }

    body.homepage .wdu-mobile-nav-brand {
        display: inline-flex;
        align-items: center;
        min-width: 0;
    }

    body.homepage .wdu-mobile-nav-brand-img {
        height: 26px !important;
        width: auto !important;
        max-width: 148px;
        filter: none !important;
    }

    body.homepage .wdu-mobile-nav-close {
        color: #374151 !important;
        border: 1px solid rgba(0,0,0,0.1) !important;
        background: transparent !important;
        border-radius: 10px !important;
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    body.homepage .wdu-mobile-nav-list {
        padding: 10px 8px 14px !important;
        background: transparent !important;
    }

    body.homepage .wdu-mobile-nav-list > li > a {
        border-bottom: 0 !important;
        margin: 4px 6px;
        border-radius: 10px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    body.homepage .wdu-mobile-nav-list > li > a i {
        display: none !important;
    }

    body.homepage .wdu-mobile-nav-auth {
        padding: 14px 10px !important;
    }

    body.homepage .wdu-mobile-nav-auth .wdu-mobile-nav-auth-btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        white-space: nowrap;
    }

    body.homepage .wdu-mobile-nav-auth .wdu-mobile-nav-auth-btn--signin {
        margin-bottom: 10px !important;
    }

    body.homepage .wdu-mobile-nav-auth .wdu-mobile-nav-auth-btn--register {
        background: #0a65cc !important;
        color: #fff !important;
        border: 1px solid #0a65cc !important;
        border-radius: 8px !important;
        padding: 10px 12px !important;
    }

    body.homepage .wdu-mobile-nav-list > li > a:hover {
        background: rgba(10, 101, 204, 0.08) !important;
        color: #0a65cc !important;
    }

    body.homepage .wdu-mobile-nav-list > li:last-child {
        border-top-color: rgba(10, 101, 204, 0.12) !important;
        margin-top: 10px !important;
    }

    body.homepage .hp-injected-nav {
        display: none !important;
    }
    body.homepage .wdu-hero > .container {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    body.homepage .wdu-hero {
        min-height: auto;
        height: auto;
        max-height: none;
    }
    body.homepage .n-header--bottom {
        border-bottom: none !important;
    }
}

@media (max-width: 575.98px) {
    body.homepage .wdu-mobile-header-shell {
        grid-template-columns: 36px minmax(0, 1fr) auto;
        gap: 7px !important;
    }

    body.homepage .wdu-mobile-brand-logo-img {
        height: 25px !important;
        max-width: 124px;
    }

    body.homepage .wdu-mobile-signin-btn {
        min-height: 36px;
        padding: 8px 11px !important;
        font-size: 13px !important;
    }

    body.homepage .wdu-mobile-actions {
        min-width: 82px;
        gap: 6px !important;
    }
}

@media (max-width: 360px) {
    body.homepage .wdu-mobile-header-shell {
        grid-template-columns: 32px minmax(0, 1fr) auto;
        gap: 5px !important;
    }

    body.homepage .wdu-mobile-brand-logo-img {
        height: 22px !important;
        max-width: 92px;
    }

    body.homepage .wdu-mobile-icon-btn {
        width: 32px;
        height: 32px;
    }

    body.homepage .wdu-mobile-signin-btn {
        min-height: 32px;
        padding: 6px 8px !important;
        font-size: 11px !important;
    }

    body.homepage .wdu-mobile-actions {
        min-width: 72px;
        gap: 3px !important;
        margin-left: auto !important;
    }

    body.homepage .wdu-mobile-nav-auth {
        padding: 12px 8px !important;
    }

    body.homepage .wdu-mobile-nav-auth .wdu-mobile-nav-auth-btn {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }

    body.homepage .wdu-mobile-nav-auth .wdu-mobile-nav-auth-btn--register {
        border-width: 1px !important;
    }
}

/* HERO - stable responsive system */
.wdu-hero {
    position: relative;
    width: 100%;
    background-color: #eef2ff;
    background-image:
        linear-gradient(90deg, rgba(238,242,255,0.97) 0%, rgba(238,242,255,0.92) 36%, rgba(238,242,255,0.58) 50%, transparent 62%),
        url(../assets/images/hero-bg-7.jpg);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right center;
    background-size: 100% 100%, cover;
    min-height: clamp(400px, 50vh, 700px);
    overflow: hidden;
}

.wdu-hero__wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(34px, 4vw, 60px) 40px clamp(58px, 6vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.wdu-hero__left {
    flex: 0 0 55%;
    max-width: 55%;
    padding-right: 20px;
}

.wdu-hero__right {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.wdu-hero__visual-space {
    min-height: 500px;
}

.wdu-hero__title,
.wdu-hero__title-highlight {
    font-size: clamp(34px, 3.6vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.9px;
}

.wdu-hero__subtitle {
    font-size: clamp(15px, 1.2vw, 20px);
    max-width: 560px;
}

@media (min-width: 992px) and (max-width: 1600px) {
    .wdu-hero__wrapper {
        align-items: flex-start;
        padding-top: 28px;
    }

    .wdu-hero__left {
        padding-top: 18px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .wdu-hero__title,
    .wdu-hero__title-highlight,
    .wdu-hero__subtitle {
        text-align: left;
    }

    .wdu-hero__subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: 620px;
    }

    .wdu-hero__search {
        width: 100%;
        max-width: 620px;
        margin-left: 0;
        margin-right: 0;
    }

    .wdu-hero__popular-tags {
        justify-content: flex-start;
    }
}

@media (max-width: 1399.98px) {
    .wdu-hero {
        background-size: 100% 100%, cover;
        background-position: left top, right top;
        min-height: 640px;
    }
    .wdu-hero__left { flex-basis: 55%; max-width: 55%; }
    .wdu-hero__right { flex-basis: 45%; max-width: 45%; }
}

@media (max-width: 1199.98px) {
    .wdu-hero {
        background-size: 100% 100%, cover;
        background-position: left top, right center;
        min-height: 520px;
    }
    .wdu-hero__wrapper {
        padding: 44px 28px 68px;
        gap: 24px;
    }
    .wdu-hero__visual-space { min-height: 360px; }
}

@media (max-width: 991.98px) {
    .wdu-hero {
        background-image: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 40%, #eef2ff 100%);
        background-size: auto;
        background-position: left top;
        min-height: auto;
    }
    .wdu-hero__wrapper {
        flex-direction: column;
        padding: 36px 20px 56px;
    }
    .wdu-hero__left,
    .wdu-hero__right {
        flex: none;
        max-width: 100%;
    }
    .wdu-hero__right {
        display: none !important;
    }
    .wdu-hero__title,
    .wdu-hero__title-highlight {
        font-size: 36px;
    }
}

@media (max-width: 767.98px) {
    .wdu-hero__wrapper { padding: 28px 16px 48px; }
    .wdu-hero__title,
    .wdu-hero__title-highlight {
        font-size: 30px;
        line-height: 1.15;
    }
    .wdu-hero__subtitle { font-size: 16px; }
}

@media (max-width: 575.98px) {
    .wdu-hero__wrapper { padding: 24px 12px 40px; }
    .wdu-hero__title,
    .wdu-hero__title-highlight {
        font-size: 26px;
    }
}

@media (min-width: 1600px) {
    .wdu-hero__title { font-size: 3.5rem; letter-spacing: -1.1px; }
    .wdu-hero__title-highlight { font-size: 3.5rem; letter-spacing: -1.1px; }
    .wdu-hero__subtitle { font-size: 18px; max-width: 560px; }
    .wdu-hero__search { max-width: 600px; }
    .wdu-hero__search input { font-size: 14px; }
    .wdu-hero__search-btn { font-size: 14px; padding: 0 32px; }
    .wdu-hero__left { flex: 0 0 55%; max-width: 700px; }
    .wdu-hero__right { flex: 0 0 45%; }
    .wdu-hero__right img { max-width: 600px; height: auto; object-fit: contain; }
    .wdu-hero { min-height: 640px; background-size: 100% 100%, cover; }
    .wdu-hero__visual-space { min-height: 540px; }
}

@media (min-width: 1920px) {
    .wdu-hero__wrapper { max-width: 1600px; padding: 60px 40px 80px; }
    .wdu-hero__left { max-width: 720px; }
    .wdu-hero__right img { max-width: 640px; }
    .wdu-hero { min-height: 680px; background-size: 100% 100%, cover; }
}

/* Desktop normalization for 100% zoom readability (prevents oversized hero at common laptop widths). */
@media (min-width: 992px) and (max-width: 1600px) {
    .wdu-hero {
        min-height: 560px;
        background-size: 100% 100%, cover;
    }

    .wdu-hero__wrapper {
        max-width: 1380px;
        padding: 42px 24px 62px;
        gap: 24px;
    }

    .wdu-hero__left {
        flex: 0 0 54%;
        max-width: 54%;
        padding-right: 12px;
    }

    .wdu-hero__right {
        flex: 0 0 46%;
        max-width: 46%;
    }

    .wdu-hero__title,
    .wdu-hero__title-highlight {
        font-size: clamp(36px, 2.8vw, 48px);
        line-height: 1.14;
    }

    .wdu-hero__subtitle {
        font-size: clamp(14px, 1.05vw, 18px);
        max-width: 520px;
    }

    .wdu-hero__search {
        max-width: 540px;
    }

    .wdu-hero__visual-space {
        min-height: 420px;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .wdu-hero__wrapper {
        padding: 36px 20px 56px;
    }

    .wdu-hero__title,
    .wdu-hero__title-highlight {
        font-size: clamp(34px, 2.45vw, 42px);
    }

    .wdu-hero__visual-space {
        min-height: 380px;
    }
}
