/* ============ RESET & FOUNDATION ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - MATCHING ABOUT PAGE */
    --primary-blue: #1e40af;
    --primary-navy: #1e293b;
    --primary-indigo: #4f46e5;
    
    /* Accent Colors */
    --accent-cyan: #0891b2;
    --accent-emerald: #059669;
    --accent-violet: #7c3aed;
    
    /* Neutral Colors */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #4f46e5 100%);
    --gradient-accent: linear-gradient(135deg, #0891b2 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --gradient-surface: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Typography - EXACT MATCH TO ABOUT PAGE */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Georgia', serif;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #fefbf3 0%, #fff8f0 25%, #fef2f2 50%, #fce7f3 75%, #f3e8ff 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: #2d3748;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HERO SECTION - PERFECT RESPONSIVE ============ */
.hero {
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Background Image */
.hero-bg-image {
    position: absolute;
    top: -50px;
    left: -110px;
    width: 700px;
    height: 500px;
    z-index: -1;
    opacity: 0.4;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) contrast(250%) brightness(0.2);
}

.innovation-tag {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.innovation-text {
    color: #e74c3c;
    font-size: clamp(11px, 2vw, 13px);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Title line with UNITED FINS and Automation */
.hero-title-line {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    flex: 0 0 auto;
    position: relative;
}

/* UNITED FINS with Georgia font */
.main-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 54px);
    font-weight: 900;
    background: linear-gradient(90deg, #2d1b69 0%, #3b499b 30%, #4a5bb5 70%, #5a6bc5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 10px;
}

/* Scribble underline */
.scribble-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 25px;
}

.scribble-svg {
    width: 100%;
    height: 100%;
}

.divider {
    font-size: clamp(28px, 6vw, 54px);
    font-weight: 300;
    color: #3b499b;
    line-height: 1;
    margin: 0 10px;
}

.automation-title-section {
    flex: 0 0 auto;
}

.automation-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 900;
    color: #e74c3c;
    letter-spacing: 1.5px;
    line-height: 1.1;
    transition: all 0.5s ease;
}

.hero-description {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero-description p {
    color: #444444;
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.7;
    font-weight: 500;
    max-width: 480px;
}

.btn-find-more {
    background: #a8d5aa;
    color: white;
    border: none;
    padding: clamp(12px, 3vw, 15px) clamp(28px, 5vw, 35px);
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(14px, 3vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 213, 170, 0.3);
    position: relative;
    z-index: 2;
    align-self: flex-start;
}

.btn-find-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 213, 170, 0.4);
}

/* Hero Right Section */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    margin-top: 0;
    z-index: 1;
}

.automation-section {
    text-align: center;
    position: relative;
}

.automation-image {
    position: relative;
    display: inline-block;
    z-index: 5;
}

/* Optimized image size */
.farm-image {
    width: 100%;
    max-width: clamp(280px, 50vw, 450px);
    height: auto;
    position: relative;
    z-index: 5;
    transition: all 0.8s ease;
    opacity: 1;
}

/* Fade effects */
.farm-image.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.farm-image.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Background Decorative Elements */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dots-pattern-right {
    position: absolute;
    bottom: 50px;
    right: 20px;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    opacity: 0.6;
}

.dots-img-right {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dots-pattern-bottom {
    position: absolute;
    bottom: 30px;
    right: clamp(200px, 40vw, 400px);
    width: clamp(60px, 12vw, 100px);
    height: clamp(60px, 12vw, 100px);
    opacity: 0.5;
}

.dots-img-bottom {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* AOS Custom Animations */
[data-aos="slide-up-fade"] {
    transform: translateY(100px);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos="slide-up-fade"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* ============ JOB OPPORTUNITIES SECTION - PERFECT RESPONSIVE ============ */
.job-opportunities-section {
    position: relative;
    min-height: 90vh;
    background: #fafafa;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(40px, 8vw, 60px) 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 10vw, 80px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.left-content {
    max-width: 100%;
}

.main-heading {
    margin-bottom: clamp(20px, 4vw, 25px);
}

.title {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.number-highlight {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: clamp(10px, 3vw, 15px) 0;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.description {
    margin-bottom: clamp(25px, 5vw, 30px);
}

.desc-text {
    font-size: clamp(14px, 3vw, 16px);
    color: #444444;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 500;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.tag-label {
    font-size: clamp(10px, 2vw, 12px);
    color: #666666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-right: 10px;
}

.tag {
    background: #a8d5aa;
    color: white;
    padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
    border-radius: 50px;
    font-size: clamp(11px, 2vw, 13px);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 213, 170, 0.3);
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 213, 170, 0.4);
}

.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: clamp(300px, 50vw, 450px);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-illustration {
    width: 100%;
    height: auto;
    max-height: clamp(350px, 50vw, 450px);
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.2));
    transition: transform 0.3s ease;
}

.main-illustration:hover {
    transform: scale(1.05);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    top: 65%;
    left: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: clamp(50px, 9vw, 60px);
    height: clamp(50px, 9vw, 60px);
    bottom: 25%;
    right: 25%;
    animation-delay: 4s;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    animation: rotate 8s linear infinite;
}

.shape-1 {
    width: clamp(25px, 4vw, 30px);
    height: clamp(25px, 4vw, 30px);
    top: 35%;
    left: 20%;
    transform: rotate(45deg);
    border-radius: 8px;
}

.shape-2 {
    width: clamp(18px, 3vw, 20px);
    height: clamp(18px, 3vw, 20px);
    bottom: 45%;
    left: 80%;
    border-radius: 4px;
    animation-delay: 3s;
}

/* ============ WHO WE ARE SECTION - PERFECT RESPONSIVE ============ */
.who-we-are-section {
    position: relative;
    background: #5e7eff;
    padding: clamp(40px, 8vw, 60px) 0;
    overflow: hidden;
    min-height: 90vh;
}

.who-we-are-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="600" r="400" fill="url(%23a)"/><circle cx="600" cy="100" r="200" fill="url(%23a)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.section-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 10vw, 80px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.company-story {
    color: white;
}

.section-header {
    margin-bottom: clamp(30px, 5vw, 40px);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
    border-radius: 50px;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promise-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: clamp(25px, 5vw, 30px);
    margin: clamp(20px, 4vw, 25px) 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.promise-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 800;
    margin-bottom: 10px;
}

.promise-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    opacity: 0.9;
    margin-bottom: clamp(12px, 3vw, 15px);
    font-weight: 800;
}

.company-description {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.8;
    opacity: 0.95;
    margin: clamp(18px, 4vw, 20px) 0;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 3vw, 15px);
    margin-top: clamp(25px, 5vw, 30px);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: clamp(12px, 3vw, 15px);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 28px);
    font-weight: 800;
    display: block;
    margin-bottom: clamp(4px, 1vw, 6px);
}

.stat-label {
    font-size: clamp(10px, 2vw, 12px);
    opacity: 0.9;
    font-weight: 500;
}

/* Culture Card */
.culture-section {
    background: white;
    border-radius: 20px;
    padding: clamp(25px, 5vw, 30px);
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
    max-height: none;
}

.culture-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #5093d1;
}

.culture-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: clamp(20px, 4vw, 25px);
    position: relative;
}

.culture-title::after {
    content: '';
    position: absolute;
    bottom: clamp(-6px, -2vw, -8px);
    left: 0;
    width: clamp(40px, 8vw, 50px);
    height: clamp(2px, 0.5vw, 3px);
    background: #5093d1;
    border-radius: 2px;
}

.culture-points {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 15px);
}

.culture-point {
    display: flex;
    gap: clamp(12px, 3vw, 15px);
    align-items: flex-start;
    padding: clamp(12px, 3vw, 15px);
    background: white;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.culture-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.05), transparent);
    transition: left 0.6s ease;
}

.culture-point:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: #5093d1;
}

.culture-point:hover::before {
    left: 100%;
}

.culture-icon {
    flex-shrink: 0;
    width: clamp(40px, 8vw, 48px);
    height: clamp(40px, 8vw, 48px);
    border-radius: clamp(10px, 2vw, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 4vw, 20px);
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.culture-icon.global {
    background: var(--gradient-primary);
}

.culture-icon.balance {
    background: var(--gradient-purple);
}

.culture-icon.growth {
    background: var(--gradient-accent);
}

.culture-content {
    flex: 1;
}

.culture-content p {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.6;
    color: #444444;
    margin: 0;
    font-weight: 500;
}

.company-highlight {
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
}

/* ============ CAREERS SECTION - PERFECT RESPONSIVE ============ */
.careers-section {
    background: white;
    padding: clamp(40px, 8vw, 60px) 0;
    position: relative;
    min-height: 90vh;
}

.careers-header {
    text-align: center;
    margin-bottom: clamp(35px, 6vw, 40px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.careers-intro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8bbd0;
    color: #1a1a1a;
    padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
    border-radius: 50px;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 700;
    margin-bottom: clamp(12px, 3vw, 15px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.careers-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: clamp(12px, 3vw, 15px);
    line-height: 1.2;
}

.company-brand {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(32px, 6vw, 54px);
    font-weight: 900;
    display: block;
    margin: clamp(6px, 2vw, 8px) 0;
}

.job-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #a8d5aa;
    color: white;
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
    border-radius: 25px;
    font-weight: 600;
    font-size: clamp(13px, 3vw, 15px);
    margin-top: clamp(12px, 3vw, 15px);
    transition: all 0.3s ease;
}

.job-count-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.job-count-badge::before {
    content: '💼';
    font-size: clamp(16px, 3vw, 18px);
}

/* Search & Filter */
.search-filter-container {
    background: white;
    border-radius: 20px;
    padding: clamp(25px, 5vw, 30px);
    margin-bottom: clamp(35px, 6vw, 40px);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--neutral-200);
}

.search-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 25px);
    max-width: 1000px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: var(--neutral-50);
    border: 2px solid var(--neutral-200);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.search-input {
    flex: 1;
    padding: clamp(14px, 3vw, 16px) clamp(18px, 4vw, 20px);
    border: none;
    outline: none;
    font-size: clamp(14px, 3vw, 16px);
    background: transparent;
    color: var(--neutral-800);
    font-weight: 500;
}

.search-input::placeholder {
    color: var(--neutral-400);
}

.search-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: clamp(14px, 3vw, 16px) clamp(18px, 4vw, 20px);
    cursor: pointer;
    font-size: clamp(16px, 3vw, 18px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 12px);
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    padding: clamp(6px, 2vw, 8px) 0;
}

.filter-chip {
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 20px);
    background: var(--neutral-100);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    color: var(--neutral-600);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: clamp(11px, 2vw, 13px);
}

.filter-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-chip:hover,
.filter-chip.active {
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-chip:hover::before,
.filter-chip.active::before {
    left: 0;
}

/* Results Section */
.results-container {
    margin-bottom: clamp(35px, 6vw, 40px);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(20px, 4vw, 25px);
    padding: 0 20px;
    flex-wrap: wrap;
    gap: clamp(12px, 3vw, 15px);
}

.results-count {
    font-family: var(--font-display);
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    color: #1a1a1a;
}

.sort-controls {
    position: relative;
}

.sort-select {
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    padding: clamp(10px, 2vw, 12px) clamp(35px, 6vw, 40px) clamp(10px, 2vw, 12px) clamp(14px, 3vw, 16px);
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 500;
    color: var(--neutral-700);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    min-width: clamp(160px, 30vw, 180px);
}

.sort-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.sort-controls::after {
    content: '▼';
    position: absolute;
    right: clamp(12px, 3vw, 16px);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--neutral-400);
    font-size: clamp(10px, 2vw, 12px);
}

/* Job Cards */
.jobs-grid {
    display: grid;
    gap: clamp(20px, 4vw, 25px);
}

.job-card {
    background: white;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    padding: clamp(20px, 4vw, 25px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: clamp(15px, 3vw, 18px);
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 12px);
}

.job-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: clamp(8px, 2vw, 10px);
    line-height: 1.3;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.job-title:hover {
    color: var(--primary-blue);
}

.job-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 25vw, 180px), 1fr));
    gap: clamp(10px, 2vw, 12px);
    margin-bottom: clamp(10px, 2vw, 12px);
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(11px, 2vw, 13px);
    color: #444444;
    font-weight: 500;
}

.job-meta-item i {
    color: var(--primary-blue);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.job-description {
    color: #444444;
    line-height: 1.6;
    margin-bottom: clamp(15px, 3vw, 18px);
    font-size: clamp(13px, 3vw, 15px);
    font-weight: 500;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 12px);
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.job-tag {
    background: var(--neutral-100);
    color: var(--neutral-600);
    padding: clamp(3px, 1vw, 4px) clamp(10px, 2vw, 12px);
    border-radius: 25px;
    font-size: clamp(10px, 2vw, 12px);
    font-weight: 500;
    transition: all 0.3s ease;
}

.job-tag:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-1px);
}

.job-actions {
    display: flex;
    gap: clamp(8px, 2vw, 10px);
    flex-wrap: wrap;
}

.btn-view-details {
    background: var(--neutral-100);
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
    padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 18px);
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(11px, 2vw, 13px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: clamp(5px, 1vw, 6px);
    white-space: nowrap;
}

.btn-view-details:hover {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-apply {
    background: #a8d5aa;
    color: white;
    border: none;
    padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 18px);
    border-radius: 12px;
    font-weight: 600;
    font-size: clamp(11px, 2vw, 13px);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: clamp(5px, 1vw, 6px);
    white-space: nowrap;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #95c497;
}

/* ============ JOB TOOLTIP - RESPONSIVE ============ */
.job-tooltip {
    position: absolute;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: 1rem;
    padding: clamp(1.2rem, 3vw, 1.5rem);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    max-width: clamp(280px, 50vw, 350px);
    min-width: clamp(250px, 45vw, 300px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.job-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-content {
    position: relative;
}

.tooltip-header {
    border-bottom: 1px solid var(--neutral-200);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.tooltip-title {
    font-size: clamp(1rem, 3vw, 1.125rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tooltip-company {
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--primary-blue);
    font-weight: 600;
}

.tooltip-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tooltip-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    color: var(--neutral-600);
}

.tooltip-meta-item i {
    color: var(--primary-blue);
    width: 12px;
    text-align: center;
}

.tooltip-description {
    color: var(--neutral-600);
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tooltip-actions {
    display: flex;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-200);
}

.tooltip-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.tooltip-btn-view {
    background: var(--neutral-100);
    color: var(--neutral-700);
    border: 1px solid var(--neutral-300);
}

.tooltip-btn-view:hover {
    background: var(--gradient-accent);
    color: white;
    border-color: var(--accent-cyan);
}

.tooltip-btn-apply {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid transparent;
}

.tooltip-btn-apply:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Tooltip arrows */
.job-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.job-tooltip::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid var(--neutral-200);
}

/* ============ JOB DETAILS MODAL - RESPONSIVE ============ */
.job-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 2000;
    overflow-y: auto;
    padding: clamp(15px, 4vw, 20px);
}

.job-details-modal .modal-content {
    background: white;
    border-radius: clamp(1.5rem, 4vw, 2rem);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-2xl);
    margin: clamp(20px, 5vw, 40px) 0;
    position: relative;
}

.job-details-modal .modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
    border-radius: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-details-modal .modal-body {
    padding: clamp(2rem, 5vw, 3rem);
}

.job-details-content {
    display: grid;
    gap: 2rem;
}

.job-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--neutral-200);
}

.job-main-info h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.job-company {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.job-full-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
    color: var(--neutral-700);
}

.job-sidebar {
    background: var(--neutral-50);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 1rem;
    border: 1px solid var(--neutral-200);
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--neutral-200);
}

.job-detail-item:last-child {
    border-bottom: none;
}

.job-detail-icon {
    color: var(--primary-blue);
    font-size: clamp(1rem, 3vw, 1.125rem);
    width: 20px;
    text-align: center;
}

.job-detail-content {
    flex: 1;
}

.job-detail-label {
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    color: var(--neutral-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.job-detail-value {
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    color: var(--neutral-800);
    font-weight: 500;
}

.job-requirements,
.job-benefits {
    padding-top: 2rem;
}

.job-section-title {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-section-title i {
    color: var(--primary-blue);
}

.job-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.job-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--neutral-50);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.job-list-item:hover {
    background: var(--gradient-surface);
    transform: translateX(4px);
}

.job-list-icon {
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.job-list-text {
    font-size: clamp(0.8rem, 2vw, 0.875rem);
    line-height: 1.6;
    color: var(--neutral-700);
}

.modal-footer {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
    border-top: 1px solid var(--neutral-200);
    display: flex;
    justify-content: center;
    background: var(--neutral-50);
    border-radius: 0 0 clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem);
}

.btn-apply-from-details {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(2rem, 5vw, 3rem);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-apply-from-details:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Application Modal - Updated for Responsive */
.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000;
    overflow-y: auto;
    padding: clamp(15px, 4vw, 20px);
}

.modal-content {
    background: white;
    border-radius: clamp(15px, 4vw, 20px);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin: clamp(20px, 5vw, 40px) 0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(25px, 5vw, 30px) clamp(30px, 6vw, 40px);
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: clamp(15px, 4vw, 20px) clamp(15px, 4vw, 20px) 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: clamp(1.8rem, 4vw, 2rem);
    cursor: pointer;
    padding: 0;
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: clamp(30px, 6vw, 40px);
}

/* Application Form - Updated for Responsive */
.application-form {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 6vw, 40px);
}

.form-section {
    border: 1px solid #f1f5f9;
    border-radius: clamp(10px, 2vw, 12px);
    padding: clamp(25px, 5vw, 30px);
    background: #fafbfc;
}

.form-section h3 {
    margin: 0 0 clamp(20px, 4vw, 25px) 0;
    font-size: clamp(1.2rem, 3vw, 1.3rem);
    color: #1e293b;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3::before {
    content: '';
    width: 4px;
    height: clamp(18px, 4vw, 20px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 40vw, 250px), 1fr));
    gap: clamp(15px, 3vw, 20px);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    padding: clamp(10px, 2vw, 12px) clamp(14px, 3vw, 16px);
    border: 2px solid #e2e8f0;
    border-radius: clamp(6px, 2vw, 8px);
    font-size: clamp(0.9rem, 2vw, 1rem);
    outline: none;
    transition: border-color 0.3s ease;
    background: white;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-grid textarea {
    resize: vertical;
    min-height: clamp(80px, 15vw, 100px);
}

/* Resume Upload - Updated for Responsive */
.resume-upload {
    text-align: center;
    padding: clamp(30px, 6vw, 40px);
    border: 2px dashed #cbd5e1;
    border-radius: clamp(10px, 2vw, 12px);
    background: #f8fafc;
    transition: all 0.3s ease;
}

.resume-upload:hover {
    border-color: #667eea;
    background: #f0f7ff;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #64748b;
    font-weight: 600;
}

.upload-label i {
    font-size: clamp(1.8rem, 4vw, 2rem);
    color: #667eea;
}

.upload-label input[type="file"] {
    display: none;
}

/* Experience Section - Updated for Responsive */
.experience-item {
    background: white;
    padding: clamp(20px, 4vw, 25px);
    border-radius: clamp(6px, 2vw, 8px);
    border: 1px solid #e2e8f0;
    margin-bottom: clamp(15px, 3vw, 20px);
}

.add-experience-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
    border-radius: clamp(6px, 2vw, 8px);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.add-experience-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Checkbox Group - Updated for Responsive */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 12px);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #475569;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Upload Section - Updated for Responsive */
.upload-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(150px, 30vw, 200px), 1fr));
    gap: clamp(15px, 3vw, 20px);
}

.upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(12px, 3vw, 15px) clamp(18px, 4vw, 20px);
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: clamp(6px, 2vw, 8px);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.upload-btn:hover {
    border-color: #667eea;
    background: #f0f7ff;
    color: #667eea;
}

/* Consent Section - Updated for Responsive */
.consent-section {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 15px);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 2vw, 12px);
    cursor: pointer;
    color: #475569;
    line-height: 1.5;
    position: relative;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.consent-label input[type="checkbox"] {
    margin: 0;
    transform: scale(clamp(1.1, 2vw, 1.2));
    accent-color: #667eea;
}

/* Form Actions - Updated for Responsive */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: clamp(15px, 3vw, 20px);
    padding-top: clamp(15px, 3vw, 20px);
    border-top: 1px solid #f1f5f9;
}

.btn-cancel {
    background: #f8fafc;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: clamp(12px, 3vw, 15px) clamp(25px, 5vw, 30px);
    border-radius: clamp(6px, 2vw, 8px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-cancel:hover {
    background: #f1f5f9;
    color: #475569;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: clamp(12px, 3vw, 15px) clamp(25px, 5vw, 30px);
    border-radius: clamp(6px, 2vw, 8px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* No Results - Updated for Responsive */
.no-results {
    text-align: center;
    padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2rem);
    color: var(--neutral-500);
}

.no-results-icon {
    font-size: clamp(3rem, 6vw, 4rem);
    color: var(--neutral-300);
    margin-bottom: clamp(1.2rem, 3vw, 1.5rem);
}

.no-results h3 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
}

/* ============ CAREERS SECTION WITH PROPER IMAGE POSITIONING ============ */
.careers-section {
    background: linear-gradient(135deg, #fefbf3 0%, #fff8f0 25%, #fef2f2 50%, #fce7f3 75%, #f3e8ff 100%);
    padding: clamp(40px, 8vw, 60px) 0;
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

/* Background Circle Gradients */
.careers-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatCircle 8s ease-in-out infinite alternate;
}

.gradient-circle-1 {
    width: clamp(200px, 25vw, 400px);
    height: clamp(200px, 25vw, 400px);
    background: radial-gradient(circle, rgba(168, 213, 170, 0.3) 0%, rgba(168, 213, 170, 0.1) 70%, transparent 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.gradient-circle-2 {
    width: clamp(300px, 35vw, 600px);
    height: clamp(300px, 35vw, 600px);
    background: radial-gradient(circle, rgba(248, 187, 208, 0.4) 0%, rgba(248, 187, 208, 0.15) 60%, transparent 100%);
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.gradient-circle-3 {
    width: clamp(250px, 30vw, 500px);
    height: clamp(250px, 30vw, 500px);
    background: radial-gradient(circle, rgba(80, 147, 209, 0.25) 0%, rgba(80, 147, 209, 0.1) 65%, transparent 100%);
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}
/* ============ LEFT ELLIPSE - MOVED MORE LEFT AND UP ============ */
.careers-left-images {
    position: absolute;
    left: -30px; /* MOVED MORE TO THE LEFT (was 0) */
    top: clamp(10px, 2vh, 30px); /* MOVED HIGHER UP (was 20px) */
    z-index: 2;
}

.left-ellipse {
    position: relative;
}

.career-ellipse-img {
    width: clamp(150px, 20vw, 250px);
    height: clamp(150px, 20vw, 250px);
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    /* Clean style - no background, shadow, or border */
    background: none;
    box-shadow: none;
    border-radius: 0;
}

/* ============ PEEKING CHARACTER - MOVED UP AND MORE LEFT ============ */
.careers-peek-character {
    position: absolute;
    left: clamp(80px, 12vw, 180px); /* MOVED MORE LEFT (was 150px, 20vw, 250px) */
    top: clamp(120px, 18vh, 200px); /* MOVED HIGHER UP (was 200px, 25vh, 280px) */
    z-index: 10; /* High z-index to appear above container */
}

.peek-image {
    position: relative;
}

.career-peek-img {
    width: clamp(180px, 25vw, 300px); /* Same size as before */
    height: auto;
    object-fit: contain;
    /* Clean style - no background, shadow, or border */
    background: none;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.career-peek-img:hover {
    transform: scale(1.05) translateY(-5px);
}

/* ============ RIGHT IMAGES - REDUCED SIZE AND MOVED UP ============ */
.careers-right-images {
    position: absolute;
    right: clamp(20px, 3vw, 40px);
    top: clamp(20px, 4vh, 60px); /* MOVED HIGHER UP (was 60px, 8vh, 100px) */
    z-index: 2;
}

.right-image-1 {
    position: relative;
    /* No container constraints - image shows full size */
}

/* Career Decoration Images - REDUCED SIZE */
.career-decoration-img {
    /* REDUCED SIZE - smaller than before */
    width: clamp(180px, 22vw, 320px); /* REDUCED (was 220px, 28vw, 400px) */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Show full image without cropping */
    transition: all 0.3s ease;
    /* COMPLETELY CLEAN - NO BACKGROUND, SHADOW, BORDER, OR CROPPING */
    background: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    overflow: visible; /* Don't clip any part of the image */
}

.career-decoration-img:hover {
    transform: scale(1.05);
}

/* Container Adjustments - Proper spacing for all images */
.careers-section .container {
    position: relative;
    z-index: 5; /* Lower than peek character */
    padding-top: clamp(30px, 5vh, 50px);
}

.careers-header {
    text-align: center;
    margin-bottom: clamp(35px, 6vw, 40px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 6;
}

/* Search Filter Container - Ensure peek character appears over it */
.search-filter-container {
    position: relative;
    z-index: 5; /* Lower than peek character */
}

/* Enhanced Background with Subtle Pattern */
.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,0,0,0.01)"/><circle cx="20" cy="80" r="0.5" fill="rgba(0,0,0,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

/* Animation Keyframes */
@keyframes floatCircle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translate(clamp(-10px, -2vw, -20px), clamp(-15px, -3vw, -30px)) scale(1.1);
        opacity: 0.5;
    }
}

/* ============ PROFESSIONAL RESPONSIVE DESIGN - UPDATED ============ */

/* Large Desktop Screens (1400px+) */
@media (min-width: 1400px) {
    .careers-left-images {
        left: -50px; /* Further left on large screens */
        top: 20px; /* Higher position */
    }
    
    .career-ellipse-img {
        width: 280px;
        height: 280px;
    }
    
    .careers-peek-character {
        left: 200px; /* More left positioned (was 300px) */
        top: 180px; /* Higher up (was 320px) */
    }
    
    .career-peek-img {
        width: 350px;
    }
    
    .careers-right-images {
        top: 40px; /* Higher position (was 60px) */
    }
    
    .career-decoration-img {
        width: 350px; /* Smaller (was 450px) */
    }
    
    .careers-section .container {
        padding-top: 60px;
    }
}

/* Standard Desktop Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .careers-left-images {
        left: -40px; /* Further left */
        top: 15px; /* Higher */
    }
    
    .career-ellipse-img {
        width: 250px;
        height: 250px;
    }
    
    .careers-peek-character {
        left: 160px; /* More left (was 250px) */
        top: 160px; /* Higher up (was 300px) */
    }
    
    .career-peek-img {
        width: 300px;
    }
    
    .careers-right-images {
        top: 30px; /* Higher position */
    }
    
    .career-decoration-img {
        width: 300px; /* Smaller (was 380px) */
    }
    
    .careers-section .container {
        padding-top: 50px;
    }
}

/* Laptop Screens (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
    .careers-left-images {
        left: -35px; /* Further left */
        top: 10px; /* Higher */
    }
    
    .career-ellipse-img {
        width: 220px;
        height: 220px;
    }
    
    .careers-peek-character {
        left: 130px; /* More left (was 200px) */
        top: 140px; /* Higher up (was 280px) */
    }
    
    .career-peek-img {
        width: 250px;
    }
    
    .careers-right-images {
        top: 25px; /* Higher position */
    }
    
    .career-decoration-img {
        width: 260px; /* Smaller (was 320px) */
    }
    
    .careers-section .container {
        padding-top: 40px;
    }
}

/* Large Tablet Screens (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .careers-left-images {
        left: -30px; /* Further left */
        top: 5px; /* Higher */
    }
    
    .career-ellipse-img {
        width: 180px;
        height: 180px;
    }
    
    .careers-peek-character {
        left: 100px; /* More left (was 150px) */
        top: 120px; /* Higher up (was 250px) */
    }
    
    .career-peek-img {
        width: 200px;
    }
    
    .careers-right-images {
        top: 20px; /* Higher position */
    }
    
    .career-decoration-img {
        width: 220px; /* Smaller (was 260px) */
    }
    
    .careers-section .container {
        padding-top: 35px;
    }
}

/* ============ MOBILE LAYOUT - ALL DECORATIVE IMAGES COMPLETELY HIDDEN ============ */
@media (max-width: 768px) {
    /* COMPLETELY HIDE ALL DECORATIVE IMAGES ON MOBILE */
    .careers-left-images {
        display: none !important; /* ELLIPSE IMAGE HIDDEN */
    }
    
    .careers-peek-character {
        display: none !important; /* TOPPEEK.PNG HIDDEN */
    }
    
    .careers-right-images {
        display: none !important; /* HYBRIDWORK.PNG HIDDEN */
    }
    
    /* Clean mobile layout without decorative images */
    .careers-section .container {
        padding-top: clamp(20px, 4vh, 30px);
        position: relative;
        z-index: 1;
    }
    
    /* Remove flexbox ordering since images are hidden */
    .careers-section {
        display: block;
    }
    
    /* Ensure proper spacing without decorative images */
    .careers-header {
        margin-bottom: clamp(25px, 5vw, 30px);
    }
    
    /* Hide gradient circles on mobile for cleaner look */
    .gradient-circle {
        display: none !important;
    }
    
    /* Clean background pattern only */
    .careers-section::before {
        opacity: 0.1; /* Reduce pattern opacity on mobile */
    }
}

/* Small Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
    /* ENSURE ALL DECORATIVE IMAGES STAY HIDDEN */
    .careers-left-images,
    .careers-peek-character,
    .careers-right-images {
        display: none !important;
    }
    
    .careers-section .container {
        padding-top: clamp(15px, 3vh, 25px);
    }
    
    .careers-header {
        margin-bottom: clamp(20px, 4vw, 25px);
    }
    
    /* Remove all floating elements */
    .gradient-circle {
        display: none !important;
    }
    
    .careers-section::before {
        opacity: 0.05; /* Further reduce pattern opacity */
    }
}

/* Extra Small Mobile Screens (max-width: 360px) */
@media (max-width: 360px) {
    /* TRIPLE ENSURE ALL DECORATIVE IMAGES ARE HIDDEN */
    .careers-left-images,
    .careers-peek-character,
    .careers-right-images,
    .gradient-circle {
        display: none !important;
    }
    
    .careers-section .container {
        padding-top: clamp(10px, 2vh, 20px);
    }
    
    .careers-header {
        margin-bottom: clamp(15px, 3vw, 20px);
    }
    
    /* Completely clean background */
    .careers-section::before {
        display: none !important;
    }
}

/* Performance Optimizations - Only for desktop */
@media (min-width: 769px) {
    .career-ellipse-img,
    .career-peek-img,
    .career-decoration-img,
    .gradient-circle {
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .gradient-circle {
        animation: none;
    }
    
    .career-peek-img:hover,
    .career-decoration-img:hover {
        transform: none;
    }
}

/* High Contrast Mode - Only for desktop */
@media (prefers-contrast: high) and (min-width: 769px) {
    .career-ellipse-img,
    .career-peek-img,
    .career-decoration-img {
        filter: contrast(1.2);
    }
}

/* ============ ADDITIONAL MOBILE CLEANUP ============ */
@media (max-width: 768px) {
    /* Remove any potential pseudo-elements that might show images */
    .careers-left-images::before,
    .careers-left-images::after,
    .careers-peek-character::before,
    .careers-peek-character::after,
    .careers-right-images::before,
    .careers-right-images::after {
        display: none !important;
        content: none !important;
    }
    
    /* Clean up any background images that might be set */
    .left-ellipse,
    .peek-image,
    .right-image-1 {
        background: none !important;
        background-image: none !important;
    }
    
    /* Ensure container takes full available space */
    .careers-section {
        width: 100%;
        overflow: hidden;
    }
}

/* ============ FORCE HIDE ON MOBILE - LAST RESORT ============ */
@media (max-width: 768px) {
    /* Force hide specific image files */
    img[src*="ellipse"],
    img[src*="topPeek"],
    img[src*="hybridwork"],
    img[src*="Ellipse"],
    img[src*="TopPeek"],
    img[src*="HybridWork"],
    .career-ellipse-img,
    .career-peek-img,
    .career-decoration-img {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
}




/* ============ ANIMATIONS ============ */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============ PERFECT RESPONSIVE DESIGN ============ */

/* 4K and Ultra-Wide Screens */
@media (min-width: 1800px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }
    
    .hero-content,
    .job-content,
    .section-content-wrapper {
        gap: 120px;
    }
}

/* Large Desktop Screens */
@media (min-width: 1400px) and (max-width: 1799px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero-content,
    .job-content,
    .section-content-wrapper {
        gap: 100px;
    }
}

/* Standard Desktop Screens */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .hero-content,
    .job-content,
    .section-content-wrapper {
        gap: 80px;
    }
    
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: 85vh;
    }
}

/* Laptop Screens */
@media (min-width: 1025px) and (max-width: 1199px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .hero-content,
    .job-content,
    .section-content-wrapper {
        gap: 60px;
    }
    
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: 80vh;
    }
    
    .main-title {
        font-size: clamp(40px, 6vw, 48px);
    }
    
    .automation-title {
        font-size: clamp(32px, 5vw, 38px);
    }
    
    .title {
        font-size: clamp(40px, 6vw, 48px);
    }
    
    .section-heading,
    .culture-title,
    .careers-title {
        font-size: clamp(32px, 5vw, 38px);
    }
}

/* Large Tablet Screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    /* Convert to single column layouts */
    .hero-content,
    .job-content,
    .section-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: 75vh;
        padding: clamp(30px, 6vw, 40px) 0;
    }
    
    .hero-title-line {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-right {
        justify-content: center;
        margin-left: 0;
    }
    
    .culture-section {
        padding: clamp(20px, 4vw, 25px);
        max-height: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(10px, 2vw, 12px);
    }
    
    .job-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-meta {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .filter-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

/* Standard Mobile Screens */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile layouts */
    .hero-content,
    .job-content,
    .section-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: 70vh;
        padding: clamp(25px, 5vw, 30px) 0;
    }
    
    /* Hero Section Mobile */
    .hero-title-line {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .divider {
        display: none;
    }
    
    .hero-description p {
        text-align: center;
        margin: 0 auto;
    }
    
    .btn-find-more {
        align-self: center;
    }
    
    /* Job Opportunities Mobile */
    .tags {
        justify-content: center;
    }
    
    /* Who We Are Mobile */
    .culture-section {
        padding: clamp(15px, 3vw, 20px);
        max-height: none;
    }
    
    .culture-point {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: clamp(12px, 3vw, 15px);
    }
    
    .culture-icon {
        align-self: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Careers Mobile */
    .search-filter-container {
        padding: clamp(15px, 3vw, 20px);
    }
    
    .search-bar {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-input,
    .search-button {
        border-radius: 15px;
    }
    
    .filter-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .results-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .job-card {
        padding: clamp(15px, 3vw, 20px);
    }
    
    .job-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .job-meta {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .job-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .job-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Modal Mobile */
    .modal-content {
        margin: clamp(10px, 3vw, 15px) 0;
        border-radius: clamp(10px, 3vw, 15px);
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: clamp(15px, 3vw, 20px);
    }
    
    .job-details-modal .modal-header,
    .job-details-modal .modal-body {
        padding: clamp(15px, 3vw, 20px);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .upload-section {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Tooltip Mobile */
    .tooltip-meta {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: 65vh;
        padding: clamp(20px, 4vw, 25px) 0;
    }
    
    /* Small Mobile Adjustments */
    .search-filter-container {
        padding: clamp(12px, 3vw, 15px);
    }
    
    .job-card {
        padding: clamp(12px, 3vw, 18px);
    }
    
    .job-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-view-details,
    .btn-apply {
        justify-content: center;
        width: 100%;
    }
    
    .tooltip-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .form-section {
        padding: clamp(15px, 3vw, 18px);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Extra Small Mobile Screens */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: 60vh;
        padding: clamp(15px, 4vw, 20px) 0;
    }
    
    .culture-section {
        padding: clamp(10px, 3vw, 15px);
    }
    
    .search-filter-container {
        padding: clamp(10px, 3vw, 12px);
    }
    
    .job-card {
        padding: clamp(10px, 3vw, 15px);
    }
}


/* ============ UTILITIES ============ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Remove any extra spacing at the bottom of body */
body::after {
    content: '';
    display: block;
    height: 0;
    margin: 0;
    padding: 0;
    clear: both;
}

/* Perfect Accessibility */
@media (prefers-contrast: high) {
    .job-card,
    .search-filter-container,
    .culture-section,
    .footer-section-complete {
        border-width: 3px;
    }
    
    .filter-chip,
    .btn-view-details,
    .btn-apply {
        border-width: 3px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-circle,
    .floating-shape,
    .circle-left,
    .circle-right {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: auto;
        padding: 20px 0;
    }
    
    .floating-elements,
    .bg-decorations,
    .circle-left,
    .circle-right {
        display: none;
    }
    
    .job-card,
    .culture-section,
    .search-filter-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .btn-view-details,
    .btn-apply,
    .btn-find-more,
    .job-count-badge {
        background: #f0f0f0 !important;
        color: #333 !important;
        border: 1px solid #ccc !important;
    }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .main-illustration,
    .farm-image,
    .brand-logo-complete img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Support (Future-proofing) */
@media (prefers-color-scheme: dark) {
    /* This can be uncommented if dark mode is needed in the future */
    /*
    :root {
        --neutral-50: #0f172a;
        --neutral-100: #1e293b;
        --neutral-900: #f8fafc;
    }
    */
}

/* Landscape Orientation Adjustments */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: auto;
        padding: clamp(20px, 4vh, 30px) 0;
    }
    
    .hero-content,
    .job-content,
    .section-content-wrapper {
        gap: clamp(30px, 8vw, 50px);
    }
}

/* Ultra-wide Screen Support */
@media (min-aspect-ratio: 21/9) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content,
    .job-content,
    .section-content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .job-card:hover,
    .culture-point:hover,
    .filter-chip:hover,
    .btn-view-details:hover,
    .btn-apply:hover {
        transform: none;
    }
    
    .job-card,
    .culture-point,
    .filter-chip,
    .btn-view-details,
    .btn-apply {
        cursor: default;
    }
    
    /* Increase touch targets */
    .filter-chip,
    .btn-view-details,
    .btn-apply {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Focus Styles for Better Accessibility */
.job-card:focus-within,
.culture-point:focus-within,
.filter-chip:focus,
.btn-view-details:focus,
.btn-apply:focus,
.btn-find-more:focus,
.search-input:focus,
.sort-select:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Smooth Scroll for Better UX */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Final Optimization for Performance */
* {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

/* GPU Acceleration for Smooth Animations */
.job-card,
.culture-point,
.filter-chip,
.btn-view-details,
.btn-apply,
.floating-circle,
.floating-shape {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Ensure Perfect Responsive Images */
.main-illustration,
.farm-image,
.bg-pattern {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Final Container Fix for All Screen Sizes */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero,
    .job-opportunities-section,
    .who-we-are-section,
    .careers-section {
        min-height: 55vh;
        padding: clamp(15px, 4vw, 20px) 0;
    }
}

/* Ensure No Horizontal Scroll */
body,
html {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Perfect End - No Extra Spacing */
.footer-section-complete {
    margin-bottom: 0;
}

body {
    margin-bottom: 0;
    padding-bottom: 0;
}














/* new code for hover  */


        
        /* ============ SIMPLE JOB DESCRIPTION TOOLTIP - NEAR CURSOR ============ */
        .job-tooltip {
            position: fixed;
            background: white;
            border-radius: 12px;
            padding: 18px 20px;
            width: 320px;
            max-width: 85vw;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s ease;
            pointer-events: none;
            border: 1px solid #e5e7eb;
        }

        .job-tooltip.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .tooltip-content {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .tooltip-title {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #1e40af;
            margin-bottom: 10px;
            line-height: 1.3;
            border-bottom: 2px solid #e5e7eb;
            padding-bottom: 8px;
        }

        .tooltip-description {
            font-size: 13px;
            line-height: 1.6;
            color: #4b5563;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
        }

        /* Hide all other elements */
        .tooltip-header,
        .tooltip-company,
        .tooltip-meta,
        .tooltip-actions,
        .tooltip-btn {
            display: none !important;
        }

        /* Small arrow pointing to the hovered text */
        .job-tooltip::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 30px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid white;
            filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
        }

        /* Keep tooltip visible while hovering */
        .job-tooltip:hover {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .job-tooltip {
                width: 85vw;
                padding: 15px;
            }
            
            .tooltip-title {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .tooltip-description {
                font-size: 12px;
                -webkit-line-clamp: 5;
            }

            .job-tooltip::before {
                left: 20px;
            }
        }



        
/* Footer Section Complete - Modern Blue Theme */
.footer-section-complete {
    background: linear-gradient(135deg, #0f2862 0%, #1c3d7a 50%, #2a5298 100%);
    color: #e8f1ff;
    font-family: 'Inter', sans-serif;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Decorative Circles - Blue Gradient Design */
.circle-left,
.circle-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: rgba(65, 105, 225, 0.12);
    border: 1px solid rgba(100, 149, 237, 0.25);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.circle-left::before,
.circle-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(70, 130, 255, 0.08);
    border: 1px solid rgba(100, 149, 237, 0.2);
    border-radius: 50%;
}

.circle-left::after,
.circle-right::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(135, 206, 250, 0.05);
    border: 1px solid rgba(100, 149, 237, 0.15);
    border-radius: 50%;
}

.circle-left {
    left: -200px;
}

.circle-right {
    right: -200px;
}

/* Footer Container */
.footer-container-complete {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Footer Columns */
.footer-column-complete {
    display: flex;
    flex-direction: column;
}

.footer-column-complete h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-column-complete ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-complete ul li {
    margin-bottom: 16px;
}

.footer-column-complete ul li a {
    color: #b8d4ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 1.6;
    display: block;
}

.footer-column-complete ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(100, 149, 237, 0.5);
}

/* Brand Column */
.footer-brand-complete {
    max-width: 320px;
}

.brand-header-complete {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.brand-logo-complete {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4169e1, #1e90ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.brand-logo-complete img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-header-complete h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-text-complete {
    font-size: 14px;
    color: #b8d4ff;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.phone-number-complete {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 35px 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info-complete {
    margin-bottom: 35px;
}

.contact-item-complete {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-complete {
    width: 24px;
    height: 24px;
    color: #87ceeb;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label-complete {
    color: #b8d4ff;
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
}

.contact-value-complete {
    color: white;
    font-weight: 500;
    display: block;
}

/* Social Icons */
.social-icons-complete {
    display: flex;
    gap: 15px;
}

.social-link-complete {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8d4ff;
    text-decoration: none;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.social-link-complete:hover {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border-color: #00bfff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.5);
}

/* Footer Bottom */
.footer-bottom-complete {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 60px;
    padding: 30px 0;
    background: rgba(15, 38, 98, 0.5);
}

.footer-bottom-container-complete {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.copyright-complete {
    font-size: 14px;
    color: #a8c8e8;
    font-weight: 400;
}

.footer-links-complete {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.footer-links-complete a {
    color: #a8c8e8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links-complete a:hover {
    color: #00bfff;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

.footer-links-complete span {
    color: #6b8bb3;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container-complete {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding: 0 30px;
    }
    
    .circle-left,
    .circle-right {
        width: 350px;
        height: 350px;
    }
    
    .circle-left {
        left: -175px;
    }
    
    .circle-right {
        right: -175px;
    }
    
    .footer-bottom-container-complete {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-section-complete {
        padding: 60px 0 0;
    }
    
    .footer-container-complete {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .circle-left,
    .circle-right {
        display: none;
    }
    
    .footer-bottom-container-complete {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .brand-header-complete h3 {
        font-size: 24px;
    }
    
    .phone-number-complete {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .footer-section-complete {
        padding: 50px 0 0;
    }
    
    .footer-container-complete {
        padding: 0 15px;
        gap: 35px;
    }
    
    .brand-logo-complete {
        width: 45px;
        height: 45px;
    }
    
    .brand-logo-complete img {
        width: 24px;
        height: 24px;
    }
    
    .brand-header-complete h3 {
        font-size: 22px;
    }
    
    .phone-number-complete {
        font-size: 18px;
    }
    
    .social-link-complete {
        width: 38px;
        height: 38px;
    }
    
    .footer-links-complete {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom-container-complete {
        padding: 0 15px;
    }
}

/* Enhanced Visual Effects */
@media (prefers-reduced-motion: no-preference) {
    .circle-left,
    .circle-right {
        animation: subtleFloat 8s ease-in-out infinite alternate;
    }
    
    @keyframes subtleFloat {
        0% {
            transform: translateY(-50%) rotate(0deg);
            opacity: 0.5;
        }
        100% {
            transform: translateY(-52%) rotate(2deg);
            opacity: 0.7;
        }
    }
}
