/*--------------------------------------------------------------
# Evonova Tech Solutions - Final Unified Stylesheet
# Version: 3.1 (Hotfix for Rendering Issues)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 1. ROOT VARIABLES & GENERAL SETUP
--------------------------------------------------------------*/
:root {
    /* AI Theme Colors (Primary) */
    --ai-dark-bg: #030617;
    --ai-mid-bg: #080D21;
    --ai-light-bg: #111832;
    --ai-cyan: #00F6FF;
    --ai-magenta: #FF00E6;
    --ai-purple: #9D00FF;
    --text-light: #F0F2FC;
    --text-muted: #A0A8C3;
    
    /* Fonts & Transitions */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--ai-dark-bg) !important; /* Ensure dark theme applies */
    color: var(--text-light);
    overflow-x: hidden;
}

/* Base element styling */
a {
    color: var(--ai-cyan);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--ai-magenta);
    text-decoration: none;
}
p { 
    line-height: 1.8; 
    color: var(--text-muted); 
}
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-secondary); 
    font-weight: 700; 
    color: #fff; 
}

/* Global Section Styling */
.section-padding { padding: 120px 0; position: relative; overflow: hidden; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
    font-size: 3rem;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 246, 255, 0.4);
}
.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ai-cyan), var(--ai-magenta));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section-title p { 
    max-width: 700px; 
    margin: 0 auto; 
    font-size: 1.1rem; 
    color: var(--text-muted); 
}

/*--------------------------------------------------------------
# 2. HIGH-TECH PRELOADER (FINAL VERSION)
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #030617;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease 0.5s, visibility 0.8s ease 0.5s;
}
#preloader.loaded { 
    opacity: 0; 
    visibility: hidden; 
}

.preloader-grid {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(0, 246, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 246, 255, 0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: pan 60s linear infinite;
}
.preloader-scanline {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to bottom, rgba(0, 246, 255, 0.5), transparent);
    animation: scan 4s linear infinite;
}
.preloader-content {
    position: relative; z-index: 2;
    text-align: center; width: 300px;
}
.preloader-logo {
    font-family: var(--font-secondary);
    font-size: 2.5rem; font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 246, 255, 0.7);
    margin-bottom: 20px;
    animation: flicker 2s infinite;
}
.preloader-status {
    color: var(--text-muted);
    font-family: monospace;
    height: 20px;
    margin-bottom: 20px;
}
.preloader-status .typing-cursor {
    display: inline-block;
    width: 8px; height: 1em;
    background-color: var(--ai-cyan);
    animation: blink 0.7s infinite;
}
.progress-bar {
    width: 100%; height: 5px;
    background: rgba(0, 246, 255, 0.1);
    border: 1px solid rgba(0, 246, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
}
.progress-bar-fill {
    width: 0; height: 100%;
    background: var(--ai-cyan);
    box-shadow: 0 0 10px var(--ai-cyan);
    animation: fill-progress 6s linear forwards;
}
.preloader-vignette {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    box-shadow: inset 0 0 200px #030617;
}

/* Preloader Keyframes */
@keyframes pan { from { background-position: 0 0; } to { background-position: 300px -300px; } }
@keyframes scan { 0% { transform: translateY(-10px); } 100% { transform: translateY(100vh); } }
@keyframes flicker { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes fill-progress { from { width: 0%; } to { width: 100%; } }


/*--------------------------------------------------------------
# 3. HEADER & NAVIGATION
--------------------------------------------------------------*/
#header {
    transition: var(--transition);
    z-index: 997; padding: 20px 0;
    background: rgba(10, 15, 30, 0.8);
    backdrop-filter: blur(10px);
}
#header.header-scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
.navbar-brand .logo-text { font-size: 28px; font-weight: 700; color: var(--ai-cyan); line-height: 1; text-shadow: 0 0 10px var(--ai-cyan); letter-spacing: 1px; }
.navbar-brand .tagline { font-size: 12px; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
.navbar-nav .nav-link { color: rgba(255, 255, 255, 0.8); font-weight: 500; padding: 10px 15px; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--ai-cyan); }
.btn-primary.rounded-pill { background: var(--ai-cyan); color: var(--ai-dark-bg); border: none; }
.btn-primary.rounded-pill:hover { background: #fff; box-shadow: 0 0 15px #fff; }

/*--------------------------------------------------------------
# 4. PAGE-SPECIFIC BODY STYLES
--------------------------------------------------------------*/
.index-page-body, .about-page-body, .services-page-body, .portfolio-page-body, .careers-page-body, .contact-page-body {
    background-color: var(--ai-dark-bg);
    color: var(--text-light);
    background-image: url('../img/grid-bg.png'); /* Add your grid background image here */
}

/*--------------------------------------------------------------
# 5. SHARED HIGH-TECH COMPONENTS
--------------------------------------------------------------*/
.btn-ai-glow {
    padding: 16px 40px; font-weight: 600;
    color: var(--ai-cyan); border: 2px solid var(--ai-cyan);
    border-radius: 8px; background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase; letter-spacing: 1.5px;
    position: relative; overflow: hidden;
}
.btn-ai-glow:hover {
    background: var(--ai-cyan); color: var(--ai-dark-bg);
    box-shadow: 0 0 30px var(--ai-cyan), 0 0 15px #fff;
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# 6. INDEX PAGE STYLES (AI THEME)
--------------------------------------------------------------*/
/* Hero Section v3 - AI Themed */
.hero-ai { height: 100vh; width: 100%; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-ai-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-ai .container { position: relative; z-index: 2; }
.hero-ai-content h1 { font-size: 4.5rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 25px; max-width: 700px; }
.hero-ai-content .highlight { background: -webkit-linear-gradient(45deg, var(--ai-cyan), var(--ai-magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 25px rgba(255, 0, 230, 0.3); }
.hero-ai-content .typing-container { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 35px; height: 30px; }

/* AI Service Matrix Section */
.ai-service-matrix { background-color: var(--ai-mid-bg); border-top: 1px solid var(--ai-light-bg); border-bottom: 1px solid var(--ai-light-bg); }
.ai-card { background: linear-gradient(145deg, rgba(17, 24, 50, 0.6), rgba(3, 6, 23, 0.6)); border: 1px solid var(--ai-light-bg); border-radius: 15px; padding: 35px; backdrop-filter: blur(12px); transition: all 0.4s ease; height: 100%; position: relative; }
.ai-card:hover { transform: scale(1.05); border-color: var(--ai-cyan); box-shadow: 0 0 40px rgba(0, 246, 255, 0.1); }
.ai-card::before, .ai-card::after { content: ''; position: absolute; width: 0px; height: 1px; background: var(--ai-cyan); transition: all 0.4s ease-in-out; box-shadow: 0 0 5px var(--ai-cyan); }
.ai-card::before { top: 0; left: 0; }
.ai-card::after { bottom: 0; right: 0; }
.ai-card:hover::before, .ai-card:hover::after { width: 100%; }
.ai-card-icon { font-size: 2.8rem; color: var(--ai-cyan); margin-bottom: 20px; }
.ai-card h3 { color: #fff; margin-bottom: 15px; }
.ai-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Digital DNA Timeline */
.dna-timeline-v2 { position: relative; max-width: 800px; margin: 40px auto; }
.dna-timeline-v2::before { content: ''; position: absolute; width: 2px; background: linear-gradient(var(--ai-light-bg), var(--ai-cyan), var(--ai-light-bg)); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
.dna-item { padding: 20px 40px; position: relative; width: 50%; }
.dna-item.left { left: 0; text-align: right; }
.dna-item.right { left: 50%; text-align: left; }
.dna-item::after { content: ''; position: absolute; width: 20px; height: 20px; right: -10px; background-color: var(--ai-dark-bg); border: 3px solid var(--ai-cyan); top: 25px; border-radius: 50%; z-index: 1; box-shadow: 0 0 10px var(--ai-cyan); }
.dna-item.right::after { left: -10px; }
.dna-item-content { padding: 20px; background: var(--ai-light-bg); border-radius: 8px; }
.dna-item-content h3 { color: var(--ai-cyan); margin-bottom: 5px; font-size: 1.2rem; }
.dna-item-content span { font-size: 0.9rem; color: var(--text-muted); font-style: italic; }
.dna-item-content p { color: var(--text-light); margin-top: 10px; font-size: 0.9rem; }

/* Testimonials with SVG Glyphs */
.partner-card { background: linear-gradient(145deg, var(--ai-light-bg), var(--ai-mid-bg)); border: 1px solid var(--ai-light-bg); border-radius: 15px; padding: 40px; text-align: center; height: 100%; }
.partner-glyph { height: 60px; margin-bottom: 25px; }
.partner-glyph svg { height: 100%; width: auto; fill: var(--ai-cyan); filter: drop-shadow(0 0 5px var(--ai-cyan)); }
.partner-card blockquote { font-style: italic; color: var(--text-light); font-size: 1.1rem; margin-bottom: 20px; border: none; padding: 0; }
.partner-card cite { color: #fff; font-weight: bold; display: block; }
.partner-card span { color: var(--text-muted); font-size: 0.9rem; }

/*--------------------------------------------------------------
# 7. ABOUT PAGE STYLES
--------------------------------------------------------------*/
.about-hero { height: 60vh; position: relative; display: flex; align-items: center; text-align: center; }
.about-hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.about-hero .container { position: relative; z-index: 2; }
.about-hero h1 { font-size: 4rem; color: #fff; font-weight: 800; }
.about-hero p { font-size: 1.2rem; color: var(--text-muted); }
.about-content-panel { background: rgba(17, 24, 50, 0.4); padding: 40px; border-radius: 15px; border: 1px solid var(--ai-light-bg); backdrop-filter: blur(10px); }
.about-content-panel h2 { color: var(--ai-cyan); margin-bottom: 20px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.stat-item h3 { font-size: 2.5rem; color: #fff; font-weight: 700; }
.stat-item p { margin: 0; color: var(--ai-cyan); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.about-visual { height: 400px; }
.mission-vision-section { background-color: var(--ai-mid-bg); }
.mv-card { padding: 40px; border-radius: 15px; border: 1px solid var(--ai-light-bg); height: 100%; transition: all 0.4s ease; cursor: pointer; }
.mv-card:hover { border-color: var(--ai-purple); box-shadow: 0 0 30px rgba(157, 0, 255, 0.2); transform: translateY(-10px); }
.mv-icon { font-size: 3rem; color: var(--ai-purple); margin-bottom: 20px; }
.mv-card h3 { color: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.value-card-v2 { background-color: var(--ai-light-bg); padding: 30px; border-radius: 10px; text-align: center; border: 1px solid transparent; transition: all 0.3s ease; }
.value-card-v2:hover { border-color: var(--ai-magenta); transform: scale(1.05); }
.value-icon { font-size: 2.5rem; color: var(--ai-magenta); margin-bottom: 20px; }
.timeline-orbit-container { height: 600px; position: relative; display: flex; align-items: center; justify-content: center; }
.timeline-center { width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background-color: var(--ai-light-bg); color: var(--ai-cyan); font-weight: bold; font-size: 1.5rem; text-align: center; border: 2px solid var(--ai-cyan); box-shadow: 0 0 20px var(--ai-cyan); z-index: 10; }
.orbit { position: absolute; border: 1px dashed var(--ai-light-bg); border-radius: 50%; animation: spin 60s linear infinite; }
.orbit:nth-child(2) { width: 300px; height: 300px; animation-duration: 40s; }
.orbit:nth-child(3) { width: 500px; height: 500px; animation-duration: 80s; }
.timeline-milestone { position: absolute; width: 80px; height: 80px; cursor: pointer; }
.milestone-planet { width: 20px; height: 20px; background-color: var(--ai-cyan); border-radius: 50%; box-shadow: 0 0 10px var(--ai-cyan); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all 0.3s ease; }
.milestone-info { position: absolute; bottom: 110%; left: 50%; transform: translateX(-50%) scale(0); transform-origin: bottom center; background: var(--ai-light-bg); padding: 10px 15px; border-radius: 5px; width: 200px; text-align: center; opacity: 0; transition: all 0.3s ease; pointer-events: none; }
.milestone-info h4 { color: #fff; font-size: 1rem; margin: 0 0 5px 0; }
.milestone-info p { color: var(--text-muted); font-size: 0.8rem; margin: 0; }
.timeline-milestone:hover .milestone-planet { transform: translate(-50%, -50%) scale(1.5); }
.timeline-milestone:hover .milestone-info { transform: translateX(-50%) scale(1); opacity: 1; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.join-cta { text-align: center; }
.join-cta h2 { font-size: 2.5rem; color: #fff; }

/*--------------------------------------------------------------
# 8. SERVICES PAGE STYLES
--------------------------------------------------------------*/
.service-hero-v2 { height: 90vh; width: 100%; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 20px; background-color: var(--ai-dark-bg); }
#particles-js { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.service-hero-v2 .container { position: relative; z-index: 2; }
.hero-title-v2 { font-size: 4.5rem; font-weight: 800; color: #fff; position: relative; text-transform: uppercase; letter-spacing: 2px; }
.hero-title-v2 .glitch { position: relative; display: inline-block; }
.hero-title-v2 .glitch::before, .hero-title-v2 .glitch::after { content: 'SERVICES'; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--ai-dark-bg); overflow: hidden; }
.hero-title-v2 .glitch::before { left: 2px; text-shadow: -2px 0 var(--ai-magenta); animation: glitch-anim-1 2.5s infinite linear alternate-reverse; }
.hero-title-v2 .glitch::after { left: -2px; text-shadow: -2px 0 var(--ai-cyan), 2px 2px var(--ai-magenta); animation: glitch-anim-2 2.5s infinite linear alternate-reverse; }
@keyframes glitch-anim-1 { 0%, 100% { clip-path: inset(39% 0 58% 0); } 25% { clip-path: inset(15% 0 48% 0); } 50% { clip-path: inset(45% 0 18% 0); } 75% { clip-path: inset(75% 0 5% 0); } }
@keyframes glitch-anim-2 { 0%, 100% { clip-path: inset(10% 0 88% 0); } 25% { clip-path: inset(85% 0 8% 0); } 50% { clip-path: inset(35% 0 58% 0); } 75% { clip-path: inset(60% 0 35% 0); } }
.hero-subtitle-v2 { font-size: 1.2rem; color: var(--text-muted); margin-top: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }
.scroll-down-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--ai-cyan); z-index: 3; font-size: 12px; letter-spacing: 2px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); } 40% { transform: translate(-50%, -15px); } 60% { transform: translate(-50%, -5px); } }
.approach-flowchart { display: flex; justify-content: space-between; position: relative; padding: 40px 0; }
.approach-step { flex: 1; text-align: center; position: relative; padding: 0 15px; }
.approach-step-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--ai-mid-bg); border: 2px solid var(--ai-light-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; color: var(--ai-cyan); transition: all 0.4s ease; }
.approach-step:hover .approach-step-icon { background: var(--ai-cyan); color: var(--ai-dark-bg); transform: scale(1.1); box-shadow: 0 0 25px var(--ai-cyan); }
.approach-step h4 { color: #fff; margin-bottom: 10px; }
.approach-step p { color: var(--text-muted); font-size: 0.9rem; }
.approach-flowchart::before { content: ''; position: absolute; top: 40px; left: 10%; width: 80%; height: 2px; background: repeating-linear-gradient(90deg, var(--ai-light-bg), var(--ai-light-bg) 5px, transparent 5px, transparent 10px); }

/*--------------------------------------------------------------
# 9. PORTFOLIO PAGE STYLES
--------------------------------------------------------------*/
.portfolio-hero { height: 70vh; position: relative; display: flex; align-items: center; text-align: center; }
#portfolio-hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.portfolio-hero .container { position: relative; z-index: 2; }
.portfolio-hero h1 { font-size: 4rem; color: #fff; font-weight: 800; }
.portfolio-filters-v2 { margin-bottom: 40px; text-align: center; }
.portfolio-filters-v2 button { background: transparent; border: 1px solid var(--ai-light-bg); color: var(--text-muted); padding: 10px 25px; margin: 5px; border-radius: 5px; cursor: pointer; transition: all 0.3s ease; position: relative; }
.portfolio-filters-v2 button:hover { background: var(--ai-light-bg); color: #fff; }
.portfolio-filters-v2 button.active { background: var(--ai-cyan); color: var(--ai-dark-bg); border-color: var(--ai-cyan); box-shadow: 0 0 15px var(--ai-cyan); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.portfolio-card { background: linear-gradient(145deg, rgba(17, 24, 50, 0.6), rgba(3, 6, 23, 0.6)); border: 1px solid var(--ai-light-bg); border-radius: 15px; aspect-ratio: 4 / 3; position: relative; overflow: hidden; transform-style: preserve-3d; transition: transform 0.4s ease; }
.portfolio-card:hover { transform: perspective(1000px) rotateY(var(--rotateY, 0)) rotateX(var(--rotateX, 0)) scale3d(1.05, 1.05, 1.05); }
.portfolio-card-bg { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; transition: all 0.4s ease; }
.portfolio-card:hover .portfolio-card-bg { filter: brightness(0.7); }
.portfolio-card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px; background: linear-gradient(to top, rgba(3, 6, 23, 0.9), transparent); transform: translateY(100%); transition: all 0.4s ease; }
.portfolio-card:hover .portfolio-card-content { transform: translateY(0); }
.portfolio-card-content h3 { color: #fff; font-size: 1.4rem; }
.portfolio-card-content p { color: var(--ai-cyan); margin: 0; }
.portfolio-card-content a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; text-indent: -9999px; }
.featured-case-study { background-color: var(--ai-mid-bg); }
.case-study-content-v2 h3 { color: var(--ai-cyan); font-size: 2rem; }
.case-study-content-v2 ul li { color: var(--text-light); list-style: none; padding-left: 0; }
.case-study-content-v2 ul li i { color: var(--ai-cyan); }
.case-study-svg-container { border-radius: 15px; border: 1px solid var(--ai-light-bg); padding: 20px; background: var(--ai-dark-bg); display: flex; align-items: center; justify-content: center; min-height: 400px; }
.case-study-svg { width: 100%; max-width: 400px; }
.case-study-svg .svg-glow { filter: drop-shadow(0 0 10px var(--ai-cyan)); }
.case-study-svg .svg-pulse { animation: pulse 2s infinite ease-in-out; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.7; } 100% { transform: scale(1); opacity: 1; } }

/*--------------------------------------------------------------
# 10. CAREERS PAGE STYLES
--------------------------------------------------------------*/
.careers-hero { height: 70vh; position: relative; display: flex; align-items: center; text-align: center; }
#careers-hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.careers-hero .container { position: relative; z-index: 2; }
.careers-hero h1 { font-size: 4rem; color: #fff; font-weight: 800; }
.culture-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.culture-card { background: var(--ai-light-bg); padding: 30px; border-radius: 15px; border: 1px solid transparent; transition: all 0.3s ease; text-align: center; }
.culture-card:hover { transform: translateY(-10px); border-color: var(--ai-purple); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.culture-icon { font-size: 3rem; color: var(--ai-purple); margin-bottom: 20px; }
.culture-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 15px; }
.job-terminal { background: var(--ai-mid-bg); padding: 40px; border-radius: 20px; border: 1px solid var(--ai-light-bg); }
.job-filters { margin-bottom: 30px; text-align: center; }
.job-filters .filter-btn { background: transparent; border: 1px solid var(--ai-light-bg); color: var(--text-muted); padding: 8px 20px; margin: 5px; border-radius: 20px; cursor: pointer; transition: all 0.3s ease; }
.job-filters .filter-btn:hover { background: var(--ai-light-bg); color: #fff; }
.job-filters .filter-btn.active { background: var(--ai-cyan); color: var(--ai-dark-bg); border-color: var(--ai-cyan); box-shadow: 0 0 15px var(--ai-cyan); }
.job-listing { background: rgba(3, 6, 23, 0.5); border: 1px solid var(--ai-light-bg); padding: 25px; border-radius: 10px; margin-bottom: 15px; transition: all 0.3s ease; }
.job-listing:hover { background: var(--ai-light-bg); border-color: var(--ai-cyan); }
.job-info h3 { font-size: 1.3rem; color: #fff; margin-bottom: 10px; }
.job-meta span { color: var(--text-muted); margin-right: 20px; font-size: 0.9rem; }
.job-tags .badge { background-color: var(--ai-light-bg); color: var(--text-muted); font-weight: normal; margin-right: 5px; }
.view-details-btn { background: transparent; border: 1px solid var(--ai-cyan); color: var(--ai-cyan); border-radius: 5px; padding: 8px 15px; transition: all 0.3s ease; }
.view-details-btn:hover { background: var(--ai-cyan); color: var(--ai-dark-bg); }
.job-details-panel { display: none; padding: 30px; margin-top: -15px; margin-bottom: 15px; background: var(--ai-dark-bg); border: 1px solid var(--ai-light-bg); border-top: none; border-radius: 0 0 10px 10px; }
.job-details-panel h4 { color: var(--ai-cyan); }
.hiring-process-timeline { display: flex; justify-content: space-between; position: relative; }
.hiring-process-timeline::before { content: ''; position: absolute; top: 25px; left: 5%; width: 90%; height: 2px; background: repeating-linear-gradient(90deg, var(--ai-light-bg), var(--ai-light-bg) 4px, transparent 4px, transparent 8px); }
.process-step-v2 { text-align: center; position: relative; flex: 1; }
.process-step-v2 .step-node { width: 50px; height: 50px; border-radius: 50%; background: var(--ai-mid-bg); border: 2px solid var(--ai-light-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.5rem; color: var(--ai-cyan); transition: all 0.3s ease; }
.process-step-v2:hover .step-node { background: var(--ai-cyan); color: var(--ai-dark-bg); transform: scale(1.1); box-shadow: 0 0 20px var(--ai-cyan); }
.process-step-v2 h4 { font-size: 1.1rem; color: #fff; margin-bottom: 5px; }

/*--------------------------------------------------------------
# 11. CONTACT PAGE STYLES
--------------------------------------------------------------*/
.contact-hero { height: 60vh; position: relative; display: flex; align-items: center; text-align: center; overflow: hidden; }
#contact-hero-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.contact-hero .container { position: relative; z-index: 2; }
.contact-hero h1 { font-size: 4rem; color: #fff; font-weight: 800; }
.info-card { background: var(--ai-light-bg); padding: 30px; border-radius: 10px; border: 1px solid transparent; transition: all 0.3s ease; }
.info-card:hover { border-color: var(--ai-purple); transform: translateY(-5px); }
.info-icon { font-size: 2rem; color: var(--ai-purple); margin-bottom: 15px; }
.info-card h4 { color: #fff; }
.info-card p, .info-card a { color: var(--text-muted); text-decoration: none; }
.contact-form-terminal { background: var(--ai-mid-bg); padding: 40px; border-radius: 15px; border: 1px solid var(--ai-light-bg); }
.form-group-v2 { position: relative; margin-bottom: 25px; }
.form-control-v2 { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--ai-light-bg); padding: 10px 0; color: #fff; font-size: 1rem; transition: border-color 0.3s ease; }
.form-control-v2:focus { outline: none; border-bottom-color: var(--ai-cyan); }
.form-label-v2 { position: absolute; top: 10px; left: 0; color: var(--text-muted); pointer-events: none; transition: all 0.3s ease; }
.form-control-v2:focus ~ .form-label-v2, .form-control-v2:not(:placeholder-shown) ~ .form-label-v2 { top: -15px; font-size: 0.8rem; color: var(--ai-cyan); }
textarea.form-control-v2 { resize: none; }
.submit-btn-v2 { padding: 14px 35px; font-weight: 600; color: var(--ai-cyan); border: 2px solid var(--ai-cyan); border-radius: 8px; background: transparent; transition: all 0.3s ease; }
.submit-btn-v2:hover { background: var(--ai-cyan); color: var(--ai-dark-bg); box-shadow: 0 0 20px var(--ai-cyan); }
.map-container { height: 100%; min-height: 500px; border-radius: 15px; overflow: hidden; }
.faq-accordion .accordion-item { background: var(--ai-light-bg); border: 1px solid var(--ai-mid-bg); border-radius: 5px !important; margin-bottom: 10px; }
.faq-accordion .accordion-button { background: var(--ai-light-bg); color: #fff; font-weight: bold; }
.faq-accordion .accordion-button:not(.collapsed) { background: var(--ai-mid-bg); color: var(--ai-cyan); box-shadow: none; }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300F6FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.faq-accordion .accordion-body { color: var(--text-muted); }

/*--------------------------------------------------------------
# 12. UTILITIES & RESPONSIVE
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--ai-cyan);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ai-dark-bg);
}
.back-to-top:hover {
    background: #fff;
    box-shadow: 0 0 20px #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .hero-ai-content h1, .hero-title-v2, .portfolio-hero h1, .careers-hero h1, .contact-hero h1, .about-hero h1 { font-size: 3.5rem; }
    .approach-flowchart { flex-direction: column; }
    .approach-step { margin-bottom: 40px; }
    .approach-flowchart::before { display: none; }
    .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
    .section-padding { padding: 80px 0; }
    .hero-ai-content h1, .hero-title-v2, .portfolio-hero h1, .careers-hero h1, .contact-hero h1, .about-hero h1 { font-size: 2.5rem; }
    .dna-timeline-v2::before { left: 20px; }
    .dna-item, .dna-item.right { width: 100%; padding-left: 50px; text-align: left; }
    .dna-item::after { left: 10px !important; }
}