@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #ffffff;       /* Pure white page background */
    --bg-surface: #ffffff;    /* Pure white surfaces */
    --bg-glass: #ffffff;      /* White cards */
    --bg-glass-hover: #ffffff;
    --border-glass: #E5E7EB;       /* Light Border Color */
    --border-glass-hover: #3B82F6;  /* Professional Blue hover border */

    --primary: #2563EB;        /* Royal Blue */
    --primary-glow: rgba(37, 99, 235, 0.12);
    --secondary: #3B82F6;      /* Professional Blue */
    --secondary-glow: rgba(59, 130, 246, 0.15);
    --accent: #0EA5E9;         /* Sky Blue */
    --accent-glow: rgba(14, 165, 233, 0.15);

    --danger: #dc2626;         /* Red-600 */
    --danger-glow: rgba(220, 38, 38, 0.15);
    --success: #15803d;        /* Green-700 */
    --success-glow: rgba(21, 128, 61, 0.15);

    --text-primary: #1F2937;   /* Charcoal primary text */
    --text-secondary: #4B5563; /* Medium gray secondary text */
    --text-muted: #6B7280;     /* Light gray muted text */

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 90px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients & Ambient Glows */
body::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.02) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
    animation: float-glow 15s infinite alternate ease-in-out;
}

body::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.02) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(90px);
    animation: float-glow 20s infinite alternate-reverse ease-in-out;
}

.ambient-glow-3 {
    position: absolute;
    bottom: 10%;
    left: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.015) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
    animation: float-glow 25s infinite alternate ease-in-out;
}

@keyframes float-glow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, 50px) scale(1.15);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.glass-panel {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.04), 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: #3B82F6;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 70%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: #2563EB;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    background: #1D4ED8;
}

.btn-secondary {
    background: transparent;
    color: #2563EB !important;
    border: 2px solid #2563EB;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: #1D4ED8;
    color: #1D4ED8 !important;
    background: rgba(37, 99, 235, 0.05);
}

.btn-accent {
    background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    color: white !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1D4ED8 0%, #0284c7 100%);
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

header.scrolled {
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: padding 0.3s ease;
}

header.scrolled .nav-container {
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.03);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-main {
    opacity: 0.85;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.fa-spin-slow {
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.nav-menu {
    display: flex !important;
    list-style: none;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #E5E7EB;
    padding: 4px 6px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important; /* Hide scrollbar Firefox */
    -ms-overflow-style: none !important; /* Hide scrollbar IE/Edge */
    transition: var(--transition-smooth);
    max-width: none;
    flex-shrink: 0;
}

.nav-menu::-webkit-scrollbar {
    display: none !important; /* Hide scrollbar Chrome/Safari */
}

.nav-link {
    text-decoration: none;
    color: #4B5563;
    font-size: 0.76rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 10px;
    border-radius: 20px;
    display: block;
    white-space: nowrap !important; /* Prevent text wrapping internally */
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.nav-link:hover {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-smooth);
    display: none !important; /* Disabled underline style */
}

.nav-link:hover::after {
    width: 100%;
    display: none !important;
}

.mobile-nav-toggle {
    display: none !important; /* Always hide hamburger toggle */
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-item h3 span {
    color: var(--secondary);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Globe Graphic (CSS Abstract Globe) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



.nav-link.active-page {
    background: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.nav-link.active-page::after {
    display: none !important;
}

.job-badge.israel {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(37, 99, 235, 0.25);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 70px rgba(14, 165, 233, 0.25);
    }
}

/* Sections Global */
.section {
    padding: 100px 0;
}

.section:nth-of-type(even) {
    background-color: #F8FAFC;
}

/* Safety Section - Amber/Red Warning UI */
.safety-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(239, 68, 68, 0.03) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.safety-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--danger));
}

.safety-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: flex-start;
}

.safety-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.safety-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent);
}

.safety-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 900px;
}

.safety-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.safety-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    display: flex;
    gap: 16px;
}

.safety-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--accent);
    line-height: 1;
}

.safety-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.safety-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-smooth);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Job Finder Section */
.job-finder-wrapper {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-glass);
}

.filter-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    min-width: 280px;
}

.search-input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 30px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

.filter-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Flag Icon customization */
.ticker-item .fi,
.filter-btn .fi {
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    background: var(--bg-glass-hover);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    min-height: 250px;
}

.job-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.job-card:hover {
    border-color: var(--border-glass-hover);
    background: var(--bg-glass-hover);
    box-shadow: 0 8px 30px var(--primary-glow);
    transform: translateY(-4px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-badge {
    padding: 5px 12px;
    background: rgba(13, 148, 136, 0.08);
    color: #0d9488;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.job-badge.europe {
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
}

.job-badge.gulf {
    background: rgba(234, 88, 12, 0.08);
    color: #ea580c;
}

.job-badge.israel {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.job-salary {
    font-size: 0.92rem;
    font-weight: 700;
    color: #059669;
}

.job-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.job-company {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-details {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.job-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 18px;
}

.job-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.no-jobs-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Visa Eligibility Checker - Custom Mini App */
.eligibility-container {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.eligibility-card {
    padding: 40px;
}

.eligibility-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 36px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.step-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.step-content.active {
    display: block;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.option-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.option-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.option-card:hover {
    border-color: var(--border-glass-hover);
    background: var(--bg-glass-hover);
}

.option-card.selected {
    border-color: var(--secondary);
    background: rgba(37, 99, 235, 0.05);
}

.option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.option-icon {
    color: var(--secondary);
    font-size: 1.1rem;
}

.option-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.option-card.selected .option-radio {
    border-color: var(--secondary);
    background: var(--secondary);
}

.option-card.selected .option-radio::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #0d0b14;
    border-radius: 50%;
}

.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

/* Result Screen Styling */
.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
}

.result-badge.high {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.result-badge.medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.result-score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid var(--border-glass);
    margin: 0 auto 24px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.result-score-circle.success-border {
    border-color: var(--success);
}

.result-score-circle.warning-border {
    border-color: var(--accent);
}

.score-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.score-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.result-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Office & Country Locations Tab Panel */
.country-tabs-scroll,
.office-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 12px !important;
    margin-bottom: 40px;
    padding: 10px 5px !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    justify-content: flex-start !important;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.country-tabs-scroll::-webkit-scrollbar,
.office-tabs::-webkit-scrollbar {
    display: none;
}

@media (min-width: 992px) {
    .country-tabs-scroll,
    .office-tabs {
        justify-content: flex-start !important;
        overflow-x: auto !important;
    }
    
    /* Styled custom thin scrollbar on desktop when overflow occurs */
    .country-tabs-scroll::-webkit-scrollbar,
    .office-tabs::-webkit-scrollbar {
        display: block !important;
        height: 6px !important;
    }
    .country-tabs-scroll::-webkit-scrollbar-thumb,
    .office-tabs::-webkit-scrollbar-thumb {
        background: rgba(79, 70, 229, 0.25) !important; /* var(--primary) with opacity */
        border-radius: 3px !important;
    }
    .country-tabs-scroll::-webkit-scrollbar-thumb:hover,
    .office-tabs::-webkit-scrollbar-thumb:hover {
        background: rgba(79, 70, 229, 0.5) !important;
    }
    .country-tabs-scroll::-webkit-scrollbar-track,
    .office-tabs::-webkit-scrollbar-track {
        background: rgba(15, 23, 42, 0.02) !important;
        border-radius: 3px !important;
    }
}

.office-tab-btn {
    padding: 12px 24px;
    border-radius: 30px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.office-tab-btn:hover,
.office-tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.office-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.office-content.active {
    display: block;
}

.office-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.office-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.office-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.office-meta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.office-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.office-meta-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.office-meta-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.office-meta-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.office-graphic {
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
}

.office-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    text-align: center;
    padding: 24px;
}

.office-map-placeholder i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Testimonials / Candidate Stories Slider */
.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    box-sizing: border-box;
}

.testimonial-card {
    padding: 40px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.candidate-img-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #0EA5E9 100%);
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    border: 3px solid var(--border-glass);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
}

.candidate-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.candidate-destination {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    border-color: var(--border-glass-hover);
    background: var(--bg-glass-hover);
    color: var(--secondary);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--secondary);
    width: 24px;
    border-radius: 4px;
}

/* Contact Section & Footer */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-details p {
    font-weight: 600;
    font-size: 1rem;
}

.contact-form-panel {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

textarea.form-input {
    resize: none;
    min-height: 120px;
}

/* Footer style */
footer {
    border-top: 1px solid rgba(37, 99, 235, 0.3);
    padding: 60px 0 30px 0;
    background: #1E3A8A;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary) !important;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #93C5FD;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary) !important;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-btn:hover {
    color: #1E3A8A;
    border-color: var(--secondary);
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(8px);
}

.modal-content {
    width: 100%;
    max-width: 550px;
    z-index: 1001;
    position: relative;
    padding: 40px;
    border-radius: var(--border-radius-xl);
    transform: scale(0.9);
    transition: var(--transition-smooth);
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Success Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .office-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .office-graphic {
        height: 250px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        max-width: calc(100% - 130px);
        flex-shrink: 1;
        gap: 4px;
        padding: 4px 6px;
    }
    .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .logo-main {
        font-size: 1.25rem !important;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .globe-container {
        width: 340px;
        height: 340px;
    }

    .globe-core {
        width: 200px;
        height: 200px;
    }

    .ring-1 {
        width: 380px;
        height: 380px;
    }

    .ring-2 {
        width: 420px;
        height: 420px;
    }

    .fc-1,
    .fc-2 {
        display: none;
        /* Hide floating cards on small mobile */
    }

    .section-title {
        font-size: 2rem;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .safety-banner {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   Continuous Scrolling Country Ticker (Marquee)
   ========================================================================== */
.country-ticker-section {
    width: 100%;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
    padding: 12px 0;
    margin-bottom: 25px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.country-ticker-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.country-ticker-track {
    display: flex;
    gap: 40px;
    padding-left: 20px;
    white-space: nowrap;
    animation: scroll-ticker 30s linear infinite;
}

.country-ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ticker-item:hover {
    color: var(--primary);
    background: var(--bg-glass-hover);
    border-color: var(--primary);
    transform: scale(1.05);
}

.ticker-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   Interactive FAQ Accordion Panel Styles
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 60px auto 40px auto;
    text-align: left;
}

.faq-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--text-primary);
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px var(--primary-glow);
    border-color: var(--border-glass-hover);
}

.faq-item summary {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Typing Headline Cursor Effects
   ========================================================================== */
.typed-cursor {
    color: var(--primary);
    animation: blink-cursor 0.8s infinite;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ==========================================================================
   Global WhatsApp floating contact widget
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
    transform: rotate(10deg);
}

.whatsapp-ping {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsapp-pulse 1.8s infinite;
    pointer-events: none;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================================
   EARTH GLOBE with Texture & Clickable Pins
   ================================================================ */

.holo-globe-wrapper {
    position: relative;
    width: 520px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: globe-float 8s ease-in-out infinite;
}

@keyframes globe-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Ambient Glow */
.globe-ambient-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(14, 165, 233, 0.12) 0%,
        rgba(37, 99, 235, 0.08) 40%,
        transparent 70%
    );
    filter: blur(50px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    pointer-events: none;
}
.orbit-1 { width: 380px; height: 380px; border-color: rgba(99,102,241,0.1); animation: orbit-spin 30s linear infinite; }
.orbit-2 { width: 440px; height: 440px; border-color: rgba(6,214,160,0.07); border-style: dashed; animation: orbit-spin 45s linear infinite reverse; }
.orbit-3 { width: 500px; height: 500px; border-color: rgba(251,191,36,0.05); animation: orbit-spin 60s linear infinite; }

@keyframes orbit-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Earth Globe */
.holo-globe {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transform: perspective(600px) rotateX(5deg);
}

/* Ocean layer */
.earth-ocean {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%,
        #0a2463 0%,
        #061539 40%,
        #030a1f 70%,
        #010410 100%
    );
    z-index: 1;
}

/* Continent SVG */
.earth-continents-svg {
    position: absolute;
    top: 0; left: 0;
    width: 200%; height: 100%;
    z-index: 2;
    animation: earth-horizontal-rotate 28s linear infinite;
    pointer-events: none;
}

.continent-shape, .earth-continents-svg path {
    fill: rgba(14, 165, 233, 0.22);
    stroke: rgba(14, 165, 233, 0.45);
    stroke-width: 0.8;
    filter: drop-shadow(0 0 3px rgba(14, 165, 233, 0.3));
    transition: fill 0.3s ease;
}

@keyframes earth-horizontal-rotate {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Wireframe grid (subtle) */
.globe-wireframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.meridian {
    position: absolute;
    top: 0; left: 50%;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.06);
    transform-origin: center center;
    transform: translateX(-50%);
}
.m-1 { transform: translateX(-50%) rotateY(0deg); width: 100%; }
.m-2 { transform: translateX(-50%) rotateY(60deg); width: 50%; left: 75%; }
.m-3 { transform: translateX(-50%) rotateY(120deg); width: 50%; left: 75%; }

.parallel {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border-top: 1px solid rgba(6, 214, 160, 0.06);
    height: 0;
}
.p-1 { top: 25%; width: 86%; }
.p-2 { top: 50%; width: 100%; border-color: rgba(6, 214, 160, 0.1); }
.p-3 { top: 75%; width: 86%; }

/* Atmosphere glow ring */
.earth-atmosphere {
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 50%;
    border: 2px solid rgba(6, 214, 160, 0.15);
    box-shadow:
        0 0 30px rgba(6, 214, 160, 0.08),
        0 0 60px rgba(99, 102, 241, 0.06),
        inset 0 0 30px rgba(6, 214, 160, 0.04);
    z-index: 7;
    pointer-events: none;
}

/* Highlight / shine */
.globe-highlight {
    position: absolute;
    top: 5%; left: 10%;
    width: 50%; height: 40%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(255,255,255,0.08) 0%,
        transparent 70%
    );
    z-index: 8;
    pointer-events: none;
}

/* ================================================================
   CLICKABLE PIN MARKERS
   ================================================================ */
   
.globe-pin-marker {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.globe-pin-marker:hover {
    z-index: 20;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Pin Dot */
.pin-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 8px var(--secondary), 0 0 20px rgba(6,214,160,0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pin-dot-hq {
    width: 14px;
    height: 14px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 25px rgba(99,102,241,0.4);
}

/* Pin Pulse Ring */
.pin-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 12px; height: 12px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--secondary);
    animation: pin-pulse 2s infinite cubic-bezier(0.25, 0, 0, 1);
    pointer-events: none;
    z-index: 1;
}

.pin-ring-hq {
    border-color: var(--primary);
}

@keyframes pin-pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}

/* Pin Tooltip Card (appears on hover) */
.pin-tooltip-card {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) scale(0.85) translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(6, 214, 160, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 15px rgba(6, 214, 160, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 30;
}

.pin-tooltip-card::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.95) transparent transparent transparent;
}

.globe-pin-marker:hover .pin-tooltip-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1) translateY(0);
    pointer-events: auto;
}

.globe-pin-marker:hover .pin-dot {
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent), 0 0 30px rgba(251,191,36,0.4);
}

.ptc-header {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.ptc-header i {
    color: var(--secondary);
    margin-right: 4px;
    font-size: 0.75rem;
}

.ptc-body {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.ptc-action {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
}

.ptc-action i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.globe-pin-marker:hover .ptc-action i {
    transform: translateX(3px);
}

/* India HQ special label */
.pin-label-hq {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.pin-label-hq i {
    font-size: 0.65rem;
    margin-right: 3px;
}

/* Globe Status Badge */
.globe-status-badge {
    position: absolute;
    bottom: 5%; right: 8%;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 10;
}
.gsb-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: blink-dot 1.5s infinite;
}
.gsb-text {
    font-family: var(--font-heading);
    font-size: 0.65rem; font-weight: 700;
    color: var(--success);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Floating Particles */
.globe-particle {
    position: absolute;
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--secondary);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}
.gp-1 { top: 20%; left: 10%; animation: particle-drift 12s linear infinite; }
.gp-2 { top: 40%; right: 8%; animation: particle-drift 15s linear infinite 2s; background: var(--primary); }
.gp-3 { bottom: 25%; left: 5%; animation: particle-drift 10s linear infinite 4s; }
.gp-4 { top: 8%; right: 35%; animation: particle-drift 18s linear infinite 1s; background: var(--accent); }
.gp-5 { bottom: 10%; right: 20%; animation: particle-drift 14s linear infinite 3s; background: var(--primary); }
.gp-6 { top: 60%; left: 85%; animation: particle-drift 16s linear infinite 5s; }

@keyframes particle-drift {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.5; }
    50% { transform: translate(30px, -40px) scale(1.5); opacity: 0.3; }
    90% { opacity: 0.5; }
    100% { transform: translate(-20px, 60px) scale(0.8); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
    .holo-globe-wrapper { width: 400px; height: 400px; }
    .holo-globe { width: 240px; height: 240px; }
    .orbit-1 { width: 300px; height: 300px; }
    .orbit-2 { width: 350px; height: 350px; }
    .orbit-3 { width: 400px; height: 400px; }
}

@media (max-width: 768px) {
    .holo-globe-wrapper { width: 320px; height: 320px; margin: 0 auto; }
    .holo-globe { width: 200px; height: 200px; }
    .orbit-1 { width: 250px; height: 250px; }
    .orbit-2 { width: 290px; height: 290px; }
    .orbit-3 { width: 320px; height: 320px; }
    .pin-tooltip-card { display: none; }
    .globe-status-badge { display: none; }
    .pin-label-hq { font-size: 0.62rem; padding: 3px 8px; }
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}


/* ================================================================
   AI CHATBOT WIDGET
   ================================================================ */

.ai-chatbot-container {
    position: fixed;
    bottom: 95px; /* Stacked exactly above WhatsApp button */
    right: 25px;
    z-index: 99;
    font-family: var(--font-body);
}

/* Chatbot Toggle Button */
.ai-chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3), inset 0 1px 1px rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.ai-chatbot-toggle:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

.chatbot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--danger);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

/* Chatbot Window */
.ai-chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    height: 480px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.ai-chatbot-container.active .ai-chatbot-window {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Chatbot Header */
.chatbot-header {
    padding: 16px 20px;
    background: rgba(37, 99, 235, 0.08);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 0 10px var(--primary-glow);
}

.chatbot-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.chatbot-info p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 6px var(--secondary);
    display: inline-block;
}

.chatbot-actions {
    display: flex;
    gap: 8px;
}

.chatbot-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.chatbot-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* Chat Messages */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chat-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
    animation: bubble-fade-in 0.3s ease;
}

@keyframes bubble-fade-in {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    background: var(--primary);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
}

/* Quick Replies */
.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    align-self: flex-start;
}

.qr-btn {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.qr-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Input Area */
.chatbot-input-area {
    padding: 12px 16px;
    background: rgba(248, 250, 252, 0.9);
    border-top: 1px solid var(--border-glass);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbot-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-smooth);
}

.chatbot-input-area input:focus {
    border-color: var(--border-glass-hover);
    background: rgba(255, 255, 255, 0.06);
}

.chatbot-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.chatbot-send-btn:hover {
    transform: scale(1.05);
    background: #4f46e5;
}

/* Admin Panel Inside Chatbot */
.chatbot-admin-panel {
    position: absolute;
    top: 68px; /* Below chatbot header */
    left: 0;
    width: 100%;
    height: calc(100% - 68px);
    background: #f8fafc;
    z-index: 10;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 10px;
}

.admin-panel-header h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
    margin: 0;
}

.admin-close-btn {
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.admin-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.admin-stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.admin-leads-list {
    flex: 1;
    overflow-y: auto;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    background: rgba(255,255,255,0.01);
    font-size: 0.75rem;
}

.admin-leads-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-leads-table th {
    background: rgba(255,255,255,0.03);
    padding: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    border-bottom: 1px solid var(--border-glass);
}

.admin-leads-table td {
    padding: 8px;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    color: var(--text-primary);
}

.admin-leads-table tr:hover {
    background: rgba(255,255,255,0.02);
}

.no-leads-msg {
    padding: 30px;
    text-align: center;
    color: var(--text-muted);
}

.admin-actions {
    margin-top: auto;
}

/* Adjustments for Mobile Chatbot */
@media (max-width: 480px) {
    .ai-chatbot-container {
        bottom: 85px;
        right: 15px;
    }
    .ai-chatbot-window {
        width: calc(100vw - 30px);
        height: 420px;
    }
}

/* Typing Indicator Styles */
.chat-msg.typing {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 50px;
    justify-content: center;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {
    0%, 80%, 100% { 
        transform: scale(0);
    } 40% { 
        transform: scale(1);
    }
}

/* Custom Language Switcher */
.lang-switch-container {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.lang-btn:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Hide standard Google Translate widget completely */
.skiptranslate,
#google_translate_element {
    display: none !important;
}

body {
    top: 0 !important; /* Prevents Google Translate header bar offset */
}

/* Tighten header nav layout for intermediate desktops */
@media (max-width: 1550px) and (min-width: 769px) {
    .logo-main {
        font-size: 1.3rem !important;
    }
    .nav-menu {
        gap: 3px;
        padding: 3px 5px;
    }
    .nav-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    .lang-btn {
        padding: 4px 6px;
        font-size: 0.72rem;
    }
}

/* Top Utility Bar */
.top-utility-bar {
    background: #1E3A8A;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: margin-top 0.3s ease, opacity 0.3s ease;
}
.utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.utility-left, .utility-right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.utility-left span, .utility-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.utility-left a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}
.utility-left a:hover {
    color: #0EA5E9;
}
header.scrolled .top-utility-bar {
    margin-top: -38px;
    opacity: 0;
    pointer-events: none;
}

/* Trust & Stats Section styling */
.trust-stats-section {
    padding: 50px 0 30px 0;
    background: #FFFFFF;
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
}
.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}
.trust-badge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #3B82F6;
}
.badge-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.badge-content h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 2px 0;
    letter-spacing: 0.2px;
}
.badge-content p {
    font-size: 0.72rem;
    color: #6B7280;
    margin: 0;
}

/* Stats Counter Row styling */
.stats-counter-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
}
@media (max-width: 768px) {
    .stats-counter-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.stat-counter-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-counter-card .stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563EB;
    letter-spacing: -1px;
}
.stat-counter-card .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4B5563;
}

/* Dashboard Section styling */
.dashboard-section {
    padding: 40px 0 60px 0;
    background: #F8FAFC;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}
.dashboard-card {
    background: #FFFFFF;
    border-radius: var(--border-radius-lg);
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 480px;
}
.card-header-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #1F2937;
    margin: 0;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-subtitle {
    font-size: 0.8rem;
    color: #6B7280;
    margin: 0;
}
.featured-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}
.dashboard-job-card {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dashboard-job-card:hover {
    transform: translateY(-2px);
    border-color: #3B82F6;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
    background: #FFFFFF;
}
.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.job-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: #1F2937;
}
.job-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}
.badge-europe {
    background: rgba(14, 165, 233, 0.1);
    color: #0EA5E9;
}
.badge-gulf {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}
.job-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #6B7280;
}
.job-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.job-card-footer {
    display: flex;
    justify-content: flex-end;
}
.job-apply-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2563EB;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dashboard-job-card:hover .job-apply-link {
    color: #1D4ED8;
}

/* Column 2: Popular Destinations grid styles */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex-grow: 1;
}
.dash-dest-card {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.dash-dest-card:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: #0EA5E9;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.08);
    background: #FFFFFF;
}
.dest-flag-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dest-flag-row .fi {
    font-size: 1.1rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.dest-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1F2937;
}
.dest-desc {
    font-size: 0.7rem;
    color: #6B7280;
    line-height: 1.2;
}
.dest-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0EA5E9;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Column 3: Profile Evaluation Card & Widgets styles */
.dashboard-eligibility-card {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
    color: #FFFFFF;
    border: none;
}
.eligibility-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
    justify-content: center;
}
.widget-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.widget-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}
.widget-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.widget-select option {
    background: #1E3A8A;
    color: #FFFFFF;
}
.widget-select:focus {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
}
.widget-score-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.score-radial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0EA5E9;
}
.score-text {
    display: flex;
    flex-direction: column;
}
.score-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
}
.score-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Section Mockup Container */
.hero-mockup-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(229, 231, 235, 0.5);
    background: #FFFFFF;
    transition: transform 0.5s ease;
    animation: globe-float 8s ease-in-out infinite alternate;
}
.hero-mockup-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.hero-mockup-container:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Sidebar Quick Floater Bar */
.sidebar-float-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.float-apply {
    background: #2563EB;
}
.float-whatsapp {
    background: #25D366;
}
.float-call {
    background: #0EA5E9;
}
.float-btn:hover {
    transform: scale(1.1);
}
.float-tooltip {
    position: absolute;
    right: 60px;
    background: #1F2937;
    color: #FFFFFF;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.float-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #1F2937;
}
.float-btn:hover .float-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 768px) {
    .sidebar-float-bar {
        right: 10px;
        gap: 10px;
    }
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .float-tooltip {
        display: none;
    }
}

/* Hero Features Card Layout */
.hero-features-card {
    padding: 30px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: var(--border-radius-lg);
    text-align: left;
}

.features-card-header {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 16px;
}

.features-card-header .card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-glow);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.features-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.features-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.feature-item-inline:hover {
    background: rgba(37, 99, 235, 0.02);
}

.feature-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--secondary-glow);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.feature-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.feature-item-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.feature-item-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.features-card-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
    text-align: center;
    gap: 8px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.mini-stat-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.mini-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}


