/* ===== CSS Variables - Premium Theme ===== */
:root {
    /* Primary Brand Colors */
    --navy: #0A192F;
    --gold: #C5A059;
    --white: #FFFFFF;
    --light-navy: #112240;
    --slate: #8892B0;
    --light-slate: #CCD6F6;
    
    /* Accent Colors */
    --green: #64FFDA;
    --orange: #F9A826;
    --red: #FF6B6B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, #152B4F 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #E4B95B 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.7) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(10px);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--slate);
    background-color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--light-slate);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

/* ===== Premium Header with Glassmorphism ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

/* Logo Styles */
.logo-wrapper {
    flex-shrink: 0;
}

.logo-visual {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Styles */
.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    position: relative;
    color: var(--light-slate);
    font-weight: 500;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--white);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    justify-content: center;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border-color: var(--light-slate);
    color: var(--light-slate);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    background: rgba(10, 25, 47, 0.9);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: auto;
}

#main-content.menu-open {
    filter: blur(8px);
    opacity: 0.5;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    padding: var(--space-xl) var(--space-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.mobile-logo i {
    color: var(--gold);
    font-size: 2rem;
}

.mobile-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.close-mobile {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-list {
    flex: 1;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--light-slate);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link i {
    width: 24px;
    color: var(--gold);
}

.mobile-link.active {
    color: var(--white);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.mobile-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.mobile-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}







/* ===== CSS Variables - Industries Page Theme ===== */
:root {
    /* Primary Brand Colors */
    --navy: #0A192F;
    --gold: #C5A059;
    --white: #FFFFFF;
    --light-navy: #112240;
    --slate: #8892B0;
    --light-slate: #CCD6F6;
    
    /* Industry Colors */
    --technology: #3B82F6;
    --healthcare: #10B981;
    --manufacturing: #F59E0B;
    --finance: #8B5CF6;
    --retail: #EC4899;
    --energy: #059669;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, #152B4F 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #E4B95B 100%);
    --gradient-technology: linear-gradient(135deg, var(--technology) 0%, #60A5FA 100%);
    --gradient-healthcare: linear-gradient(135deg, var(--healthcare) 0%, #34D399 100%);
    --gradient-manufacturing: linear-gradient(135deg, var(--manufacturing) 0%, #FBBF24 100%);
    --gradient-finance: linear-gradient(135deg, var(--finance) 0%, #A78BFA 100%);
    --gradient-retail: linear-gradient(135deg, var(--retail) 0%, #F472B6 100%);
    --gradient-energy: linear-gradient(135deg, var(--energy) 0%, #10B981 100%);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
}

/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--slate);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

/* ===== Industries Hero Section ===== */
.industries-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.industries-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: var(--light-slate);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--white);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-slate);
    margin-bottom: var(--space-xl);
    max-width: 700px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--light-slate);
    display: block;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-wave path {
    fill: var(--white);
}

/* ===== Industries Overview ===== */
.industries-overview {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
}

.industries-navigation {
    margin-top: var(--space-xl);
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-sm);
}

.industry-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    background: transparent;
    border: 2px solid rgba(10, 25, 47, 0.1);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.industry-nav-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-nav-btn.active {
    color: var(--white);
    border-color: transparent;
}

.industry-nav-btn[data-industry="technology"]:hover {
    border-color: var(--technology);
}

.industry-nav-btn[data-industry="technology"].active {
    background: var(--gradient-technology);
}

.industry-nav-btn[data-industry="healthcare"]:hover {
    border-color: var(--healthcare);
}

.industry-nav-btn[data-industry="healthcare"].active {
    background: var(--gradient-healthcare);
}

.industry-nav-btn[data-industry="manufacturing"]:hover {
    border-color: var(--manufacturing);
}

.industry-nav-btn[data-industry="manufacturing"].active {
    background: var(--gradient-manufacturing);
}

.industry-nav-btn[data-industry="finance"]:hover {
    border-color: var(--finance);
}

.industry-nav-btn[data-industry="finance"].active {
    background: var(--gradient-finance);
}

.industry-nav-btn[data-industry="retail"]:hover {
    border-color: var(--retail);
}

.industry-nav-btn[data-industry="retail"].active {
    background: var(--gradient-retail);
}

.industry-nav-btn[data-industry="energy"]:hover {
    border-color: var(--energy);
}

.industry-nav-btn[data-industry="energy"].active {
    background: var(--gradient-energy);
}

.industry-nav-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ===== Industry Sections ===== */
.industry-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    background: #F8F9FA;
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    padding: var(--space-xl) 0;
}

.industry-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Industry-specific background gradients */
#technology-section {
    border-left: 6px solid var(--technology);
}

#healthcare-section {
    border-left: 6px solid var(--healthcare);
}

#manufacturing-section {
    border-left: 6px solid var(--manufacturing);
}

#finance-section {
    border-left: 6px solid var(--finance);
}

#retail-section {
    border-left: 6px solid var(--retail);
}

#energy-section {
    border-left: 6px solid var(--energy);
}

.industry-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid rgba(10, 25, 47, 0.1);
}

.industry-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.industry-tag {
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-location {
    color: var(--slate);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
}

.industry-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.industry-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    max-width: 800px;
}

/* Industry Stats */
.industry-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

#technology-section .stat-icon {
    background: var(--gradient-technology);
}

#healthcare-section .stat-icon {
    background: var(--gradient-healthcare);
}

#manufacturing-section .stat-icon {
    background: var(--gradient-manufacturing);
}

#finance-section .stat-icon {
    background: var(--gradient-finance);
}

#retail-section .stat-icon {
    background: var(--gradient-retail);
}

#energy-section .stat-icon {
    background: var(--gradient-energy);
}

.stat-content h3 {
    font-size: 2rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-content p {
    font-size: 0.875rem;
    color: var(--slate);
}

/* Challenges & Solutions */
.challenges-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.challenges, .solutions {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.challenges h3, .solutions h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.challenges h3 i {
    color: #EF4444;
}

.solutions h3 i {
    color: var(--gold);
}

.challenge-list, .solution-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.challenge-item, .solution-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.challenge-icon, .solution-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

#technology-section .challenge-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--technology);
}

#healthcare-section .challenge-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--healthcare);
}

#manufacturing-section .challenge-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--manufacturing);
}

#finance-section .challenge-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--finance);
}

#retail-section .challenge-icon {
    background: rgba(236, 72, 153, 0.1);
    color: var(--retail);
}

#energy-section .challenge-icon {
    background: rgba(5, 150, 105, 0.1);
    color: var(--energy);
}

#technology-section .solution-icon {
    background: var(--gradient-technology);
    color: var(--white);
}

#healthcare-section .solution-icon {
    background: var(--gradient-healthcare);
    color: var(--white);
}

#manufacturing-section .solution-icon {
    background: var(--gradient-manufacturing);
    color: var(--white);
}

#finance-section .solution-icon {
    background: var(--gradient-finance);
    color: var(--white);
}

#retail-section .solution-icon {
    background: var(--gradient-retail);
    color: var(--white);
}

#energy-section .solution-icon {
    background: var(--gradient-energy);
    color: var(--white);
}

.challenge-content h4, .solution-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.challenge-content p, .solution-content p {
    color: var(--slate);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--navy);
}

.solution-features i {
    color: var(--gold);
    font-size: 0.875rem;
}

/* Industry Services */
.industry-services {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.industry-services h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--navy);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.service-item {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 25, 47, 0.1);
    transition: all var(--transition-base);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

#technology-section .service-item:hover {
    border-color: var(--technology);
}

#healthcare-section .service-item:hover {
    border-color: var(--healthcare);
}

#manufacturing-section .service-item:hover {
    border-color: var(--manufacturing);
}

#finance-section .service-item:hover {
    border-color: var(--finance);
}

#retail-section .service-item:hover {
    border-color: var(--retail);
}

#energy-section .service-item:hover {
    border-color: var(--energy);
}

.service-item i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

#technology-section .service-item i {
    color: var(--technology);
}

#healthcare-section .service-item i {
    color: var(--healthcare);
}

#manufacturing-section .service-item i {
    color: var(--manufacturing);
}

#finance-section .service-item i {
    color: var(--finance);
}

#retail-section .service-item i {
    color: var(--retail);
}

#energy-section .service-item i {
    color: var(--energy);
}

.service-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.service-item p {
    font-size: 0.75rem;
    color: var(--slate);
    line-height: 1.4;
}

/* ===== Industry Comparison CTA ===== */
.industry-comparison {
    background: var(--gradient-primary);
    color: var(--white);
}

.industry-comparison .section-header {
    margin-bottom: var(--space-xl);
}

.industry-comparison .section-title {
    color: var(--white);
}

.industry-comparison .section-description {
    color: var(--light-slate);
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.comparison-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-slate);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    text-align: center;
    justify-content: center;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.comparison-benefits {
    padding: var(--space-xl) 0;
}

.comparison-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.benefit {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.benefit i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.benefit-content p {
    color: var(--light-slate);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .industry-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .challenges-solutions {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title, .industry-title {
        font-size: 2rem;
    }
    
    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .comparison-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--space-lg) 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle, .industry-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .nav-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-section {
        padding: var(--space-lg) 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title, .industry-title {
        font-size: 1.75rem;
    }
    
    .challenge-item, .solution-item, .benefit {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .challenge-icon, .solution-icon {
        align-self: flex-start;
    }
}

/* ===== Animation Classes ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-animation > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }






/* ===== Premium Footer ===== */
.footer {
    background: var(--light-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--gold);
}

.footer-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--white);
}

.footer-logo-text p {
    font-size: 0.875rem;
    color: var(--slate);
}

.footer-description {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-slate);
    font-size: 0.875rem;
}

.footer-contact i {
    color: var(--gold);
    width: 16px;
}

.footer-title {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--slate);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.newsletter-form p {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: var(--space-sm);
}

.input-group {
    display: flex;
    margin-bottom: var(--space-md);
}

.input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.input-group button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-info {
    font-size: 0.75rem;
    color: var(--slate);
}

.footer-info p {
    margin-bottom: 0.25rem;
}

.footer-certifications {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cert-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--light-slate);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 1000;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-notification {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    border: 2px solid var(--navy);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.chat-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    padding: var(--space-md);
    background: var(--light-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-agent {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.25rem;
}

.agent-info h4 {
    font-size: 1rem;
    margin-bottom: 0.125rem;
    color: var(--white);
}

.agent-info p {
    font-size: 0.75rem;
    color: var(--slate);
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--slate);
    font-size: 1rem;
    cursor: pointer;
}

.chat-close:hover {
    color: var(--white);
}

.chat-body {
    padding: var(--space-md);
    max-height: 400px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: var(--space-md);
}

.chat-message.agent {
    text-align: left;
}

.chat-message p {
    background: var(--light-navy);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
    color: var(--light-slate);
    display: inline-block;
    max-width: 80%;
}

.message-time {
    display: block;
    font-size: 0.75rem;
    color: var(--slate);
    margin-top: 0.25rem;
    margin-left: var(--space-sm);
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--space-md);
}

.chat-option {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-slate);
    padding: 0.75rem var(--space-md);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.chat-option:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.chat-input {
    padding: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: var(--space-sm);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--gold);
}

.send-btn {
    width: 48px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .bento-grid {
        grid-template-rows: repeat(6, 100px);
    }
}

@media (max-width: 992px) {
    .header-actions .btn span {
        display: none;
    }
    
    .header-actions .btn i {
        margin-right: 0;
    }
    
    .nav-list {
        gap: var(--space-sm);
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .serve-container {
        flex-direction: column;
        height: auto;
    }
    
    .serve-panel {
        height: 400px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-card.large,
    .bento-card.wide {
        grid-column: span 6;
    }
    
    .bento-card.tall,
    .bento-card:not(.large):not(.tall):not(.wide) {
        grid-column: span 3;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .primary-nav {
        display: none;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .header-actions .btn-small:last-child {
        display: flex;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.large,
    .bento-card.wide,
    .bento-card.tall,
    .bento-card:not(.large):not(.tall):not(.wide) {
        grid-column: span 2;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .chat-container {
        width: calc(100vw - 40px);
        right: -20px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 1.75rem;
    }
    
    .slide-badge {
        font-size: 0.75rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        justify-content: center;
        text-align: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card.large,
    .bento-card.wide,
    .bento-card.tall,
    .bento-card:not(.large):not(.tall):not(.wide) {
        grid-column: span 1;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: var(--space-sm);
    }
    
    .carousel-next {
        right: var(--space-sm);
    }
}

/* ===== Utility Classes ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-employer {
    background: var(--gradient-gold);
    color: var(--navy);
}

.btn-jobseeker {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-chat-small {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}