/* ============================================================
   home.css — extracted from resources/views/pages/home.blade.php
   Visual output must remain identical to the previous inline styles.
   ============================================================ */

/* ===== Service / Category / Blog cards ===== */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    max-width: 80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 576px) {
    .category-tag {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.fav-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.fav-icon:hover {
    color: #ff4d4f;
}

.order-btn {
    background: #007BFF;
    border: none;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    transition: background 0.3s;
}

.order-btn:hover {
    background: #0056b3;
}

.rating-stars i {
    font-size: 12px;
    margin-right: 1px;
}

.rating-stars {
    font-size: 12px;
}

.service-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.price-box {
    font-size: 13px;
}

.price-unit {
    font-size: 11px !important;
    color: #6c757d;
}

.blog-card img {
    transition: transform 0.3s;
}

.blog-card img:hover {
    transform: scale(1.05);
}

.blog-card h5 {
    transition: color 0.3s;
}

.blog-card h5:hover {
    color: #007BFF;
}

/* ===== JOBBANK.UZ DESIGN SYSTEM - FIXED VARIABLES ===== */

/* CSS Variables - Properly Defined */
:root {
    /* Colors - Fixed */
    --jobbank-primary: #0075fb;
    --jobbank-primary-dark: #005ce6;
    --jobbank-primary-darker: #0047cc;
    --jobbank-primary-light: #00a8ff;
    --jobbank-secondary: #4ecdc4;
    --jobbank-dark: #1a1a1a;
    --jobbank-gray: #666666;
    --jobbank-light-gray: #f8f9fa;
    --jobbank-white: #ffffff;

    /* Border Radius */
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 30px;
    --radius-full: 50px;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 80px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 8px 25px rgba(0, 117, 251, 0.3);
    --shadow-primary-lg: 0 15px 40px rgba(0, 117, 251, 0.4);

    /* Typography */
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-md: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
}

/* Global Styles */
* {
    font-family: 'Inter', sans-serif;
}

/* ===== UTILITY CLASSES - FIXED ===== */
.jobbank-gradient-primary {
    background: linear-gradient(135deg, #0075fb, #005ce6) !important;
}

.jobbank-gradient-light {
    background: linear-gradient(135deg, #f8f9fa, #f0f4ff) !important;
}

.jobbank-text-primary {
    color: #0075fb !important;
}

.jobbank-text-dark {
    color: #1a1a1a !important;
}

.jobbank-text-gray {
    color: #666666 !important;
}

.jobbank-shadow-sm {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.jobbank-shadow-md {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.jobbank-shadow-lg {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.jobbank-shadow-primary {
    box-shadow: 0 8px 25px rgba(0, 117, 251, 0.3) !important;
}

.jobbank-radius-sm {
    border-radius: 12px !important;
}

.jobbank-radius-md {
    border-radius: 16px !important;
}

.jobbank-radius-lg {
    border-radius: 20px !important;
}

.jobbank-radius-xl {
    border-radius: 24px !important;
}

.jobbank-radius-2xl {
    border-radius: 30px !important;
}

.jobbank-radius-full {
    border-radius: 50px !important;
}

/* ===== HERO SECTION - FIXED ===== */
.jobbank-main-section {
    background:
        radial-gradient(1200px 600px at 80% 0%, rgba(0, 117, 251, 0.06), transparent 60%),
        radial-gradient(800px 400px at 0% 100%, rgba(78, 205, 196, 0.05), transparent 60%),
        #ffffff;
    padding: 96px 0 88px;
    position: relative;
    overflow: hidden;
}

.jobbank-main-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #0075fb, #00a8ff);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.08;
}

.jobbank-main-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #4ecdc4, #0075fb);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    opacity: 0.08;
}

.jobbank-main-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.jobbank-brand-highlight {
    color: #0075fb;
    position: relative;
}

.jobbank-brand-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0075fb, #00a8ff);
    opacity: 0.55;
    border-radius: 4px;
}

.jobbank-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Search Form - refined sizing */
.jobbank-search-form {
    background: #ffffff;
    border-radius: 50px;
    padding: 6px;
    border: 1.5px solid #e3edff;
    max-width: 520px;
    box-shadow: 0 12px 30px rgba(0, 117, 251, 0.10);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.jobbank-search-form:focus-within {
    border-color: #0075fb;
    box-shadow: 0 16px 40px rgba(0, 117, 251, 0.18);
}

.jobbank-search-input {
    background: transparent !important;
    border: none !important;
    padding: 14px 22px !important;
    font-size: 1rem !important;
    font-weight: 500;
    color: #1a1a1a;
    height: 50px;
}

.jobbank-search-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.jobbank-search-input::placeholder {
    color: #9ca3af;
    opacity: 1;
    font-weight: 400;
}

.jobbank-search-btn {
    background: linear-gradient(135deg, #0075fb, #005ce6) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 0 32px !important;
    height: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    min-width: 110px;
    box-shadow: 0 6px 16px rgba(0, 117, 251, 0.28);
    transition: all 0.3s ease;
}

.jobbank-search-btn:hover {
    background: linear-gradient(135deg, #005ce6, #0047cc) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 117, 251, 0.38);
}

/* Image Container - Fixed */
.jobbank-image-wrapper {
    position: relative;
    display: inline-block;
}

/*.jobbank-image-wrapper::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -20px;*/
/*    left: -20px;*/
/*    right: -20px;*/
/*    bottom: -20px;*/
/*    border: 8px solid #0075fb;*/
/*    border-radius: 30px;*/
/*    z-index: -1;*/
/*}*/

/*.jobbank-image-wrapper::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -25px;*/
/*    left: -25px;*/
/*    right: -25px;*/
/*    bottom: -25px;*/
/*    background: linear-gradient(45deg, #0075fb, #00a8ff);*/
/*    border-radius: 35px;*/
/*    z-index: -2;*/
/*    opacity: 0.1;*/
/*}*/

.jobbank-main-image {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 117, 251, 0.15);
    transition: transform 0.3s ease;
}

.jobbank-main-image:hover {
    transform: scale(1.02);
}

/* Stats Badge - Fixed */
.jobbank-stats-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    background: linear-gradient(135deg, #0075fb, #005ce6);
    color: #ffffff;
    padding: 48px 64px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 117, 251, 0.4);
    backdrop-filter: blur(10px);
}

.jobbank-stats-number {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ===== WORK SECTION - FIXED ===== */
.jobbank-work-section {
    background: #ffffff;
    padding: 0;
}

.jobbank-work-container {
    background: linear-gradient(135deg, #0075fb, #005ce6);
    margin: 0;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.jobbank-work-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.jobbank-work-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto;
}

.jobbank-work-steps {
    margin-top: 5rem;
    position: relative;
    z-index: 2;
    padding-top: 64px;
    counter-reset: step-counter;
}

.jobbank-work-step {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 32px 36px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: visible;
    margin-top: 28px;
}

.jobbank-work-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.jobbank-work-step::after {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -16px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: #0075fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9375rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.jobbank-step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.25;
}

.jobbank-step-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 0;
}

/* ===== BLOG SECTION - FIXED ===== */
.jobbank-blog-section {
    background: #ffffff;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.jobbank-blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.jobbank-blog-subtitle {
    font-size: 1.25rem;
    color: #666666;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

.jobbank-blog-cards {
    counter-reset: blog-counter;
}

.jobbank-blog-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 64px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.jobbank-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0075fb, #00a8ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.jobbank-blog-card:hover::before {
    transform: scaleX(1);
}

.jobbank-blog-card:hover {
    transform: translateY(-10px);
    border-color: #0075fb;
    box-shadow: 0 20px 50px rgba(0, 117, 251, 0.15);
}

.jobbank-blog-card::after {
    content: counter(blog-counter);
    counter-increment: blog-counter;
    position: absolute;
    top: 32px;
    right: 32px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0075fb, #005ce6);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 8px 25px rgba(0, 117, 251, 0.3);
}

.jobbank-blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.jobbank-blog-card-link {
    color: #1a1a1a !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    position: relative;
}

.jobbank-blog-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0075fb;
    transition: width 0.3s ease;
}

.jobbank-blog-card:hover .jobbank-blog-card-link {
    color: #0075fb !important;
}

.jobbank-blog-card:hover .jobbank-blog-card-link::after {
    width: 100%;
}

.jobbank-blog-card-description {
    color: #666666;
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.jobbank-read-more {
    display: inline-flex;
    align-items: center;
    color: #0075fb;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.jobbank-read-more:hover {
    color: #005ce6;
    transform: translateX(5px);
}

.jobbank-read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.jobbank-read-more:hover::after {
    transform: translateX(3px);
}

/* ===== BUSINESS SECTION - FIXED ===== */
.jobbank-business-section {
    background: linear-gradient(135deg, #0075fb, #005ce6);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.jobbank-business-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.jobbank-business-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
}

.jobbank-business-btn {
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
    border: none !important;
    color: #0075fb !important;
    border-radius: 50px !important;
    padding: 18px 35px !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.jobbank-business-btn:hover {
    background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
    color: #005ce6 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.jobbank-business-btn i {
    font-size: 1.25rem;
    margin-right: 10px !important;
}

.jobbank-business-img {
    position: relative;
    display: inline-block;
}

.jobbank-business-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    z-index: -1;
    backdrop-filter: blur(10px);
}

.jobbank-business-img::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    z-index: -2;
}

.jobbank-business-image {
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    width: 100%;
    height: auto;
}

.jobbank-business-image:hover {
    transform: scale(1.02) rotate(1deg);
}

.jobbank-business-stats {
    position: absolute;
    top: 64px;
    right: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    color: #ffffff;
    padding: 24px 48px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: jobbank-statsPulse 3s infinite;
}

.jobbank-business-stats .number {
    font-size: 1.5rem;
    display: block;
}

/* ===== ANIMATIONS - FIXED ===== */
@keyframes jobbank-statsPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes jobbank-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes jobbank-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes jobbank-slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN - FIXED ===== */
@media (max-width: 991px) {
    .jobbank-main-title,
    .jobbank-work-title,
    .jobbank-blog-title,
    .jobbank-business-title {
        font-size: 3rem;
    }

    .jobbank-main-section,
    .jobbank-work-container,
    .jobbank-blog-section,
    .jobbank-business-section {
        padding: 80px 0;
    }

    .jobbank-stats-badge,
    .jobbank-business-stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .jobbank-main-title,
    .jobbank-work-title,
    .jobbank-blog-title,
    .jobbank-business-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .jobbank-subtitle,
    .jobbank-work-description,
    .jobbank-blog-subtitle,
    .jobbank-business-description {
        text-align: center;
        font-size: 1.25rem;
    }

    .jobbank-search-form {
        justify-content: center;
        margin: 0 auto;
    }

    .jobbank-main-section,
    .jobbank-blog-section,
    .jobbank-business-section {
        padding: 64px 0;
    }

    .jobbank-work-container {
        padding: 48px 32px;
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .jobbank-main-title,
    .jobbank-work-title,
    .jobbank-blog-title,
    .jobbank-business-title {
        font-size: 2rem;
    }

    .jobbank-search-input {
        padding: 24px 48px !important;
        font-size: 1rem !important;
    }

    .jobbank-search-btn {
        padding: 24px 48px !important;
        min-width: 100px;
    }
}

/* ===== SECTION ANIMATIONS - FIXED ===== */
.jobbank-main-section {
    animation: jobbank-fadeIn 1s ease-out;
}

.jobbank-main-title {
    animation: jobbank-slideInLeft 1s ease-out 0.2s both;
}

.jobbank-subtitle {
    animation: jobbank-slideInLeft 1s ease-out 0.4s both;
}

.jobbank-search-form {
    animation: jobbank-slideInLeft 1s ease-out 0.6s both;
}

.jobbank-image-wrapper {
    animation: jobbank-slideInRight 1s ease-out 0.8s both;
}

.jobbank-work-step {
    animation: jobbank-slideInLeft 0.8s ease-out both;
}

.jobbank-work-step:nth-child(1) {
    animation-delay: 0.2s;
}

.jobbank-work-step:nth-child(2) {
    animation-delay: 0.4s;
}

.jobbank-work-step:nth-child(3) {
    animation-delay: 0.6s;
}

.jobbank-blog-card {
    animation: jobbank-slideInLeft 0.8s ease-out both;
}

.jobbank-blog-card:nth-child(1) {
    animation-delay: 0.2s;
}

.jobbank-blog-card:nth-child(2) {
    animation-delay: 0.4s;
}

.jobbank-blog-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* ===== TEST SECTION FOR UTILITY CLASSES ===== */
.test-utilities {
    padding: 50px 0;
    background: #f8f9fa;
}

.test-card {
    background: white;
    padding: 30px;
    margin: 20px 0;
}

/* ===== NEW BUSINESS SECTION - IMPROVED ===== */
.jobbank-business-section-new {
    background: linear-gradient(135deg, #0075fb 0%, #005ce6 60%, #0047cc 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Elements — disabled for cleaner look (was producing odd visual artefacts) */
.business-bg-element {
    display: none !important;
}

@keyframes businessFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Content Styling */
.jobbank-business-content-new {
    position: relative;
    z-index: 2;
}

.jobbank-business-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.jobbank-business-badge i {
    color: #ffd700;
    margin-right: 8px;
    font-size: 16px;
}

.jobbank-business-title-new {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.jobbank-business-title-new .highlight {
    color: #ffffff;
    position: relative;
    background: none;
    -webkit-text-fill-color: #ffffff;
    padding-bottom: 4px;
}

.jobbank-business-title-new .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.jobbank-business-description-new {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 500px;
}

/* Benefits List */
.jobbank-benefits {
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-item i {
    color: #ffffff;
    font-size: 14px;
    margin-right: 12px;
    background: rgba(74, 222, 128, 0.95);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(74, 222, 128, 0.4);
    stroke-width: 3;
}

/* CTA Buttons */
.jobbank-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.jobbank-business-btn-primary {
    background: linear-gradient(135deg, #ffffff, #f8f9fa) !important;
    border: none !important;
    color: #0075fb !important;
    border-radius: 50px !important;
    padding: 16px 32px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.jobbank-business-btn-primary:hover {
    background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
    color: #005ce6 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.jobbank-business-btn-secondary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 14px 30px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.jobbank-business-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Visual Section */
.jobbank-business-visual {
    position: relative;
    z-index: 2;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-icon i {
    font-size: 24px;
    color: #ffffff;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Stat Card Animations — calmed down: subtle, all in sync, no offset chaos */
.stat-card-1,
.stat-card-2,
.stat-card-3,
.stat-card-4 {
    animation: statFloatGentle 7s infinite ease-in-out;
}

.stat-card-2 { animation-delay: 1.5s; }
.stat-card-3 { animation-delay: 3s; }
.stat-card-4 { animation-delay: 4.5s; }

@keyframes statFloatGentle {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

/* Main Business Image */
.jobbank-business-main-image {
    position: relative;
    margin-top: 40px;
}

.main-business-img {
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    width: 100%;
    height: auto;
}

.main-business-img:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 117, 251, 0.1), rgba(0, 92, 230, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.success-badge {
    background: rgba(74, 222, 128, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.success-badge i {
    margin-right: 8px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .jobbank-business-title-new {
        font-size: 2.8rem;
    }

    .jobbank-business-section-new {
        padding: 80px 0;
        min-height: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .jobbank-business-title-new {
        font-size: 2.2rem;
        text-align: center;
    }

    .jobbank-business-description-new {
        text-align: center;
        font-size: 1.1rem;
    }

    .jobbank-business-section-new {
        padding: 60px 0;
    }

    .jobbank-cta-buttons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 30px;
    }

    .business-bg-element {
        display: none;
    }
}

@media (max-width: 576px) {
    .jobbank-business-title-new {
        font-size: 1.8rem;
    }

    .jobbank-business-btn-primary,
    .jobbank-business-btn-secondary {
        padding: 14px 24px !important;
        font-size: 1rem !important;
        width: 100%;
        justify-content: center;
    }

    .jobbank-cta-buttons {
        flex-direction: column;
    }
}

/* =====================================================================
   STAGE 2 — SCROLL ANIMATIONS, MICRO-INTERACTIONS, MOBILE STICKY CTA
   ===================================================================== */

/* AOS handles entrance for these on scroll. Drop the page-load keyframe
   so we don't get a double animation. Hero animations stay above-the-fold. */
.jobbank-work-step[data-aos],
.jobbank-blog-card[data-aos] {
    animation: none;
}

/* Smooth scroll for anchor jumps (e.g. #home links) */
html {
    scroll-behavior: smooth;
}

/* ---- Scroll progress indicator (top of page) ---- */
.jobbank-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #0075fb, #00a8ff);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ---- Live "ustalar onlayn" pill (hero area trust signal) ---- */
.jobbank-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.35);
    color: #15803d;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.jobbank-live-pill .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: jobbank-livePulse 1.6s infinite;
}

@keyframes jobbank-livePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ---- Magnetic / ripple primary buttons ---- */
.jobbank-search-btn,
.jobbank-business-btn-primary,
.jobbank-business-btn-secondary {
    position: relative;
    overflow: hidden;
}

.jobbank-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.55);
    pointer-events: none;
    animation: jobbank-rippleSpread 0.6s ease-out forwards;
}

@keyframes jobbank-rippleSpread {
    to {
        transform: scale(2.6);
        opacity: 0;
    }
}

/* ---- Category card 3D tilt + shine ---- */
.category-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        transparent 30%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 70%
    );
    transform: translateX(-110%);
    transition: transform 0.7s ease;
    z-index: 2;
    pointer-events: none;
}

.category-card:hover::after {
    transform: translateX(110%);
}

.category-card:hover .view-btn {
    opacity: 1 !important;
}

/* ---- Stat cards: keep float, layer countup ---- */
.stat-content h3 .stat-num {
    display: inline-block;
}

/* ---- Mobile sticky bottom CTA ---- */
.jobbank-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 117, 251, 0.15);
    border-radius: 18px;
    padding: 10px 12px;
    z-index: 1040;
    display: none;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(140%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jobbank-mobile-cta.is-visible {
    transform: translateY(0);
}

.jobbank-mobile-cta.is-hidden {
    transform: translateY(140%);
}

.jobbank-mobile-cta .mc-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: none;
    background: #f0f4ff;
    color: #0075fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.jobbank-mobile-cta .mc-icon-btn:active {
    transform: scale(0.92);
    background: #e3edff;
}

.jobbank-mobile-cta .mc-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0075fb, #005ce6);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 117, 251, 0.35);
    transition: transform 0.2s ease;
}

.jobbank-mobile-cta .mc-main:active {
    transform: scale(0.97);
    color: #ffffff;
}

@media (max-width: 767.98px) {
    .jobbank-mobile-cta {
        display: grid;
    }
    /* Add bottom padding so sticky CTA never overlaps last section */
    body.has-mobile-cta {
        padding-bottom: 80px;
    }
}

/* ---- Mobile hero: tighter typography + soft gradient ---- */
@media (max-width: 767.98px) {
    .hero-section {
        background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
        padding: 0 0 16px;
        border-radius: 0 0 24px 24px;
    }

    .hero-section .hero-content {
        max-width: 100%;
        margin: 0;
        overflow: hidden;
    }

    .banner-img-mobile {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
        display: block;
        -webkit-mask-image: none;
        mask-image: none;
        animation: none;
    }

    .mobile-filter-bar .form-control {
        border-radius: 14px;
        padding: 12px 16px;
        border: 1.5px solid #e3edff;
        font-size: 0.95rem;
    }

    .mobile-filter-bar .btn-outline-secondary {
        border-radius: 14px;
        border: 1.5px solid #e3edff;
        background: #f0f4ff;
        color: #0075fb;
    }
}

@keyframes jobbank-floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Category section header — visual identity now provided by .jobbank-section-label */

/* ---- Reduced motion respect ---- */
@media (prefers-reduced-motion: reduce) {
    .stat-card-1,
    .stat-card-2,
    .stat-card-3,
    .stat-card-4,
    .business-bg-element,
    .banner-img-mobile,
    .jobbank-live-pill .live-dot {
        animation: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* =====================================================================
   STAGE 3 — IDEAL DESKTOP: HERO++, TRUST, WHY-US, TESTIMONIALS, CTA
   ===================================================================== */

/* ---- Hero slogan polish ---- */
.jobbank-slogan {
    background: linear-gradient(135deg, #1a1a1a 0%, #0075fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Popular search chips ---- */
.jobbank-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.jobbank-chips .chips-label {
    color: #9ca3af;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-right: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.jobbank-chips .chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.jobbank-chips .chip i {
    font-size: 15px;
    color: #0075fb;
}

.jobbank-chips .chip:hover {
    transform: translateY(-2px);
    border-color: #0075fb;
    background: #0075fb;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 117, 251, 0.25);
}

.jobbank-chips .chip:hover i {
    color: #ffffff;
}

/* ---- Hero quick-stat row ---- */
.jobbank-hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #f0f4ff;
    flex-wrap: wrap;
}

.jobbank-hero-stats .hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.jobbank-hero-stats .hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #f0f4ff;
}

.jobbank-hero-stats .hero-stat i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f0f7ff, #e3edff);
    color: #0075fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.jobbank-hero-stats .hero-stat strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.05;
}

.jobbank-hero-stats .hero-stat span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* ---- Hero image wrapper + floating cards ---- */
.jobbank-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.jobbank-main-image {
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(0, 117, 251, 0.16);
    max-height: 440px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jobbank-main-image:hover {
    transform: scale(1.015);
}

.jobbank-float-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
    z-index: 2;
    animation: jobbank-floatCard 5s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.jfc-rating {
    top: 32px;
    left: -18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 0s;
}

.jfc-rating .jfc-rating-stars {
    color: #f59e0b;
    font-size: 14px;
    line-height: 1;
}

.jfc-rating-meta strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.jfc-rating-meta span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.jfc-booked {
    bottom: 32px;
    left: -28px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 1.5s;
}

.jfc-booked-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.jfc-booked-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.jfc-booked-text span {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.jfc-avatars {
    top: 24px;
    right: -16px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation-delay: 3s;
    padding: 8px 12px 8px 8px;
}

.jfc-avatar-stack {
    display: flex;
}

.jfc-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    margin-left: -8px;
}

.jfc-avatar:first-child {
    margin-left: 0;
}

.jfc-avatar-more {
    background: #0075fb !important;
    color: #ffffff !important;
    font-size: 0.625rem !important;
}

.jfc-avatar-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #15803d;
    padding-left: 4px;
    border-left: 1px solid #e5e7eb;
}

.jfc-avatar-label .live-dot {
    width: 6px;
    height: 6px;
}

@keyframes jobbank-floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---- Trust strip ---- */
.jobbank-trust-strip {
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    padding: 48px 0;
    border-top: 1px solid #f0f4ff;
    border-bottom: 1px solid #f0f4ff;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 4px;
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.trust-icon-blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
}

.trust-icon-green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
}

.trust-icon-orange {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
    color: #c2410c;
}

.trust-icon-purple {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #6d28d9;
}

.trust-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2px;
}

.trust-text span {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
}

/* ---- Shared section label + title ---- */
.jobbank-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 117, 251, 0.08);
    color: #0075fb;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jobbank-section-label i {
    font-size: 14px;
}

.jobbank-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

/* Light variant — for blue/dark section backgrounds */
.jobbank-section-label-light {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
}

/* Subtitle below the big section title */
.jobbank-section-subtitle {
    font-size: 1.0625rem;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Why Us section ---- */
.jobbank-why-section {
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    padding: 96px 0;
}

.why-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    border: 1.5px solid #f0f4ff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0075fb, #00a8ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 40px rgba(0, 117, 251, 0.12);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(-5deg);
}

.why-icon-blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #1d4ed8; }
.why-icon-green { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; }
.why-icon-orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); color: #c2410c; }
.why-icon-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #6d28d9; }

.why-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
}

/* ---- Work step icons ---- */
.jobbank-work-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
    backdrop-filter: blur(8px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.jobbank-work-step:hover .jobbank-work-step-icon {
    transform: scale(1.08) rotate(-5deg);
}

/* ---- Blog cards: gradient covers + tags + meta ---- */
.jobbank-blog-card {
    padding: 0 !important;
    overflow: hidden;
}

.blog-card-cover {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.blog-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.blog-cover-1 { background: linear-gradient(135deg, #0ea5e9, #0075fb); }
.blog-cover-2 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.blog-cover-3 { background: linear-gradient(135deg, #10b981, #14b8a6); }

.blog-card-body {
    padding: 28px 30px 24px;
}

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.blog-tag-1 { background: rgba(14, 165, 233, 0.12); color: #0075fb; }
.blog-tag-2 { background: rgba(239, 68, 68, 0.12); color: #dc2626; }
.blog-tag-3 { background: rgba(16, 185, 129, 0.12); color: #059669; }

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f4ff;
}

.blog-card-meta > span {
    display: inline-flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.8125rem;
    font-weight: 500;
}

.blog-card-meta .jobbank-read-more {
    margin-top: 0;
    font-size: 0.875rem;
}

/* Blog card title size override (inside new body) */
.jobbank-blog-card .jobbank-blog-card-title {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.jobbank-blog-card .jobbank-blog-card-description {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Override blog card hover top-stripe (the cover already has color) */
.jobbank-blog-card::before {
    display: none;
}

/* ---- Testimonials section ---- */
.jobbank-testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    padding: 96px 0;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    border: 1.5px solid #f0f4ff;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 80px;
    line-height: 1;
    color: rgba(0, 117, 251, 0.08);
    font-family: Georgia, serif;
    font-weight: 700;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: #bfdbfe;
    box-shadow: 0 20px 40px rgba(0, 117, 251, 0.1);
}

.testimonial-card-featured {
    background: linear-gradient(135deg, #0075fb, #005ce6);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 117, 251, 0.3);
    transform: translateY(-12px);
}

.testimonial-card-featured::before {
    color: rgba(255, 255, 255, 0.18);
}

.testimonial-card-featured:hover {
    transform: translateY(-18px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1;
}

.testimonial-card-featured .testimonial-stars {
    color: #fde68a;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card-featured .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid #f0f4ff;
}

.testimonial-card-featured .testimonial-author {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.testimonial-card-featured .testimonial-author strong {
    color: #ffffff;
}

.testimonial-author span {
    display: block;
    font-size: 0.8125rem;
    color: #6b7280;
}

.testimonial-card-featured .testimonial-author span {
    color: rgba(255, 255, 255, 0.8);
}

/* ---- Final CTA banner ---- */
.jobbank-final-cta {
    padding: 64px 0 96px;
    background: #ffffff;
}

.final-cta-card {
    position: relative;
    background: linear-gradient(135deg, #0075fb 0%, #005ce6 50%, #4338ca 100%);
    border-radius: 28px;
    padding: 52px 56px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 117, 251, 0.3);
}

.final-cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.final-cta-shape-1 {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -80px;
    animation: jobbank-floatCard 8s ease-in-out infinite;
}

.final-cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -60px;
    animation: jobbank-floatCard 9s ease-in-out infinite reverse;
}

.final-cta-card h2 {
    font-size: 2.125rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.final-cta-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
    line-height: 1.55;
}

.final-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0075fb;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    margin-right: 8px;
}

.final-cta-btn-primary:hover {
    transform: translateY(-3px);
    color: #005ce6;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.final-cta-btn-primary i {
    font-size: 18px;
}

.final-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
}

.final-cta-btn-secondary:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ---- Hero responsive: smaller floating cards on tablet ---- */
@media (max-width: 1199.98px) {
    .jfc-rating { top: 16px; left: -8px; padding: 10px 14px; }
    .jfc-booked { bottom: 16px; left: -16px; padding: 10px 14px; }
    .jfc-avatars { top: 12px; right: -8px; padding: 8px 12px; }
    .jfc-rating-meta strong { font-size: 0.875rem; }
    .jfc-rating-meta span { font-size: 0.6875rem; }
}

@media (max-width: 991.98px) {
    .jobbank-hero-stats { gap: 18px; }
    .jobbank-hero-stats .hero-stat strong { font-size: 1.0625rem; }
    .jobbank-hero-stats .hero-stat span { font-size: 0.75rem; }
    .final-cta-card { padding: 48px 36px; }
    .final-cta-card h2 { font-size: 1.875rem; }
    .jobbank-section-title { font-size: 2rem; }
}
