/* --- Reset & Variables --- */
:root {
    --bg-dark: #011A38;
    --card-bg: #0a2744;
    --text-white: #ffffff;
    --text-gray: #d1d5db;
    --primary-blue: #2563eb;
    --hover-blue: #1d4ed8;
    --cyan-accent: #22d3ee;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

body { background-color: var(--bg-dark); color: var(--text-white); overflow-x: hidden; }

/* ========================================
   NAVIGATION (Transparent, scrolls with user)
   ======================================== */
.navbar { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 100; 
    padding: 1rem 2rem; 
    transition: all 0.3s ease; 
    background: transparent; 
}

.navbar.scrolled { 
    background: rgba(1, 26, 56, 0.95); 
    backdrop-filter: blur(10px); 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
}

.nav-container { 
    max-width: 1280px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 3rem; 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    text-decoration: none;
}

.logo img {
    filter: none !important; /* Override any grayscale filters */
    opacity: 1 !important;
}

.logo-icon { 
    width: 2.5rem; 
    height: 2.5rem; 
    background-color: #3b82f6; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.logo-dot { 
    width: 1.5rem; 
    height: 1.5rem; 
    background-color: white; 
    border-radius: 50%; 
    opacity: 0.8; 
}

.logo-text { 
    font-size: 1.25rem; 
    font-weight: 700; 
}

.text-blue { color: #3b82f6; }
.text-gray { color: #ffffff; }

.navbar.scrolled .text-gray { color: #d1d5db; }

/* Navigation Links */
.nav-links { 
    display: none; 
    align-items: center; 
    gap: 2rem; 
    flex: 1; 
    margin-left: 3rem; 
}

.nav-links a { 
    color: var(--text-white); 
    text-decoration: none; 
    transition: color 0.2s, transform 0.2s; 
    font-weight: 500; 
}

.navbar.scrolled .nav-links a {
    color: var(--text-gray);
}

.nav-links a:hover,
.nav-links a.active { 
    color: #3b82f6; 
    transform: translateY(-1px);
}

.spacer { flex: 1; }

.icon-btn { 
    background: none; 
    border: none; 
    color: white; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.icon-btn i {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-btn:hover { 
    color: #3b82f6; 
}

.navbar.scrolled .icon-btn {
    color: var(--text-gray);
}

.navbar.scrolled .icon-btn:hover {
    color: #3b82f6;
}

.btn-get-started { 
    background: transparent; 
    border: 2px solid #9ca3af; 
    color: white; 
    padding: 0.5rem 1.5rem; 
    border-radius: 9999px; 
    text-decoration: none; 
    transition: all 0.2s; 
    font-weight: 500; 
}

.btn-get-started:hover { 
    background: white; 
    color: var(--bg-dark); 
    border-color: white; 
}

.mobile-toggle { 
    display: block; 
    cursor: pointer; 
    color: white; 
    padding: 0.5rem;
    transition: color 0.2s ease;
    z-index: 110;
}

.mobile-toggle:hover {
    color: #3b82f6;
}

.mobile-toggle i {
    width: 1.5rem;
    height: 1.5rem;
}

.navbar.scrolled .mobile-toggle {
    color: var(--text-gray);
}

.navbar.scrolled .mobile-toggle:hover {
    color: #3b82f6;
}

.mobile-menu { 
    display: none; 
    flex-direction: column; 
    background: var(--bg-dark); 
    padding: 1rem; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu a { 
    color: white; 
    text-decoration: none; 
    padding: 1rem 0; 
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: #3b82f6;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu.active { 
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile Logo Sizing - Reduce by 30% on mobile */
@media (max-width: 768px) {
    .logo img,
    .footer-logo-image {
        height: 28px !important; /* 30% smaller than 40px */
        width: auto;
    }
}

/* ========================================
   INLINE SEARCH BAR (Expandable)
   ======================================== */
.inline-search-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.inline-search-input {
    width: 0;
    opacity: 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5rem 0;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.inline-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Search icon button */
.search-icon-btn {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.search-icon-btn i {
    width: 1.25rem;
    height: 1.25rem;
    transition: color 0.3s ease;
}

.search-icon-btn:hover i {
    color: #22d3ee;
}

/* EXPANDED STATE */
.inline-search-container.expanded .inline-search-input {
    width: 180px;
    opacity: 1;
    border-bottom-color: #032a59;
    padding-right: 0.5rem;
    pointer-events: auto;
    margin-right: 0.5rem;
}

.inline-search-container.expanded .search-icon-btn {
    transform: translateX(-10px);
}

.inline-search-container.expanded .search-icon-btn i {
    color: #22d3ee;
}

/* Animation for the underline */
.inline-search-input::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #032a59;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.inline-search-container.expanded .inline-search-input::after {
    width: 100%;
}

/* ========================================
   SEARCH EXPANDED STATE - Fade out nav items
   ======================================== */

/* When search is expanded, fade out all nav links */
.nav-links.search-active > a,
.nav-links.search-active > .spacer,
.nav-links.search-active > .btn-get-started {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keep the search container and logo visible */
.nav-links.search-active .inline-search-container {
    opacity: 1;
    pointer-events: auto;
}

/* Make search bar wider when nav items are hidden */
.nav-links.search-active .inline-search-container.expanded .inline-search-input {
    width: 320px;
}

/* Smooth transition for nav links when NOT in search mode */
.nav-links > a,
.nav-links > .spacer,
.nav-links > .btn-get-started {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.2s ease;
}

/* Mobile: Hide inline search, use mobile menu search instead */
@media (max-width: 767px) {
    .inline-search-container {
        display: none;
    }
}

/* --- Hero Section --- */
.hero-section { position: relative; height: 75vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding-top: 5rem; transition: opacity 0.8s ease-in-out; }
.hero-bg, .bg-shapes { position: absolute; inset: 0; z-index: 0; }
.bg-gradient { position: absolute; inset: 0; z-index: 2; }

/* Hero Background Media (Images/GIFs/Videos) */
.hero-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.bg-gradient { background: linear-gradient(135deg, rgba(1, 26, 56, 0.85) 0%, rgba(1, 26, 56, 0.5) 50%, rgba(1, 26, 56, 0.85) 100%); }
.bg-shapes svg { width: 100%; height: 100%; object-fit: cover; }

.hero-content { position: relative; z-index: 10; text-align: center; width: 100%; max-width: 1280px; padding: 0 1rem; }

/* Improved text readability with subtle shadows */
.main-title { 
    font-size: 3rem; 
    font-weight: 800; 
    margin-bottom: 1.5rem; 
    letter-spacing: -1px; 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Hero Subtitle (new element for carousel) */
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.3);
}

.network-graphic { position: relative; height: 16rem; margin-bottom: 2rem; display: flex; justify-content: center; align-items: center; }
.central-node { width: 8rem; height: 6rem; background: linear-gradient(135deg, #60a5fa, #2563eb); border-radius: 50%; opacity: 0.9; box-shadow: 0 20px 40px rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; position: relative; z-index: 5; }
.inner-node { width: 7rem; height: 5rem; background: linear-gradient(135deg, #93c5fd, #3b82f6); border-radius: 50%; opacity: 0.8; }
.orbit-container { position: absolute; width: 100%; height: 100%; }
.node { position: absolute; width: 0.75rem; height: 0.75rem; background: #60a5fa; border-radius: 50%; top: 50%; left: 50%; }
.node-1 { transform: translate(-100px, -80px); }
.node-2 { transform: translate(100px, -80px); }
.node-3 { transform: translate(-140px, 20px); }
.node-4 { transform: translate(140px, 20px); }
.node-5 { transform: translate(-80px, 100px); }
.node-6 { transform: translate(80px, 100px); }

.hero-buttons { display: flex; gap: 1rem; justify-content: center; }
.btn-primary { 
    background: #2563eb; 
    color: white; 
    border: none; 
    padding: 0.75rem 2rem; 
    border-radius: 0.5rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: 0.2s; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover { 
    background: #1d4ed8; 
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}
.btn-outline { 
    background: transparent; 
    border: 2px solid #9ca3af; 
    color: #e5e7eb; 
    padding: 0.75rem 2rem; 
    border-radius: 0.5rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: 0.2s; 
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.btn-outline:hover { 
    background: white; 
    color: var(--bg-dark); 
    border-color: white; 
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: white; padding: 0.75rem; border-radius: 50%; cursor: pointer; backdrop-filter: blur(4px); z-index: 20; transition: background 0.2s; }
.carousel-btn:hover { background: rgba(255,255,255,0.2); }
.prev { left: 1rem; } .next { right: 1rem; }
.carousel-indicators { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 20; }
.dot { width: 0.5rem; height: 0.5rem; background: rgba(255,255,255,0.5); border-radius: 999px; cursor: pointer; }
.dot.active { width: 2rem; background: white; }

/* Hero Media Container - holds carousel images/videos */
.hero-media-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: var(--bg-dark); /* Prevents background flash between slides */
}

/* Hero Media (Images/GIFs/Videos) */
.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Shows more of top portion */
    z-index: 1;
}

/* ========================================
   SERVICES SECTION - COMPLETE REPLACEMENT
   Replace lines 108-125 in your style.css with this
   ======================================== */

/* --- Services Section --- */
.services-section { 
    background-color: #1a2332; 
    padding: 5rem 1rem; 
    position: relative; 
    z-index: 2;
    overflow: hidden; /* Keep blob contained */
    cursor: none; /* Hide default cursor for premium effect */
}

.container { 
    max-width: 1280px; 
    margin: 0 auto; 
}

.section-header { 
    text-align: center; 
    margin-bottom: 4rem; 
}

.section-header h2 { 
    font-size: 2.5rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
    color: white;
}

.section-header p { 
    font-size: 1.125rem; 
    color: var(--text-gray); 
    max-width: 48rem; 
    margin: 0 auto; 
    line-height: 1.6; 
}

/* Services Grid - 3 Column Layout */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
    max-width: 1400px;
    margin: 0 auto;
}

/* Service Card - Vertical Layout (Image on Top) */
.service-card { 
    background-color: #0d1a2d; 
    border-radius: 1rem; 
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease; 
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    filter: brightness(1.05);
}

/* Card Image - Full Width at Top */
.card-image { 
    width: 100%;
    height: 280px; 
    position: relative; 
    overflow: hidden; 
}

.card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
    transition: transform 0.3s ease;
}

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

/* Remove the old overlay */
.image-overlay {
    display: none;
}

.card-image::after {
    display: none;
}

/* Card Content - Below Image */
.card-content { 
    padding: 2rem 1.75rem; 
    position: relative; 
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.card-content h3 { 
    font-size: 1.5rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
    color: white; 
    line-height: 1.3;
}

.card-content p { 
    color: rgba(255, 255, 255, 0.7); 
    margin-bottom: 1.5rem; 
    line-height: 1.6; 
    font-size: 1rem;
    flex: 1;
}

/* CTA Button - Transparent with White Outline */
.btn-card { 
    background: transparent; 
    border: 2px solid white; 
    color: white; 
    padding: 0.75rem 1.75rem; 
    border-radius: 0.5rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem;
    align-self: flex-start;
    font-size: 0.9375rem;
    text-decoration: none; /* Remove underline from links */
}

.btn-card:hover { 
    background: white; 
    color: #0d1a2d; 
    transform: translateX(4px);
}

.services-section .service-card,
.services-section .btn-card {
    cursor: pointer; /* Keep pointer on interactive elements */
}

/* ========================================
   CURSOR BLOB ANIMATION STYLES
   ======================================== */

/* Blob Canvas Container */
.blob-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

/* Blob Canvas */
.blob-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    filter: url(#gooey-blob);
    mix-blend-mode: screen;
}

/* SVG Filter Container */
.blob-svg-filter {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Disable blob on mobile/touch devices */
@media (max-width: 1024px) {
    .blob-canvas-container {
        display: none;
    }
    
    .services-section {
        cursor: default; /* Restore default cursor on mobile */
    }
}

/* Responsive adjustments for services grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-image {
        height: 240px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
}
{pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-card:hover { background: white; color: var(--bg-dark); }

/* --- SLG Experience Section (Cybernetic Hand) --- */
.experience-section { 
    background: linear-gradient(135deg, #0a1929 0%, #011A38 50%, #0d2847 100%); 
    padding: 3rem 1rem;
    position: relative; 
    overflow: hidden;
    min-height: 800px; /* Taller to show cityline */
}

.blur-accent { 
    position: absolute; 
    width: 16rem; 
    height: 16rem; 
    border-radius: 50%; 
    filter: blur(60px); 
    opacity: 0.2; 
    pointer-events: none; 
}

.blur-top-right { 
    top: -2.5rem; 
    right: -2.5rem; 
    background: #3b82f6; 
}

.blur-bottom-left { 
    bottom: -2.5rem; 
    left: -2.5rem; 
    background: #22d3ee; 
}

.bg-dots-container { 
    position: absolute; 
    inset: 0; 
    pointer-events: none; 
    opacity: 0.2; 
}

.bg-dot { 
    position: absolute; 
    width: 0.5rem; 
    height: 0.5rem; 
    border-radius: 50%; 
    animation: pulse 2s infinite; 
}

.dot-1 { 
    top: 25%; 
    left: 25%; 
    background: var(--cyan-accent); 
}

.dot-2 { 
    top: 33%; 
    right: 33%; 
    background: #60a5fa; 
    animation-delay: 0.5s; 
}

.dot-3 { 
    bottom: 25%; 
    left: 33%; 
    background: var(--cyan-accent); 
    animation-delay: 1s; 
}

.dot-4 { 
    bottom: 33%; 
    right: 25%; 
    background: #60a5fa; 
    animation-delay: 1.5s; 
}

/* Container that holds everything */
.experience-grid { 
    position: relative;
    height: 100%;
    min-height: 750px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .experience-grid {
        min-height: 850px;
    }
}

/* Text content positioned on the left */
.exp-text-content {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 450px;
}

@media (min-width: 768px) {
    .exp-text-content {
        left: 4rem;
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .exp-text-content {
        left: 5rem;
        max-width: 550px;
    }
}

.exp-text-content h3 { 
    font-size: 2.5rem; 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    line-height: 1.2; 
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.exp-text-content p { 
    font-size: 1.125rem; 
    color: var(--text-gray); 
    margin-bottom: 2rem; 
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.exp-buttons { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}

@media (min-width: 640px) {
    .exp-buttons {
        flex-direction: row;
    }
}

.btn-outline-lg { 
    background: rgba(1, 26, 56, 0.3);
    border: 2px solid white; 
    color: white; 
    padding: 1rem 2rem; 
    border-radius: 9999px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.2s; 
    font-size: 1.125rem;
    backdrop-filter: blur(8px);
    text-decoration: none;
}

.btn-outline-lg:hover { 
    background: white; 
    color: var(--bg-dark); 
}

/* FIXED: Image wrapper takes right side, positioned from top */
.exp-image-wrapper { 
    position: absolute;
    right: 0;
    top: 0;
    width: 70%; /* 70% of container width */
    height: 100%;
    display: flex;
    align-items: flex-start; /* Align to top so cityline shows */
    justify-content: flex-end;
    padding-top: 2rem; /* Small padding from very top */
}

@media (min-width: 1024px) {
    .exp-image-wrapper {
        width: 65%; /* Slightly less on larger screens */
    }
}

@media (max-width: 767px) {
    .exp-image-wrapper {
        width: 100%;
        opacity: 0.25;
        padding-top: 0;
    }
    
    .exp-text-content {
        position: relative;
        transform: none;
        left: 0;
        top: 0;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .experience-grid {
        min-height: auto;
        padding-top: 2rem;
    }
}

/* FIXED: Image container - full height to show cityline AND hand */
.exp-image-container { 
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 750px;
}

@media (min-width: 1024px) {
    .exp-image-container {
        min-height: 850px;
    }
}

/* FIXED: Image sizing - show FULL image from top to bottom */
.exp-image-container img { 
    width: 100%; 
    height: 100%;
    max-width: none;
    object-fit: contain; /* CHANGED: Use contain to show full image */
    object-position: top right; /* CHANGED: Position from top-right */
    display: block;
}

/* Optional: Scale slightly on very large screens */
@media (min-width: 1440px) {
    .exp-image-container img {
        transform: scale(1.1);
        transform-origin: top right;
    }
}

/* No gradient overlay */
.img-gradient-overlay { 
    display: none;
}

/* Animated Points */
.net-points { 
    position: absolute; 
    inset: 0; 
    pointer-events: none; 
    z-index: 5;
}

.net-point { 
    position: absolute; 
    width: 0.5rem; 
    height: 0.5rem; 
    background: var(--cyan-accent); 
    border-radius: 50%; 
    animation: pulse 2s infinite; 
}

.net-point::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: var(--cyan-accent); 
    border-radius: 50%; 
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; 
}

/* Responsive text sizing */
@media (min-width: 1024px) {
    .exp-text-content h3 {
        font-size: 3rem;
    }
    
    .exp-text-content p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1280px) {
    .exp-text-content h3 {
        font-size: 3.5rem;
    }
}

/* ========================================
   SLG EXPERIENCE SECTION V2 - ENHANCED
   Premium showcase with feature highlights
   ======================================== */

.experience-section-v2 {
    position: relative;
    background: linear-gradient(180deg, #011A38 0%, #0a1929 50%, #011A38 100%);
    padding: 6rem 1rem 8rem;
    overflow: hidden;
    min-height: 100vh;
}

/* Animated Background */
.exp-v2-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.exp-v2-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 70% 50%, rgba(34, 211, 238, 0.08) 0%, transparent 60%);
}

.exp-v2-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 80% at 60% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 100% 80% at 60% 40%, black 20%, transparent 70%);
}

.exp-v2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.exp-v2-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    animation: orbFloat 20s ease-in-out infinite;
}

.exp-v2-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    bottom: 10%;
    left: -5%;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.exp-v2-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, rgba(34, 211, 238, 0.3) 1px, transparent 1px);
    background-size: 100px 100px, 120px 120px, 80px 80px;
    animation: particleDrift 25s linear infinite;
}

/* Section Header */
.exp-v2-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.exp-v2-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 1rem;
}

.exp-v2-title {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.exp-v2-title .text-highlight {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #22d3ee 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

/* Main Content Grid */
.exp-v2-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Left Column */
.exp-v2-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.exp-v2-intro h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.exp-v2-intro p {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 500px;
}

/* Feature Cards */
.exp-v2-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exp-v2-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
}

.exp-v2-feature-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.exp-v2-feature-card:nth-child(1) { transition-delay: 0.1s; }
.exp-v2-feature-card:nth-child(2) { transition-delay: 0.2s; }
.exp-v2-feature-card:nth-child(3) { transition-delay: 0.3s; }

.exp-v2-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateX(8px);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-radius: 12px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon-wrap i {
    width: 22px;
    height: 22px;
    color: #22d3ee;
}

.exp-v2-feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    transform: scale(1.05);
}

.feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* CTA Buttons */
.exp-v2-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
}

.btn-exp-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    border: none;
    border-radius: 50px;
    color: #011A38;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
}

.btn-exp-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.4);
}

.btn-exp-primary i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-exp-primary:hover i {
    transform: translateX(4px);
}

.btn-exp-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-exp-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Right Column - Visual */
.exp-v2-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.exp-v2-visual {
    position: relative;
    width: 100%;
    max-width: 700px;
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-v2-visual.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Main Image */
.exp-v2-image-container {
    position: relative;
    z-index: 2;
}

.exp-v2-main-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    animation: imageFloat 8s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.exp-v2-image-glow {
    position: absolute;
    bottom: -20%;
    left: 10%;
    right: 10%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Floating Stats */
.exp-v2-floating-stat {
    position: absolute;
    background: rgba(1, 26, 56, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: statFloat 6s ease-in-out infinite;
}

.exp-v2-floating-stat .stat-value {
    display: block;
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 2rem;
    color: #22d3ee;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.exp-v2-floating-stat .stat-desc {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.stat-2 {
    top: 10%;
    right: 5%;
    animation-delay: 1s;
}

.stat-3 {
    bottom: 15%;
    left: 0%;
    animation-delay: 2s;
}

@keyframes statFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Connection Lines SVG */
.exp-v2-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease forwards;
}

.line-1 { animation-delay: 0.5s; }
.line-2 { animation-delay: 1s; }
.line-3 { animation-delay: 1.5s; }

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Animated Dots */
.exp-v2-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.exp-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
    animation: dotPulse 3s ease-in-out infinite;
}

.exp-dot:nth-child(1) { animation-delay: 0s; }
.exp-dot:nth-child(2) { animation-delay: 0.5s; }
.exp-dot:nth-child(3) { animation-delay: 1s; }
.exp-dot:nth-child(4) { animation-delay: 1.5s; }
.exp-dot:nth-child(5) { animation-delay: 2s; }

@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ========================================
   SLG EXPERIENCE V2 - RESPONSIVE
   ======================================== */

@media (min-width: 1024px) {
    .exp-v2-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: center;
    }
    
    .exp-v2-title {
        font-size: 4.5rem;
    }
    
    .exp-v2-intro h3 {
        font-size: 3rem;
    }
    
    .exp-v2-right {
        min-height: 600px;
    }
}

@media (min-width: 1280px) {
    .experience-section-v2 {
        padding: 8rem 1rem 10rem;
    }
    
    .exp-v2-content {
        grid-template-columns: 1fr 1.3fr;
    }
    
    .exp-v2-intro h3 {
        font-size: 3.25rem;
    }
}

@media (max-width: 1023px) {
    .exp-v2-content {
        gap: 3rem;
    }
    
    .exp-v2-right {
        order: -1;
        min-height: 400px;
    }
    
    .exp-v2-floating-stat {
        padding: 0.75rem 1rem;
    }
    
    .exp-v2-floating-stat .stat-value {
        font-size: 1.5rem;
    }
    
    .exp-v2-floating-stat .stat-desc {
        font-size: 0.65rem;
    }
    
    .stat-1 {
        top: 0%;
        left: 0%;
    }
    
    .stat-2 {
        top: 0%;
        right: 0%;
    }
    
    .stat-3 {
        bottom: 5%;
        left: 5%;
    }
}

@media (max-width: 768px) {
    .experience-section-v2 {
        padding: 4rem 1rem 5rem;
    }
    
    .exp-v2-header {
        margin-bottom: 2.5rem;
    }
    
    .exp-v2-title {
        font-size: 2.75rem;
    }
    
    .exp-v2-intro h3 {
        font-size: 2rem;
    }
    
    .exp-v2-intro p {
        font-size: 1rem;
    }
    
    .exp-v2-feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon-wrap {
        width: 42px;
        height: 42px;
    }
    
    .feature-icon-wrap i {
        width: 20px;
        height: 20px;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
    
    .exp-v2-buttons {
        flex-direction: column;
    }
    
    .btn-exp-primary,
    .btn-exp-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .exp-v2-floating-stat {
        display: none;
    }
    
    .exp-v2-connections {
        display: none;
    }
}

@media (max-width: 480px) {
    .exp-v2-title {
        font-size: 2.25rem;
    }
    
    .exp-v2-intro h3 {
        font-size: 1.75rem;
    }
}

/* --- Unrivaled Experience (Chicago Skyline & Ticker) --- */
/* FIXED: Changed background to match homepage dark gradient */
.unrivaled-section { 
    background: linear-gradient(135deg, #0a1929 0%, #011A38 50%, #0d2847 100%);
    color: white; /* Changed from #111827 */
    padding: 5rem 1rem; 
}

/* FIXED: Changed heading to white */
.section-header.light h2 { 
    color: white; /* Changed from var(--bg-dark) */
    font-size: 3rem; 
    margin-bottom: 3rem; 
}

.unrivaled-feature {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-img-container {
    position: relative;
    height: 600px;
    width: 100%;
}

.feature-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(1, 26, 56, 0.9) 0%, rgba(1, 26, 56, 0.6) 50%, transparent 100%);
}

.feature-text-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 4rem;
}

.feature-text-wrapper p {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.4;
}

/* Ticker Styles - Functionality intact, styling updated */
.ticker-container {
    background: transparent; /* CHANGED: Match dark background */
    border-radius: 1rem;
    padding: 3rem 0;
    box-shadow: none; /* CHANGED: Removed shadow */
    position: relative;
    margin-top: -4rem;
    margin-left: max(1rem, calc((100% - 1280px) / 2));
    margin-right: max(1rem, calc((100% - 1280px) / 2));
    z-index: 10;
    overflow: hidden;
}

.ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partner-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    padding: 1rem 0;
    animation: scroll 40s linear infinite;
}

.partner-track:hover {
    animation-play-state: paused;
}

.partner-card {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    background: transparent; /* CHANGED: Transparent for PNG logos */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* CHANGED: Removed shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.partner-card:hover {
    transform: scale(1.05);
    box-shadow: none; /* CHANGED: No shadow on hover */
    z-index: 5;
}

.partner-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(10%); 
    transition: filter 0.3s;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* FIXED: Changed button positioning and styling */
.ticker-cta {
    margin-top: 2rem;
    text-align: left; /* Changed from center */
    padding-left: 3rem; /* Positioning to bottom-left */
}

@media (max-width: 768px) {
    .ticker-cta {
        padding-left: 1rem; /* Less padding on mobile */
    }
}

/* FIXED: Button now transparent with white outline */
.btn-explore {
    background: transparent; /* Changed from var(--bg-dark) */
    color: white;
    border: 2px solid white; /* Added white border */
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none; /* Removed shadow for cleaner look */
    text-decoration: none;
}

.btn-explore:hover {
    background: white; /* White background on hover */
    color: var(--bg-dark); /* Dark text on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.2);
}
/* --- CEO Section --- */
.ceo-section {
    background: linear-gradient(135deg, #0f1e33 0%, #011A38 50%, #0a1f38 100%);
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.ceo-image-wrapper {
    position: relative;
}

.ceo-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.ceo-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-border-accent {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #3b82f6, #22d3ee);
    border-radius: 0.75rem;
    z-index: -1;
    opacity: 0.3;
}

.ceo-quote-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.quote-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.25rem;
    font-size: 3rem;
    color: #3b82f6;
    line-height: 1;
    opacity: 0.5;
}

.quote-attribution {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.quote-attribution p {
    margin: 0; /* Remove default paragraph margins */
}

/* CHANGED: Author name to bright white */
.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff !important; /* Bright white for "Ed Burns" */
    margin-bottom: 0.25rem;
}

/* CHANGED: Author title/attribution to silver */
.author-title {
    font-size: 0.875rem;
    color: #b8b8b8 !important; /* Silver for the title */
}

/* More specific selectors as backup */
.ceo-quote-card .quote-attribution .author-name {
    color: #ffffff !important;
}

.ceo-quote-card .quote-attribution .author-title {
    color: #b8b8b8 !important;
}

.ceo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ceo-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.ceo-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.ceo-bio {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ceo-bio p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.btn-about-us {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-about-us:hover {
    background: white;
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.3);
}

.btn-mission {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 1rem;
}

.btn-mission:hover {
    background: white;
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.3);
}
/* ========================================
   CAREERS CAROUSEL WIDGET
   Reusable carousel component
   ======================================== */
.careers-carousel-section {
    background: #f9fafb;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.careers-header {
    max-width: 1280px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.careers-title-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.careers-title-link:hover {
    opacity: 0.7;
}

.careers-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.careers-nav-arrows {
    display: none;
    gap: 1rem;
}

.career-arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #000000;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-arrow:hover {
    background: #000000;
    color: white;
}

.career-arrow i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Carousel wrapper with shadow */
.careers-carousel-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.careers-carousel-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    filter: blur(20px);
    transform: translate(8px, 8px);
    z-index: -1;
    border-radius: 1rem;
}

.careers-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 2rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.careers-carousel::-webkit-scrollbar {
    display: none;
}

/* Career Card */
.career-card {
    flex: 0 0 350px;
    height: 550px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: scale(1.02);
}

.career-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.career-card.flipped .career-card-inner {
    transform: rotateY(180deg);
}

.career-card-front,
.career-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

/* FRONT SIDE - Blue card */
.career-card-front {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    display: flex;
    flex-direction: column;
}

.career-card-image {
    width: 100%;
    height: 60%;
    overflow: hidden;
    position: relative;
}

.career-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.career-card-info {
    padding: 2rem 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.career-department {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.career-job-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.career-location {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* BACK SIDE - Gray card */
.career-card-back {
    background: #e5e7eb;
    transform: rotateY(180deg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.career-back-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.career-back-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.career-back-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.career-back-section {
    margin-bottom: 1.5rem;
}

.career-back-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.career-back-section p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #374151;
}

.career-back-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-back-section ul li {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.career-back-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.career-back-actions {
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-career-submit {
    background: #000000;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.05em;
}

.btn-career-submit:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.career-read-more {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.career-read-more:hover {
    color: #1e40af;
}

/* ========================================
   NEWS CAROUSEL - FIGMA DESIGN IMPLEMENTATION
   Reusable carousel component for blog posts
   Replace lines 2214-2600 in style.css with this
   ======================================== */

.news-carousel-section {
    background: #ffffff;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.news-header {
    max-width: 1280px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.news-title-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-title-link:hover {
    opacity: 0.7;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.news-title span {
    font-style: italic;
    font-weight: 400;
}

.news-nav-arrows {
    display: flex;
    gap: 1rem;
}

.news-arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #000000;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-arrow:hover {
    background: #000000;
    color: white;
}

.news-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.news-arrow:disabled:hover {
    background: transparent;
    color: #000000;
}

.news-arrow i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Carousel container with proper overflow handling */
.news-carousel-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.news-carousel {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    padding: 2rem 0;
}

/* ========================================
   NEWS CARD - TALL AND SKINNY DESIGN
   ======================================== */

.news-card {
    flex: 0 0 200px;  /* Skinny width to match Figma */
    height: 650px;    /* Tall height to match Figma */
    position: relative;
    cursor: pointer;
    border-radius: 0 0 1rem 1rem; /* Only round bottom corners */
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Card Inner Container */
.news-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ========================================
   FRONT SIDE - Image with Bottom Banner
   ======================================== */

.news-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(0);
    z-index: 2;
}

.news-card-image {
    width: 100%;
    height: 68%;  /* Image takes up ~68% of card height */
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Bottom Banner - Deep Blue with Post Info */
.news-card-info {
    height: 32%;  /* Banner takes up ~32% of card height */
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, #011A38 0%, #032a59 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}

.news-post-type {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.75);
}

.news-card-info .news-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   BACK SIDE - Light Background with Content
   ======================================== */

.news-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

/* Shuffled State - Card Flip Animation */
.news-card.shuffled .news-card-front {
    transform: translateX(-100%);
}

.news-card.shuffled .news-card-back {
    transform: translateX(0);
    z-index: 3;
}

/* Back Content Container */
.news-back-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header with Post Type and Date */
.news-back-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.875rem;
}

.news-back-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #011A38;
    text-transform: uppercase;
}

.news-back-category {
    font-size: 0.625rem;
    color: #64748b;
    font-weight: 500;
    text-align: right;
}

/* Title on Back */
.news-back-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Excerpt */
.news-excerpt {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author Section */
.news-author-section {
    margin: 0.875rem 0;
    padding: 0.875rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
}

.author-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.125rem;
}

.author-company {
    font-size: 0.6875rem;
    color: #64748b;
    font-style: italic;
}

/* Bottom Actions - CTA and Reading Time */
.news-back-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-news-read {
    background: #011A38;
    color: white;
    border: none;
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-news-read:hover {
    background: #032a59;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(1, 26, 56, 0.3);
}

.btn-news-read i {
    width: 0.875rem;
    height: 0.875rem;
}

.news-read-time {
    font-size: 0.6875rem;
    color: #64748b;
    font-weight: 500;
    text-align: right;
}

/* ========================================
   LOADING AND ERROR STATES
   ======================================== */

.news-loading-state,
.news-error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: #64748b;
    min-height: 200px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-left: 3px solid #011A38;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.news-error-state h3 {
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.btn-retry {
    margin-top: 1rem;
    background: #011A38;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-retry:hover {
    background: #032a59;
    transform: translateY(-2px);
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .news-carousel {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .news-card {
        flex: 0 0 240px;  /* Slightly narrower on mobile */
        height: 400px;    /* Slightly shorter on mobile */
    }
    
    .news-nav-arrows {
        display: none;
    }
    
    .news-title {
        font-size: 2rem;
    }
    
    .news-card-info {
        padding: 1rem 0.875rem;
    }
    
    .news-card-back {
        padding: 1.25rem;
    }
    
    .news-back-title {
        font-size: 1rem;
    }
    
    .news-excerpt {
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 480px) {
    .news-card {
        flex: 0 0 220px;
        height: 380px;
    }
    
    .news-card-info .news-title {
        font-size: 0.9375rem;
        -webkit-line-clamp: 2;
    }
    
    .news-back-title {
        font-size: 0.9375rem;
        -webkit-line-clamp: 2;
    }
}


/* ========================================
   CALL TO ACTION SECTION
   Appears on every page
   ======================================== */
.cta-section {
    background: #e8e8e8;
    padding: 6rem 1rem;
    position: relative;
}

.cta-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.cta-heading {
    font-family: 'League Gothic', 'Impact', 'Arial Black', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.95;
    color: #000000;
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

.cta-heading br {
    display: block;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #000000;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 1.25rem 3rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   FOOTER SECTION
   Appears on every page
   ======================================== */
.footer-section {
    background: #000000;
    color: #ffffff;
    padding: 4rem 1rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto 3rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-dot {
    width: 1.2rem;
    height: 1.2rem;
    background-color: #d1d5db;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1rem;
    font-weight: 700;
}

.text-gray-footer {
    color: #d1d5db;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #3b82f6;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
    width: fit-content;
}

.footer-phone:hover {
    color: #60a5fa;
}

.footer-phone i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.footer-social i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: #9ca3af;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
}

/* --- Animations --- */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

/* --- Responsive Design --- */
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-toggle { display: none; }
    
    .experience-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .exp-buttons {
        flex-direction: row;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .ceo-grid {
        grid-template-columns: 450px 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .ceo-heading {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        justify-content: space-between;
    }
    
    .cta-buttons {
        flex-wrap: nowrap;
    }
    
    /* Careers carousel desktop */
    .careers-nav-arrows {
        display: flex;
    }
    
    .careers-title {
        font-size: 3rem;
    }
    
    /* News carousel desktop */
    .news-nav-arrows {
        display: flex;
    }
    
    .news-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .feature-text-wrapper {
        padding: 0 6rem;
    }
    
    .feature-text-wrapper p {
        font-size: 2.5rem;
    }
    
    .cta-heading {
        font-size: 6rem;
    }
    
    /* Larger career cards on desktop */
    .career-card {
        flex: 0 0 380px;
        height: 580px;
    }
    
    /* Larger news cards on desktop */
    .news-card {
        flex: 0 0 420px;
        height: 500px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 75vh;
        padding: 6rem 1rem 3rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .network-graphic {
        height: 12rem;
    }
    
    .central-node {
        width: 6rem;
        height: 4.5rem;
    }
    
    .inner-node {
        width: 5rem;
        height: 3.5rem;
    }
    
    .feature-img-container {
        height: 400px;
    }
    
    .feature-text-wrapper {
        padding: 0 2rem;
    }
    
    .feature-text-wrapper p {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header.light h2 {
        font-size: 2rem;
    }
    
    .ceo-heading {
        font-size: 2rem;
    }
    
    .ceo-bio p {
        font-size: 1rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .cta-heading {
        font-size: 3.5rem;
    }
    
    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    /* Careers carousel mobile */
    .careers-title {
        font-size: 1.75rem;
    }
    
    .career-card {
        flex: 0 0 300px;
        height: 500px;
    }
    
    .career-back-title {
        font-size: 1.5rem;
    }
    
    .careers-carousel {
        padding: 1rem 0.5rem;
    }
    
    /* News carousel mobile */
    .news-title {
        font-size: 1.75rem;
    }
    
    .news-card {
        flex: 0 0 320px;
        height: 450px;
    }
    
    .news-back-title {
        font-size: 1.25rem;
    }
    
    .news-carousel {
        padding: 1rem 0.5rem;
    }
}
/* ========================================
   CURSOR BLOB ANIMATION STYLES
   Add these styles to your existing style.css
   ======================================== */

/* Blob Canvas Container */
.blob-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

/* Blob Canvas */
.blob-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    filter: url(#gooey-blob);
    mix-blend-mode: screen;
}

/* SVG Filter Container */
.blob-svg-filter {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Services Section Updates - Add position relative */
.services-section {
    position: relative;
    overflow: hidden; /* Keep blob contained */
}

/* Optional: Add subtle glow to cards on hover when blob is near */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.service-card:hover {
    filter: brightness(1.05);
}

/* Disable blob on mobile/touch devices */
@media (max-width: 1024px) {
    .blob-canvas-container {
        display: none;
    }
}

/* Optional: Pointer cursor for services section */
.services-section {
    cursor: none; /* Hide default cursor for premium effect */
}

.services-section .service-card,
.services-section .btn-card {
    cursor: pointer; /* Keep pointer on interactive elements */
}
/* Footer Logo Image */
.footer-logo-image {
    height: 40px; /* Adjust height as needed */
    width: 340px;
    display: block;
    transition: opacity 0.2s ease;
}

.footer-logo-image:hover {
    opacity: 0.8;
}

.footer-logo a {
    display: inline-block;
}

/* ========================================
   SLG EXPLAINER ACCORDION SECTION
   Premium interactive accordion with animations
   ======================================== */

.slg-explainer-section {
    background: linear-gradient(180deg, #011A38 0%, #0a1929 50%, #011A38 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.slg-section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slg-section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.slg-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1.5rem;
}

.slg-eyebrow::before,
.slg-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #22d3ee);
}

.slg-eyebrow::before {
    left: -20px;
    background: linear-gradient(90deg, transparent, #22d3ee);
}

.slg-eyebrow::after {
    right: -20px;
    background: linear-gradient(90deg, #22d3ee, transparent);
}

.slg-section-title {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.slg-section-title .text-gradient {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 50%, #22d3ee 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Accordion Container */
.slg-accordion {
    display: flex;
    flex-direction: row;
    height: 380px;
    gap: 12px;
    margin-bottom: 3rem;
    perspective: 1000px;
}

/* Individual Panel */
.slg-panel {
    position: relative;
    flex: 1;
    background: rgba(15, 43, 77, 0.6);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s ease,
                box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.slg-panel:hover {
    transform: translateY(-4px);
}

.slg-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(34, 211, 238, 0.1) 0%, 
        transparent 30%,
        transparent 70%,
        rgba(34, 211, 238, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.slg-panel:hover::before {
    opacity: 1;
}

/* Active Panel State */
.slg-panel.active {
    flex: 3.5;
    background: linear-gradient(135deg, 
        rgba(30, 58, 95, 0.9) 0%, 
        rgba(1, 26, 56, 0.95) 100%);
    border: 1px solid rgba(34, 211, 238, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(34, 211, 238, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.slg-panel.active:hover {
    transform: translateY(0);
}

/* Panel Background Effects */
.slg-panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.slg-panel-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, 
        rgba(34, 211, 238, 0.15) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: glowPulse 4s ease-in-out infinite;
}

.slg-panel.active .slg-panel-glow {
    opacity: 1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Animated particles in background */
.slg-panel-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 211, 238, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(34, 211, 238, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: particleFloat 20s linear infinite;
}

.slg-panel.active .slg-panel-particles {
    opacity: 1;
}

@keyframes particleFloat {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 60px 60px, -80px 80px, 100px -100px; }
}

/* Animated border */
.slg-panel-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(34, 211, 238, 0.5) 50%, 
        transparent 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.slg-panel.active .slg-panel-border {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Panel Content */
.slg-panel-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

/* Letter Wrapper */
.slg-letter-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slg-letter {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 40px rgba(34, 211, 238, 0);
}

.slg-letter-outline {
    position: absolute;
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 10rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(34, 211, 238, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state for inactive panels */
.slg-panel:not(.active):hover .slg-letter {
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.slg-panel:not(.active):hover .slg-letter-outline {
    -webkit-text-stroke: 1px rgba(34, 211, 238, 0.5);
}

/* Active panel letter positioning */
.slg-panel.active .slg-letter-wrapper {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.slg-panel.active .slg-letter {
    font-size: 14rem;
    color: rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 60px rgba(34, 211, 238, 0.2);
}

.slg-panel.active .slg-letter-outline {
    font-size: 14rem;
    -webkit-text-stroke: 1px rgba(34, 211, 238, 0.15);
}

/* Expanded Text Content */
.slg-expanded-text {
    opacity: 0;
    transform: translateX(30px);
    position: absolute;
    left: 50%;
    right: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slg-panel.active .slg-expanded-text {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    left: auto;
    right: auto;
    margin-left: 4rem;
}

/* Icon Wrapper */
.slg-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(34, 211, 238, 0.3);
    box-shadow: 
        0 8px 32px rgba(34, 211, 238, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.slg-panel.active:hover .slg-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(34, 211, 238, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.slg-icon {
    width: 28px;
    height: 28px;
    color: #22d3ee;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.5));
}

/* Typography */
.slg-expanded-text h3 {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 2.75rem;
    color: #fff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slg-expanded-text p {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 280px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Stats */
.slg-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 2.5rem;
    color: #22d3ee;
    line-height: 1;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Tagline */
.slg-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slg-tagline.visible {
    opacity: 1;
    transform: translateY(0);
}

.slg-tagline-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), transparent);
}

.slg-tagline p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    margin: 0;
}

.slg-tagline strong {
    color: #22d3ee;
    font-weight: 600;
}

/* CTA Button */
.slg-cta {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slg-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-slg-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(34, 211, 238, 0.5);
    border-radius: 50px;
    color: #22d3ee;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-slg-learn-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-slg-learn-more:hover {
    border-color: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(34, 211, 238, 0.2),
        0 0 20px rgba(34, 211, 238, 0.1);
}

.btn-slg-learn-more:hover::before {
    opacity: 1;
}

.btn-slg-learn-more span {
    position: relative;
    z-index: 1;
}

.btn-slg-learn-more i {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-slg-learn-more:hover i {
    transform: translateX(4px);
}

/* Background Decorations */
.slg-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.slg-bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, 0.1);
}

.slg-bg-circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: circleFloat 20s ease-in-out infinite;
}

.slg-bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: circleFloat 15s ease-in-out infinite reverse;
}

@keyframes circleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(0, -30px) rotate(0deg); }
    75% { transform: translate(-20px, -20px) rotate(-5deg); }
}

.slg-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ========================================
   SLG ACCORDION - RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .slg-section-title {
        font-size: 2.75rem;
    }
    
    .slg-accordion {
        height: 340px;
    }
    
    .slg-letter {
        font-size: 8rem;
    }
    
    .slg-letter-outline {
        font-size: 8rem;
    }
    
    .slg-panel.active .slg-letter {
        font-size: 10rem;
    }
    
    .slg-panel.active .slg-letter-outline {
        font-size: 10rem;
    }
    
    .slg-expanded-text h3 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .slg-explainer-section {
        padding: 4rem 0;
    }
    
    .slg-section-header {
        margin-bottom: 2rem;
    }
    
    .slg-section-title {
        font-size: 2.25rem;
    }
    
    .slg-accordion {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    .slg-panel {
        height: 100px;
        transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.3s ease,
                    box-shadow 0.3s ease;
    }
    
    .slg-panel.active {
        height: 320px;
        flex: none;
    }
    
    .slg-panel:hover {
        transform: none;
    }
    
    .slg-letter-wrapper {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .slg-letter {
        font-size: 5rem;
    }
    
    .slg-letter-outline {
        font-size: 5rem;
    }
    
    .slg-panel.active .slg-letter-wrapper {
        position: absolute !important;
        top: 1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .slg-panel.active .slg-letter {
        font-size: 4rem;
    }
    
    .slg-panel.active .slg-letter-outline {
        font-size: 4rem;
    }
    
    .slg-panel.active .slg-expanded-text {
        margin-left: 0;
        margin-top: 4rem;
    }
    
    .slg-expanded-text h3 {
        font-size: 2rem;
    }
    
    .slg-expanded-text p {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .slg-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .slg-icon {
        width: 24px;
        height: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .slg-tagline {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .slg-tagline-line {
        width: 40px;
    }
    
    .slg-tagline p {
        font-size: 1.1rem;
    }
    
    .slg-bg-circle-1,
    .slg-bg-circle-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .slg-section-title {
        font-size: 1.875rem;
    }
    
    .slg-eyebrow {
        font-size: 0.75rem;
    }
    
    .slg-panel {
        height: 80px;
    }
    
    .slg-panel.active {
        height: 300px;
    }
    
    .slg-letter {
        font-size: 4rem;
    }
    
    .slg-letter-outline {
        font-size: 4rem;
    }
    
    .slg-panel.active .slg-letter {
        font-size: 3rem;
    }
    
    .slg-panel.active .slg-letter-outline {
        font-size: 3rem;
    }
    
    .slg-expanded-text h3 {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
    
    .slg-expanded-text p {
        font-size: 0.9rem;
    }
    
    .btn-slg-learn-more {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   TIMELINE RAIL - LEFT SIDE NAVIGATION
   Infosys-style scroll progress indicator
   ======================================== */

.timeline-rail {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 100;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Show rail after scrolling past hero */
.timeline-rail.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: auto;
}

/* Individual Timeline Item */
.timeline-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    padding: 4px 0;
    background: none;
    border: none;
    text-align: left;
    outline: none;
}

/* The Line/Tick Mark */
.timeline-line {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease,
                box-shadow 0.3s ease;
    flex-shrink: 0;
}

/* The Label */
.timeline-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease,
                transform 0.3s ease,
                color 0.3s ease;
    pointer-events: none;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover State - Show label on entire rail hover */
.timeline-rail:hover .timeline-label,
.timeline-rail.show-labels .timeline-label {
    opacity: 1;
    transform: translateX(0);
}

/* Individual item hover - expand line */
.timeline-item:hover .timeline-line {
    width: 32px;
    background: rgba(255, 255, 255, 0.7);
}

.timeline-item:hover .timeline-label {
    opacity: 1;
    transform: translateX(0);
    color: #ffffff;
}

/* Active State - Currently visible section */
.timeline-item.active .timeline-line {
    width: 42px;
    background: #22d3ee;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.5);
}

.timeline-item.active .timeline-label {
    opacity: 1;
    transform: translateX(0);
    color: #ffffff;
}

/* Focus state for accessibility */
.timeline-item:focus .timeline-line {
    width: 32px;
    background: #22d3ee;
}

.timeline-item:focus .timeline-label {
    opacity: 1;
    transform: translateX(0);
}

/* Active label box styling (like Infosys) */
.timeline-item.active .timeline-label {
    position: relative;
}

.timeline-item.active .timeline-label::before {
    content: '';
    position: absolute;
    left: -8px;
    top: -6px;
    right: -10px;
    bottom: -6px;
    border: 1px solid rgba(34, 211, 238, 0.5);
    border-radius: 4px;
    background: rgba(34, 211, 238, 0.08);
    z-index: -1;
}

/* Delayed fade-out when mouse leaves */
.timeline-rail.fade-labels .timeline-label {
    transition: opacity 0.8s ease 0.3s,
                transform 0.8s ease 0.3s,
                color 0.3s ease;
}

.timeline-rail.fade-labels .timeline-item.active .timeline-label {
    transition: opacity 0s, transform 0s, color 0.3s ease;
}

/* ========================================
   TIMELINE RAIL - RESPONSIVE
   Hide on tablet and mobile
   ======================================== */

@media (max-width: 1200px) {
    .timeline-rail {
        width: 100px;
        padding-left: 16px;
    }
    
    .timeline-label {
        font-size: 10px;
        max-width: 80px;
    }
    
    .timeline-item.active .timeline-line {
        width: 36px;
    }
}

@media (max-width: 1024px) {
    .timeline-rail {
        width: 80px;
        padding-left: 12px;
    }
    
    .timeline-container {
        gap: 16px;
    }
    
    .timeline-line {
        width: 20px;
    }
    
    .timeline-item.active .timeline-line {
        width: 32px;
    }
    
    .timeline-label {
        display: none;
    }
}

/* Hide completely on tablet and mobile */
@media (max-width: 900px) {
    .timeline-rail {
        display: none !important;
    }
}