/* style.css - Enyxum Professional Light Theme (White/Blue/Gray) with Online Background Images */

:root {
    --pure-white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #f1f5f9;
    --mid-gray: #e2e8f0;
    --text-gray: #334155;
    --text-light: #64748b;
    --text-dark: #0f172a;
    --accent-blue: #2563eb;
    --accent-dark: #1e40af;
    --accent-glow: #3b82f6;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    --border-light: 1px solid var(--mid-gray);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--accent-blue) !important; }
.text-gray { color: var(--text-gray) !important; }
.text-light { color: var(--text-light) !important; }

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border-bottom: var(--border-light);
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: var(--pure-white);
    box-shadow: var(--shadow-sm);
}

.navbar .brand-name {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 0.5rem;
    letter-spacing: -0.02em;
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-blue) !important;
    background: none;
}

/* Hero Section - WITH ONLINE BACKGROUND IMAGE */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2069&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--pure-white) !important;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95) !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    color: white;
}

.btn-light-outline {
    background: transparent;
    color: var(--pure-white) !important;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-light-outline:hover {
    border-color: var(--pure-white);
    color: var(--pure-white) !important;
    background: rgba(255,255,255,0.1);
}

.btn-card {
    background-color: var(--pure-white);
    color: var(--accent-blue);
    border: 1px solid var(--mid-gray);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-card:hover {
    background-color: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

/* Features Bar */
.features-bar {
    background-color: var(--pure-white);
    border-bottom: var(--border-light);
    padding: 2rem 0;
}

.feature-item h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
    line-height: 1.4;
}

.icon-glow {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-blue);
    font-size: 1.25rem;
    border: var(--border-light);
}

.border-start-faint {
    border-left: var(--border-light);
}

/* Cards */
.pillar-card, .info-card, .industry-card-modern, .card-bg-glass {
    background: var(--pure-white);
    border: var(--border-light);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.pillar-card:hover, .info-card:hover, .industry-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.pillar-card h5, .pillar-card h6 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Industry Cards (Homepage) */
.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--pure-white);
    border: var(--border-light);
    transition: all 0.3s;
}

.industry-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.industry-content {
    padding: 1.5rem;
    background: var(--pure-white);
}

.industry-content h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Industry Grid (Modern) */
.industry-card-modern {
    padding: 0;
    overflow: hidden;
}

.industry-card-modern .card-media {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.industry-card-modern .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.industry-card-modern:hover .card-image {
    transform: scale(1.05);
}

.industry-card-modern .card-content {
    padding: 1.5rem;
}

.industry-card-modern .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.industry-card-modern .card-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.industry-card-modern .card-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.industry-card-modern .stat {
    flex: 1;
}

.industry-card-modern .stat-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: block;
}

.industry-card-modern .stat-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    padding: 3rem 0;
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-text {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1rem;
}

.border-stat {
    border-left: var(--border-light);
    border-right: var(--border-light);
}

.stat-main-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* World / Delivery Section */
.world-section {
    padding: 5rem 0;
    background-color: var(--pure-white);
}

.map-container {
    position: relative;
    display: inline-block;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: var(--border-light);
}

.map-image {
    filter: grayscale(100%) opacity(0.3);
    transition: all 0.3s;
}

.map-pulse-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.map-pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}



/* Optimized for the Netherlands / Western Europe */
.netherlands-dot { 
    top: 19%; 
    left: 48%; 
}

/* CTA Section - WITH ONLINE BACKGROUND IMAGE */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    border-top: var(--border-light);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--pure-white) !important;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95) !important;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
.main-footer {
    background-color: var(--pure-white);
    border-top: var(--border-light);
    padding: 3rem 0;
}

.main-footer a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-footer a:hover {
    color: var(--accent-blue);
}

.footer-contact-info {
    color: var(--text-gray);
    font-weight: 500;
}

.footer-contact-info i {
    color: var(--accent-blue);
}

/* Form Elements */
.custom-input, .form-select {
    background-color: var(--pure-white);
    border: var(--border-light);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    transition: all 0.2s;
}

.custom-input:focus, .form-select:focus {
    border-color: var(--accent-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Info Sidebar / Cards */
.info-card.highlight-card {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    border: none;
    color: white;
}

.info-card.highlight-card h5,
.info-card.highlight-card .text-white {
    color: white !important;
}

.info-card.highlight-card .text-accent {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Privacy Page - WITH ONLINE BACKGROUND IMAGE */
.privacy-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.privacy-hero .container {
    position: relative;
    z-index: 2;
}

.privacy-hero h1 {
    color: var(--pure-white) !important;
}

.privacy-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

.privacy-sidebar {
    position: sticky;
    top: 100px;
}

.privacy-nav .nav-link {
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.privacy-nav .nav-link:hover,
.privacy-nav .nav-link.active {
    background-color: var(--light-gray);
    color: var(--accent-blue);
}

.privacy-main {
    background: var(--pure-white);
    border: var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.share-card, .right-card, .challenge-card, .solution-card {
    background: var(--off-white);
    border: var(--border-light);
    border-radius: 12px;
    padding: 1.25rem;
}

/* Contact Page - WITH ONLINE BACKGROUND IMAGE */
.contact-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=2074&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    color: var(--pure-white) !important;
}

.contact-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

/* Industries Page - WITH ONLINE BACKGROUND IMAGE */
.industries-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.industries-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.industries-hero .container {
    position: relative;
    z-index: 2;
}

.industries-hero h1 {
    color: var(--pure-white) !important;
}

.industries-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

/* About Page - WITH ONLINE BACKGROUND IMAGE */
.about-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    color: var(--pure-white) !important;
}

.about-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

/* Careers Page - WITH ONLINE BACKGROUND IMAGE */
.careers-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1527689368864-3a821dbccc34?auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.careers-hero .container {
    position: relative;
    z-index: 2;
}

.careers-hero h1 {
    color: var(--pure-white) !important;
}

.careers-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

/* What We Do Page - WITH ONLINE BACKGROUND IMAGE */
.what-we-do-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1974&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.what-we-do-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.what-we-do-hero .container {
    position: relative;
    z-index: 2;
}

.what-we-do-hero h1 {
    color: var(--pure-white) !important;
}

.what-we-do-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

/* Delivery Page - WITH ONLINE BACKGROUND IMAGE */
.delivery-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2015&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.delivery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.delivery-hero .container {
    position: relative;
    z-index: 2;
}

.delivery-hero h1 {
    color: var(--pure-white) !important;
}

.delivery-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

/* Industry Detail Pages - WITH ONLINE BACKGROUND IMAGE SUPPORT */
.industry-detail-hero {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.industry-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.industry-detail-hero .container {
    position: relative;
    z-index: 2;
}

.industry-detail-hero h1 {
    color: var(--pure-white) !important;
}

.industry-detail-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

/* Step Number */
.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Capabilities Grid */
.capability-card {
    background: var(--pure-white);
    border: var(--border-light);
    transition: all 0.3s;
}

.capability-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .border-stat {
        border: none;
        border-top: var(--border-light);
        border-bottom: var(--border-light);
        padding: 1rem 0;
        margin: 1rem 0;
    }
    
    .border-start-faint {
        border-left: none;
        border-top: var(--border-light);
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .navbar .brand-name {
        font-size: 1.25rem;
    }
    
    .hero-section,
    .industries-hero,
    .about-hero,
    .careers-hero,
    .delivery-hero,
    .what-we-do-hero,
    .contact-hero,
    .privacy-hero,
    .industry-detail-hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }
}

/* Utilities */
.max-w-750 {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.border-accent {
    border: 2px solid var(--accent-blue) !important;
}

.bg-primary {
    background-color: var(--accent-blue) !important;
}

.bg-dark {
    background-color: var(--off-white) !important;
}

.table-dark {
    background-color: var(--off-white);
    color: var(--text-dark);
    border-color: var(--mid-gray);
}

.table-dark th {
    background-color: var(--light-gray);
    color: var(--text-dark);
    font-weight: 600;
    border-color: var(--mid-gray);
}

.table-dark td {
    border-color: var(--mid-gray);
    color: var(--text-gray);
}

/* Glass Card Alternative (for consistency) */
.card-bg-glass {
    background: var(--pure-white);
    backdrop-filter: none;
    border: var(--border-light);
}

/* Additional Polish */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    border-radius: 4px;
    margin: 1rem 0;
}

/* Hero Shapes */
.hero-shapes .shape {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    opacity: 0.03;
}

/* Ensure all hero section text is white */
.hero-section p,
.hero-section span,
.hero-section .lead,
.industries-hero p,
.industries-hero span,
.about-hero p,
.about-hero span,
.careers-hero p,
.careers-hero span,
.delivery-hero p,
.delivery-hero span,
.what-we-do-hero p,
.what-we-do-hero span,
.contact-hero p,
.contact-hero span,
.privacy-hero p,
.privacy-hero span,
.industry-detail-hero p,
.industry-detail-hero span,
.cta-section p,
.cta-section span {
    color: rgba(255,255,255,0.95) !important;
}

/* Override for any remaining text that should be white in hero sections */
.hero-section .btn-light-outline,
.industries-hero .btn-light-outline,
.about-hero .btn-light-outline,
.careers-hero .btn-light-outline,
.delivery-hero .btn-light-outline,
.what-we-do-hero .btn-light-outline,
.contact-hero .btn-light-outline,
.privacy-hero .btn-light-outline,
.industry-detail-hero .btn-light-outline {
    color: var(--pure-white) !important;
}













/* Enhanced Impact Section Styles */

.feature-item-list {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-weight: 500;
    color: var(--text-gray);
}

.feature-item-list i {
    font-size: 1.2rem;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
}

/* Make cards look more like the screenshot with specific padding and borders */
.interactive-card {
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--off-white);
    padding: 2.5rem 2rem !important; /* Increased padding for enterprise feel */
}

.interactive-card:hover {
    border-left-color: var(--accent-blue);
    background: var(--pure-white);
    transform: translateX(10px); /* Slight slide effect */
}

.interactive-card h5 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.interactive-card:hover h5 {
    color: var(--accent-blue);
}

/* Button refinement to ensure it pops against the white background */
.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}








/* Visual Bridge / Arrow Styles */
.visual-bridge {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.bridge-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--mid-gray), var(--accent-blue));
    opacity: 0.4;
}

.bridge-arrow {
    width: 40px;
    height: 40px;
    background: var(--pure-white);
    border: 1px solid var(--mid-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 0.8rem;
    box-shadow: var(--shadow-sm);
    margin-left: -20px; /* Overlap the line */
    animation: arrowPulse 2.5s infinite ease-in-out;
}

@keyframes arrowPulse {
    0% {
        transform: translateX(0);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.2);
    }
    50% {
        transform: translateX(10px);
        box-shadow: 0 0 20px 5px rgba(37, 99, 235, 0.1);
    }
    100% {
        transform: translateX(0);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Ensure Column alignment works for the bridge */
.row.align-items-stretch {
    display: flex;
}





/* ===== BUSINESS IMPACT PAGE STYLES ===== */

/* Impact Hero */
.impact-hero {
    position: relative;
    padding: 180px 0 120px;
    background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.impact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    z-index: 1;
}

.impact-hero .container {
    position: relative;
    z-index: 2;
}

.impact-hero h1 {
    color: var(--pure-white) !important;
}

.impact-hero .lead {
    color: rgba(255,255,255,0.95) !important;
}

/* Badge Style */
.badge.bg-accent\/10 {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--accent-blue);
}

/* Outcome Cards */
.outcome-card {
    background: var(--pure-white);
    border: var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.outcome-card.highlight-card {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    border: none;
}

.outcome-card.highlight-card .text-gray {
    color: rgba(255, 255, 255, 0.9) !important;
}

.outcome-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    font-size: 1.8rem;
    border: var(--border-light);
}

.highlight-card .outcome-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.impact-list ul li {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.highlight-card .impact-list ul li {
    color: rgba(255, 255, 255, 0.9);
}

/* KPI Cards */
.kpi-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.kpi-card:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-4px);
}

/* Measurement Showcase */
.measurement-showcase {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1e293b 100%);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.progress-bar-custom {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-glow) 100%);
    border-radius: 4px;
    position: relative;
    animation: progressFill 1.5s ease-out;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: var(--target-width); }
}

/* Impact Stats */
.impact-stats {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

/* Story Cards */
.story-card {
    background: var(--pure-white);
    border: var(--border-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: var(--accent-blue);
    opacity: 0.1;
    font-family: serif;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.story-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-light);
}

/* CTA Card */
.cta-card {
    background: var(--pure-white);
    border: var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* Section Spacing */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .impact-hero {
        padding: 120px 0 80px;
        background-attachment: scroll;
    }
    
    .outcome-card {
        padding: 1.5rem;
    }
    
    .measurement-showcase {
        padding: 2rem !important;
    }
    
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */

/* Background utilities */
.bg-dark-light {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

/* Text utilities */
.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Enhanced hover effects for outcome cards */
.outcome-card {
    position: relative;
    z-index: 1;
}

.outcome-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 20px;
}

.outcome-card:hover::after {
    opacity: 1;
}

/* Highlight card specific styles */
.highlight-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(6, 18, 45, 0.85) 0%, rgba(20, 43, 119, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.highlight-card:hover::before {
    opacity: 1;
}

/* Animation for stats */
.stat-number {
    animation: countUp 2s ease-out;
}

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

/* Enhanced button styles */
.btn-outline-accent {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--mid-gray);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline-accent:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
}

/* Section subtitle */
.section-subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

/* Section title */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ===== EXISTING STYLES FROM YOUR FILE - KEEP ALL OF THESE ===== */
/* ... (keep all your existing styles below) ... */


#impact, #industries, #delivery {
    scroll-margin-top: 90px;
}




#impact .interactive-card {
    padding: 1rem 1.5rem !important; 
    margin-bottom: 0.5rem !important; 
}


#impact .interactive-card h5 {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
}


#impact .interactive-card p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
}


#impact .solution-grid .row.g-4 {
    --bs-gutter-y: 0.75rem !important; 
}
