/* ==========================================================================
   Business-Focused Premium Design System
   ========================================================================== */
:root {
    /* Colors */
    --clr-primary: #0F3D6E;
    --clr-accent: #F47C20;
    --clr-bg: #F7F9FC;
    --clr-dark: #0A1118;
    --clr-text: #1D2939;
    --clr-text-light: #64748b;
    --clr-white: #ffffff;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Variables */
    --radius-sm: 8px;
    --radius-md: 16px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(10, 17, 24, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    overflow-x: hidden;
    line-height: 1.6;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 10rem 0; /* Huge Apple-style spacing */
}

.section-sm {
    padding: 3rem 0;
}

.dark-bg {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4 {
    color: var(--clr-white);
}

.text-gray { color: var(--clr-text-light) !important; }
.text-white { color: var(--clr-white) !important; }
.bg-light { background-color: #F1F5F9; }

.section-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-top: 1rem;
}

.massive-text {
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -0.03em;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-white);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo-img {
    height: 60px;
    margin-bottom: 2rem;
    opacity: 0;
}

.gear-icon {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 2rem;
    opacity: 0;
}

.progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(15, 61, 110, 0.1);
    margin: 0 auto;
    overflow: hidden;
    opacity: 0;
}

.progress-line {
    width: 0%;
    height: 100%;
    background: var(--clr-accent);
}

/* ==========================================================================
   Floating CTA (WhatsApp)
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--clr-white);
    padding: 10px 20px 10px 15px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 999;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cta-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text);
}

.cta-icon {
    width: 40px;
    height: 40px;
    background: #25D366; /* WhatsApp Green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ==========================================================================
   Navbar (Glassmorphism)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    transition: var(--transition-smooth);
}
.navbar.scrolled .logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-accent);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 50px; /* Fully rounded */
    font-family: var(--font-heading);
    font-weight: 500;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.btn-outline {
    background: transparent;
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline.border-white {
    border-color: rgba(255,255,255,0.3);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

/* Hover Effects */
.hover-lift:hover {
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: var(--clr-accent);
}

.btn-outline:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
}

.btn-outline.text-white:hover {
    background: var(--clr-white);
    color: var(--clr-primary) !important;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-color: var(--clr-bg);
    overflow: hidden;
}

/* Animated Blueprint Grid */
.blueprint-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(15, 61, 110, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 61, 110, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Animated Node in Grid */
.blueprint-grid-bg::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    top: 50px;
    left: 50px;
    box-shadow: 0 0 10px var(--clr-accent);
    animation: moveNode 10s linear infinite;
}

@keyframes moveNode {
    0% { transform: translate(0, 0); }
    25% { transform: translate(250px, 0); }
    50% { transform: translate(250px, 150px); }
    75% { transform: translate(0, 150px); }
    100% { transform: translate(0, 0); }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    position: relative;
}

.hero-left {
    width: 60%;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-title .line {
    opacity: 0; /* Handled by GSAP */
    transform: translateY(30px);
}

.hero-title .accent {
    color: var(--clr-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-light);
    margin-bottom: 3rem;
    max-width: 500px;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
}

.hero-right {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
}

.hero-image-container {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

/* ==========================================================================
   Trust Marquee
   ========================================================================== */
.trust-bar {
    background: var(--clr-white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-track img {
    height: 200px;
    margin: 0 4rem;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity var(--transition-fast), filter var(--transition-fast);
    vertical-align: middle;
}

.marquee-track img:hover {
    opacity: 1;
    filter: grayscale(100%);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Services (Feature Tiles)
   ========================================================================== */
.feature-tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.feature-tile {
    background: var(--clr-white);
    padding: 4rem;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.feature-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: border-color var(--transition-smooth);
}

.feature-tile:hover {
    background: var(--clr-primary);
    transform: scale(1.02);
}

.feature-tile:hover::before {
    border-color: var(--clr-accent);
}

.tile-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: color var(--transition-smooth);
}

.tile-content p {
    color: var(--clr-text-light);
    font-size: 1.1rem;
    max-width: 400px;
    transition: color var(--transition-smooth);
}

.feature-tile:hover .tile-content h3,
.feature-tile:hover .tile-content p {
    color: var(--clr-white);
}

.tile-action {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-tile:hover .tile-action {
    background: var(--clr-accent);
    color: var(--clr-white);
    transform: translateX(10px);
}

/* ==========================================================================
   Full-Screen Sectors Experience (GSAP)
   ========================================================================== */
.sectors-fullscreen {
    position: relative;
    background: var(--clr-dark);
    height: 100vh;
    overflow: hidden;
}

.sector-bgs {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sector-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.sector-bg.active {
    opacity: 1;
}

.sector-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,17,24,0.95) 0%, rgba(10,17,24,0.4) 100%);
    z-index: 2;
}

.sectors-content-wrap {
    position: relative;
    z-index: 3;
    height: 100vh;
}

.sector-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.intro-slide {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--clr-white);
}

.scroll-line {
    width: 100px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: moveLine 2s infinite ease-in-out;
}

@keyframes moveLine {
    0% { left: 0; }
    100% { left: 100%; opacity: 0; }
}

.sector-text {
    max-width: 600px;
    transform: translateY(50px); /* Animated by GSAP */
}

.sector-text h3 {
    font-size: 4rem;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.sector-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Recruitment Production Line
   ========================================================================== */
.production-line-container {
    position: relative;
    margin-top: 8rem;
}

.prod-line-track {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 1;
}

.prod-line-progress {
    position: absolute;
    top: 25px;
    left: 0;
    width: 0%; /* Animated by ScrollTrigger */
    height: 2px;
    background: var(--clr-accent);
    box-shadow: 0 0 15px var(--clr-accent);
    z-index: 2;
}

.prod-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.prod-node {
    text-align: center;
    width: 150px;
}

.node-dot {
    width: 50px;
    height: 50px;
    background: var(--clr-dark);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-dot::after {
    content: '';
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.prod-node.active .node-dot {
    border-color: var(--clr-accent);
    box-shadow: 0 0 20px rgba(244, 124, 32, 0.4);
}

.prod-node.active .node-dot::after {
    background: var(--clr-accent);
    box-shadow: 0 0 10px var(--clr-accent);
}

.prod-node h4 {
    color: rgba(255,255,255,0.3);
    font-size: 1.1rem;
    transition: color var(--transition-smooth);
}

.prod-node.active h4 {
    color: var(--clr-white);
}

/* ==========================================================================
   Animated Statistics (Card Grid)
   ========================================================================== */
.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
}

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

.stat-icon {
    font-size: 2.5rem;
    color: rgba(244, 124, 32, 0.2);
    margin-bottom: 1rem;
    transition: color var(--transition-smooth);
}

.stat-card:hover .stat-icon {
    color: var(--clr-accent);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 1.25rem;
    color: var(--clr-text);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Latest Jobs
   ========================================================================== */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
}

.job-row {
    background: var(--clr-white);
    padding: 2rem 3rem;
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

.job-row:hover {
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.job-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.job-tags {
    display: flex;
    gap: 1.5rem;
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.job-tags i {
    color: var(--clr-accent);
    margin-right: 5px;
}

.job-action {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.job-type {
    background: rgba(15, 61, 110, 0.05);
    color: var(--clr-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.arrow-icon {
    font-size: 1.5rem;
    color: var(--clr-primary);
    transition: transform var(--transition-fast);
}

.job-row:hover .arrow-icon {
    color: var(--clr-accent);
    transform: translateX(5px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

.footer-grid {
    display: flex;
    gap: 5rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--clr-text-light);
    margin-bottom: 0.8rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
}

/* Utilities */
.reveal-up { opacity: 0; transform: translateY(30px); }
.reveal-scale { opacity: 0; transform: scale(0.95); }

/* ==========================================================================
   Jobs Recruitment Landing Page & Dynamic Form Styles
   ========================================================================== */
.job-landing-page {
    background-color: #F8FAFC;
    color: #0F172A;
}

.breadcrumb-bar {
    background: #081826;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.85rem;
    color: #94A3B8;
}

.breadcrumb a {
    color: #CBD5E1;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #F47C20;
}

.breadcrumb li#breadcrumb-current-job {
    color: #F47C20;
    font-weight: 600;
}

.job-hero {
    background: linear-gradient(135deg, #081826 0%, #0F3D6E 100%);
    padding: 3rem 0 3.5rem;
    position: relative;
    overflow: hidden;
    color: white;
    border-bottom: 3px solid #F47C20;
}

.trust-proof-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.badge-urgency {
    background: rgba(244, 124, 32, 0.18);
    color: #F47C20;
    border: 1px solid rgba(244, 124, 32, 0.4);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

.badge-social-proof {
    background: rgba(16, 185, 129, 0.18);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
}

.hiring-now-tag {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #F47C20;
    margin-bottom: 4px;
}

.job-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.job-company-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #CBD5E1;
    margin-bottom: 1.5rem;
}

.job-type-pill {
    background: rgba(255,255,255,0.1);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.82rem;
}

.job-hero-key-metrics {
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    max-width: 650px;
    margin-bottom: 2rem;
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-box .label {
    font-size: 0.78rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-box .val {
    font-size: 1.15rem;
    font-weight: 700;
    color: #F47C20;
    margin-top: 2px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon-only {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-icon-only:hover {
    background: #F47C20;
    border-color: #F47C20;
}

.job-main-section {
    padding: 3rem 0;
}

.job-layout-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.content-block {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid #E2E8F0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.section-block-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F3D6E;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #F1F5F9;
    padding-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-block-title i {
    color: #F47C20;
}

.job-quick-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: #F8FAFC;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
}

.quick-card .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(15, 61, 110, 0.1);
    color: #0F3D6E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.quick-card .card-label {
    display: block;
    font-size: 0.75rem;
    color: #64748B;
    text-transform: uppercase;
}

.quick-card strong {
    font-size: 0.92rem;
    color: #0F172A;
}

.about-company-box {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}

.company-highlights {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 1rem;
    font-size: 0.88rem;
    color: #0F3D6E;
    font-weight: 600;
}

.company-highlights span i {
    color: #10B981;
    margin-right: 6px;
}

.jd-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #334155;
}

.sub-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #0F3D6E;
    margin: 1.25rem 0 0.5rem;
}

.responsibilities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.responsibilities-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.92rem;
}

.responsibilities-list li i {
    color: #10B981;
    margin-top: 4px;
}

.skills-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: #F1F5F9;
    color: #0F3D6E;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid #CBD5E1;
}

.skill-tag i {
    color: #F47C20;
    margin-right: 4px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    padding: 0.9rem 1rem;
    border-radius: 12px;
}

.benefit-card i {
    font-size: 1.4rem;
    color: #166534;
}

.benefit-card strong {
    display: block;
    font-size: 0.92rem;
    color: #14532D;
}

.benefit-card span {
    font-size: 0.78rem;
    color: #166534;
}

.why-hirehubb-box {
    background: linear-gradient(135deg, #0F3D6E 0%, #081826 100%);
    color: white;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.trust-item i {
    font-size: 1.3rem;
    color: #F47C20;
    margin-top: 2px;
}

.trust-item strong {
    display: block;
    font-size: 0.92rem;
    color: white;
}

.trust-item span {
    font-size: 0.8rem;
    color: #94A3B8;
}

.related-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.related-job-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-help-box {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-help-box h3 {
    font-size: 1.1rem;
    color: #78350F;
    margin-bottom: 2px;
}

.contact-help-box p {
    font-size: 0.85rem;
    color: #92400E;
}

.help-contact-buttons {
    display: flex;
    gap: 8px;
}

/* Sticky Form Column & Wrapper */
.sticky-form-wrapper {
    position: sticky;
    top: 90px;
    background: white;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

.form-header-card {
    background: #0F3D6E;
    color: white;
    padding: 1.5rem;
    border-bottom: 3px solid #F47C20;
}

.form-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.form-title-row h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: white;
}

.badge-direct {
    background: #F47C20;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.form-header-card p {
    font-size: 0.82rem;
    color: #CBD5E1;
}

.form-progress-box {
    margin-top: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem;
    border-radius: 8px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #E2E8F0;
}

.progress-bar-track {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
}

.progress-bar-fill {
    height: 100%;
    background: #F47C20;
    transition: width 0.3s ease;
}

.alert-draft-saved {
    background: #DCFCE7;
    color: #166534;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 8px;
}

.dynamic-form-body {
    padding: 1.5rem;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.form-section {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 1.25rem;
}

.form-section.border-0 { border: none; }
.form-section.padding-0 { padding: 0; }

.form-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F3D6E;
    margin-bottom: 0.75rem;
}

.form-section-title i {
    color: #F47C20;
    margin-right: 4px;
}

.section-hint {
    font-size: 0.8rem;
    color: #64748B;
    margin-bottom: 8px;
}

.form-group-app {
    margin-bottom: 1rem;
}

.form-group-app label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.form-group-app label .req {
    color: #EF4444;
}

.form-group-app input, .form-group-app select, .form-group-app textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 0.92rem;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    background: #FFFFFF;
}

.form-group-app input:focus, .form-group-app select:focus, .form-group-app textarea:focus {
    border-color: #0F3D6E;
    box-shadow: 0 0 0 3px rgba(15, 61, 110, 0.1);
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.skills-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.checkbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F1F5F9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #CBD5E1;
    transition: all 0.2s;
}

.checkbox-pill input {
    cursor: pointer;
}

.checkbox-pill:has(input:checked) {
    background: rgba(15, 61, 110, 0.1);
    border-color: #0F3D6E;
    color: #0F3D6E;
    font-weight: 700;
}

.upload-dropzone {
    border: 2px dashed #CBD5E1;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    background: #F8FAFC;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-dropzone:hover {
    border-color: #F47C20;
    background: rgba(244, 124, 32, 0.04);
}

.upload-icon {
    font-size: 1.8rem;
    color: #F47C20;
    display: block;
    margin-bottom: 6px;
}

.upload-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0F172A;
}

.upload-hint {
    font-size: 0.75rem;
    color: #64748B;
}

.selected-file-name {
    font-size: 0.82rem;
    margin-top: 6px;
    color: #15803D;
}

.declaration-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: #475569;
    margin-bottom: 1rem;
    cursor: pointer;
}

.btn-submit-form {
    width: 100%;
    background: #F47C20;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-form:hover {
    background: #E06B12;
}

/* Thank You Modal Overlay */
.thankyou-overlay-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.thankyou-card {
    background: white;
    border-radius: 20px;
    max-width: 520px;
    width: 100%;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.confetti-icon-box i {
    font-size: 3.5rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.thankyou-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #0F3D6E;
    margin-bottom: 0.5rem;
}

.thankyou-card p {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 1.5rem;
}

.app-id-box {
    background: #F8FAFC;
    border: 1px dashed #CBD5E1;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.app-id-box .label {
    display: block;
    font-size: 0.8rem;
    color: #64748B;
}

.app-id-code {
    font-family: monospace;
    font-size: 1.4rem;
    color: #F47C20;
    letter-spacing: 2px;
}

.assigned-recruiter-banner {
    background: #DCFCE7;
    border: 1px solid #86EFAC;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    margin-bottom: 1.5rem;
}

.assigned-recruiter-banner i {
    font-size: 1.6rem;
    color: #15803D;
}

/* ==========================================================================
   Mobile Menu Button & Navigation Base Styles
   ========================================================================== */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: transform var(--transition-fast);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--clr-dark);
}

.dark-bg .mobile-menu-btn,
.hero .mobile-menu-btn {
    color: var(--clr-white);
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
    color: var(--clr-accent) !important;
}

/* ==========================================================================
   Comprehensive Responsive Media Queries (Tablet & Mobile)
   ========================================================================== */

/* Tablet & Smaller Laptops (<= 1024px) */
@media (max-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
    
    .hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 4rem;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        max-width: 600px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        justify-content: center;
    }

    .feature-tiles-grid {
        gap: 1.5rem;
    }

    .feature-tile {
        padding: 2.5rem;
    }

    .stats-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .stat-card {
        padding: 2rem 1.25rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Tablets & Mobile Devices (<= 992px) */
@media (max-width: 992px) {
    /* Mobile Navigation Drawer */
    .mobile-menu-btn {
        display: block;
    }

    .nav-wrapper {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 17, 24, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--clr-white) !important;
    }

    .nav-cta {
        margin-right: 1rem;
    }

    /* Jobs & Forms Layout */
    .job-layout-grid {
        grid-template-columns: 1fr;
    }
    .sticky-form-wrapper {
        position: static;
    }
    .related-jobs-grid {
        grid-template-columns: 1fr;
    }
    .contact-help-box {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Feature Tiles */
    .feature-tiles-grid {
        grid-template-columns: 1fr;
    }

    /* Process Timeline */
    .prod-nodes {
        flex-wrap: wrap;
        gap: 1.5rem 0.5rem;
        justify-content: center;
    }

    .prod-node {
        width: 30%;
        min-width: 100px;
    }

    .prod-line-track,
    .prod-line-progress {
        display: none; /* Mobile view relies on step cards */
    }

    /* Stats Grid */
    .stats-cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Smartphones (<= 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 6%;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .massive-text {
        font-size: 2.5rem !important;
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-cta {
        display: none; /* Move primary action inside menu if needed or rely on hero */
    }

    /* Sectors Fullscreen Experience on Mobile */
    .sector-text h3 {
        font-size: 2.5rem;
    }

    .sector-text p {
        font-size: 1.05rem;
    }

    /* Job Landing & Forms */
    .job-hero-title {
        font-size: 1.8rem;
    }

    .job-hero-key-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row-2col {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .job-quick-info-grid,
    .trust-features-grid {
        grid-template-columns: 1fr;
    }

    /* Floating WhatsApp CTA */
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 8px 12px;
    }

    .cta-text {
        display: none; /* Icon only on mobile screens to save viewport space */
    }

    .cta-icon {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    /* Trust Marquee */
    .marquee-track img {
        height: 120px;
        margin: 0 2rem;
    }
}

/* Extra Small Screens (<= 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .prod-node {
        width: 45%;
    }

    .feature-tile {
        padding: 1.75rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .tile-action {
        align-self: flex-end;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


