:root {
    --deep-space: #0a0e17;
    --space-blue: #0f1420;
    --electric-blue: #0066ff;
    --neon-blue: #00ccff;
    --neon-purple: #8a2be2;
    --ai-teal: #00e5ff;
    --cyber-green: #00ffab;
    --light-gray: #f0f4f8;
    --mid-gray: #e2e8f0;
    --dark-text: #1a202c;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
	
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--deep-space);
    cursor: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 14, 23, 0.6);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 102, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
}

header.scrolled {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}


/* Header & Navigation */
.logo,
a.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ai-teal), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    cursor: pointer;
}

a.logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 5px;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a.active {
    color: var(--ai-teal);
}

nav ul li a:hover {
    color: var(--ai-teal);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--ai-teal), var(--neon-purple));
    transition: width 0.3s;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 20, 32, 0.95);
    backdrop-filter: blur(10px);
    min-width: 250px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 204, 255, 0.1);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--mid-gray);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0, 204, 255, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--ai-teal);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* IMPROVED Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    min-width: 80px;
    justify-content: space-between;
}

.lang-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--ai-teal);
}

.lang-btn.active {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--ai-teal);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 20, 32, 0.98);
    backdrop-filter: blur(10px);
    min-width: 120px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 204, 255, 0.2);
    z-index: 1000;
    overflow: hidden;
    margin-top: 5px;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--mid-gray);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
    font-size: 14px;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: rgba(0, 229, 255, 0.15);
    color: var(--ai-teal);
    padding-left: 20px;
}

.cta-button {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
}

/* ENHANCED HERO SECTION */
.hero.enhanced-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-space) 0%, #1a1f38 100%);
    margin-top: 70px;
    padding: 0;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--ai-teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ai-teal);
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-1000px) translateX(100px); opacity: 0; }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse-orb 8s infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--ai-teal);
    top: -200px;
    left: -150px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--electric-blue);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes pulse-orb {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.hero-content.enhanced-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: calc(100vh - 70px);
    position: relative;
    z-index: 10;
}

.hero-text.enhanced-hero-text {
    padding-right: 0;
}

.enhanced-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white), var(--ai-teal), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.typing-text {
    font-size: 24px;
    color: var(--mid-gray);
    margin-bottom: 40px;
    min-height: 80px;
    font-weight: 300;
}

/* STANDARDIZED HERO BUTTONS */
.hero-buttons.enhanced-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.enhanced-btn-primary, .enhanced-btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.enhanced-btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
    border: none;
}

.enhanced-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.6);
}

.enhanced-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ai-teal);
    border: 2px solid var(--ai-teal);
    backdrop-filter: blur(10px);
}

.enhanced-btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.2);
}

.hero-stats.enhanced-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ai-teal), var(--cyber-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--mid-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual.enhanced-hero-visual {
    perspective: 1000px;
}

.floating-card {
    position: relative;
    width: 100%;
    height: 600px;
    transform-style: preserve-3d;
    animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateX(-5deg) rotateY(5deg); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 229, 255, 0.1), transparent);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.code-block {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--cyber-green);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    background: rgba(0, 20, 40, 0.3);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--ai-teal);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.code-line {
    opacity: 0;
    animation: type-line 0.5s forwards;
    margin-bottom: 5px;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.6s; }
.code-line:nth-child(3) { animation-delay: 1.1s; }
.code-line:nth-child(4) { animation-delay: 1.6s; }
.code-line:nth-child(5) { animation-delay: 2.1s; }

@keyframes type-line {
    to { opacity: 1; }
}

.keyword { color: var(--neon-purple); font-weight: bold; }
.string { color: var(--ai-teal); }
.function { color: var(--cyber-green); }

/* ANIMATED BI DASHBOARD */
.dashboard-container {
    background: rgba(10, 15, 25, 0.7);
    border-radius: 12px;
    padding: 15px;
    margin-top: auto;
    border: 1px solid rgba(0, 204, 255, 0.1);
    position: relative;
    z-index: 1;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
}

.dashboard-header h4 {
    font-size: 14px;
    color: var(--ai-teal);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.live-indicator {
    background: rgba(255, 50, 50, 0.2);
    color: #ff6b6b;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-indicator i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.metric-card {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.metric-label {
    font-size: 10px;
    color: var(--mid-gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.metric-trend {
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.metric-trend.up {
    color: var(--cyber-green);
}

.chart-container {
    margin-top: 15px;
}

.chart-title {
    font-size: 12px;
    color: var(--mid-gray);
    margin-bottom: 10px;
    font-weight: 600;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 80px;
    gap: 8px;
}

.bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.bar-fill {
    width: 12px;
    height: var(--height);
    background: linear-gradient(to top, var(--ai-teal), var(--neon-blue));
    border-radius: 6px 6px 0 0;
    animation: barGrow 1.5s ease-out forwards;
    opacity: 0;
    animation-delay: calc(var(--i, 0) * 0.2s);
}

@keyframes barGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: var(--height);
        opacity: 1;
    }
}

.bar-label {
    font-size: 9px;
    color: var(--mid-gray);
    margin-top: 5px;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
}

.dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 204, 255, 0.1);
    font-size: 10px;
    color: var(--mid-gray);
}

.data-source, .update-time {
    display: flex;
    align-items: center;
    gap: 5px;
}



.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--mid-gray);
    animation: bounce 2s infinite;
    font-size: 14px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator i {
    font-size: 20px;
    display: block;
    margin-top: 8px;
    color: var(--ai-teal);
}

/* Add this to your main CSS (not inside media queries) to ensure desktop styles */
.floating-elements-container {
    position: absolute;
    top: 60px;
    right: 40px;
    left: auto;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-element {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(138, 43, 226, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: float-element 3s ease-in-out infinite;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.floating-element:nth-child(1) { animation-delay: 0s; }
.floating-element:nth-child(2) { animation-delay: 0.5s; }
.floating-element:nth-child(3) { animation-delay: 1s; }

@keyframes float-element {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: translateY(-8px) rotate(2deg); 
        box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    }
}

.floating-element.active {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(138, 43, 226, 0.3));
    border-color: var(--ai-teal);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--ai-teal);
}

.floating-element:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(138, 43, 226, 0.25));
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.4);
}

.floating-element .tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 20, 32, 0.95);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(0, 204, 255, 0.2);
    backdrop-filter: blur(10px);
}

.floating-element:hover .tooltip {
    opacity: 1;
    visibility: visible;
    top: -40px;
}


/* IMPROVED Trust Bar with Better Hover Effects */
.trust-bar {
    background: rgba(15, 20, 32, 0.7);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 204, 255, 0.1);
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
}

.trust-bar h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--mid-gray);
    font-size: 18px;
    font-weight: 500;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.client-logo {
    height: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 204, 255, 0.05);
}

.client-logo img {
    height: 85px;
    width: auto;
    max-width: 170px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 204, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* Problem Solution Section */
.problem-solution {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, #1a2238 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--white), var(--ai-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--mid-gray);
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-side, .solution-side {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.problem-side {
    border-left: 4px solid #ff4d4d;
}

.solution-side {
    border-left: 4px solid var(--ai-teal);
}

.problem-side:hover, .solution-side:hover {
    transform: translateY(-10px);
}

.problem-side h3, .solution-side h3 {
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.problem-side h3::before {
    content: "✗";
    color: #ff4d4d;
    font-size: 32px;
}

.solution-side h3::before {
    content: "✓";
    color: var(--ai-teal);
    font-size: 32px;
}

.problem-list, .solution-list {
    list-style: none;
}

.problem-list li, .solution-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.problem-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff4d4d;
    font-size: 24px;
}

.solution-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ai-teal);
    font-size: 24px;
}

/* Solutions Section */
.solutions {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--space-blue) 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    border-color: var(--ai-teal);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.solution-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.solution-card p {
    color: var(--mid-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.solution-features {
    list-style: none;
    margin-bottom: 30px;
}

.solution-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--mid-gray);
}

.solution-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--ai-teal);
    font-weight: bold;
}

.card-link {
    color: var(--ai-teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 15px;
}

/* Case Studies */
.case-studies {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, #1a2238 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.case-study-header {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    padding: 30px;
}

.case-study-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.case-study-content {
    padding: 30px;
}

.case-study-point {
    margin-bottom: 25px;
}

.case-study-point h4 {
    color: var(--ai-teal);
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-point p {
    color: var(--mid-gray);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--space-blue) 100%);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ai-teal);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-primary {
    width: 30%;
    padding: 18px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.6);
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    color: var(--ai-teal);
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-item p {
    color: var(--mid-gray);
    font-size: 14px;
}

/* ============================================
   DROPDOWN STYLES FOR CONTACT FORM
   ============================================ */

/* Style for select dropdowns */
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none; /* Remove default arrow for Safari */
    -moz-appearance: none; /* Remove default arrow for Firefox */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

/* Style the dropdown options */
.form-group select option {
    background: var(--space-blue);
    color: var(--white);
    padding: 10px;
}

/* Hover and focus states */
.form-group select:hover {
    border-color: var(--ai-teal);
    background: rgba(0, 229, 255, 0.05);
}

.form-group select:focus {
    outline: none;
    border-color: var(--ai-teal);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

/* Style for invalid state */
.form-group select:invalid {
    border-color: #ff6b6b;
    color: var(--mid-gray);
}

/* Style for valid state */
.form-group select:valid {
    border-color: var(--cyber-green);
}

/* Placeholder text styling */
.form-group select option[value=""][disabled] {
    color: var(--mid-gray);
}

/* Active state when dropdown is open */
.form-group select:active,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.08);
}

/* For browsers that don't support appearance:native */
@supports not ((-webkit-appearance: none) or (appearance: none)) {
    .form-group select {
        background: rgba(255, 255, 255, 0.05);
        padding-right: 20px;
    }
}




/* Footer */
footer {
    background: var(--deep-space);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 204, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 40px;
}

.footer-info p {
    color: var(--mid-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mid-gray);
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(0, 229, 255, 0.2);
    color: var(--ai-teal);
    transform: translateY(-5px);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--mid-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: var(--ai-teal);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mid-gray);
    font-size: 14px;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--ai-teal);
}


/* ============================================
   SMOOTH TRANSITIONS FOR RESIZING
   ============================================ */

/* Add smooth transitions for layout changes */
.container,
.hero-content.enhanced-hero-content,
.floating-card,
.glass-card,
.dashboard-container,
.solutions-grid,
.case-studies-grid,
.solution-card,
.case-study-card {
    transition: all 0.3s ease-in-out;
}

/* Prevent content jump during resize */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Ensure text doesn't overflow on resize */
h1, h2, h3, h4, h5, h6,
p, li, span, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    width: 100%;
}


/* ============================================
   LOGO & IMAGE PROTECTION (NO DISTORTION)
   ============================================ */

/* Ensure all images maintain aspect ratio */
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Header logo */
.logo-img {
    height: 60px;
    width: auto;
}

/* Client logos in trust bar */
.client-logo img {
    height: 85px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

/* Footer logo */
.footer-logo .logo-img {
    height: 40px;
    width: auto;
}

/* Solution icons */
.solution-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}


/* Mobile Responsive */
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   INTERMEDIATE BREAKPOINTS FOR SMALLER LAPTOPS
   ============================================ */

/* For 1366px screens (13-inch laptops) */
@media (max-width: 1366px) {
    .container {
        max-width: 1200px;
        padding: 0 35px;
    }
    
    .enhanced-title {
        font-size: 56px;
    }
    
    .hero-content.enhanced-hero-content {
        gap: 60px;
    }
    
    .floating-card {
        height: 580px;
    }
    
    .dashboard-container {
        padding: 18px;
    }
    
    .chart-bars {
        height: 100px;
    }
    
    .bar-label {
        font-size: 10px;
    }
    
    .solutions-grid,
    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .solution-card,
    .case-study-card {
        padding: 35px;
    }
}

/* For 1280px screens */
@media (max-width: 1280px) {
    .container {
        max-width: 1100px;
        padding: 0 30px;
    }
    
    .enhanced-title {
        font-size: 52px;
    }
    
    .typing-text {
        font-size: 22px;
    }
    
    .floating-card {
        height: 550px;
    }
    
    .glass-card {
        padding: 25px;
    }
    
    .dashboard-container {
        padding: 16px;
    }
    
    .chart-bars {
        height: 90px;
        gap: 12px;
    }
    
    .bar-fill {
        width: 18px;
    }
    
    .solutions-grid,
    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .solution-card,
    .case-study-card {
        padding: 30px;
    }
    
    /* Adjust header navigation spacing */
    nav ul li {
        margin-left: 25px;
    }
}

/* For 1152px screens */
@media (max-width: 1152px) {
    .container {
        max-width: 1000px;
        padding: 0 25px;
    }
    
    .enhanced-title {
        font-size: 48px;
    }
    
    .typing-text {
        font-size: 20px;
    }
    
    .hero-content.enhanced-hero-content {
        gap: 50px;
    }
    
    .floating-card {
        height: 520px;
    }
    
    .glass-card {
        padding: 22px;
    }
    
    .code-block {
        font-size: 14px;
    }
    
    .dashboard-header h4 {
        font-size: 15px;
    }
    
    .metric-value {
        font-size: 22px;
    }
    
    .chart-bars {
        height: 85px;
        gap: 10px;
    }
    
    .bar-fill {
        width: 16px;
    }
    
    .bar-label {
        font-size: 9px;
    }
}

/* For 1024px screens (common 13-inch laptop resolution) */
@media (max-width: 1024px) {
    .container {
        max-width: 950px;
        padding: 0 20px;
    }
    
    .enhanced-title {
        font-size: 44px;
        line-height: 1.2;
    }
    
    .typing-text {
        font-size: 18px;
        min-height: 70px;
    }
    
    .hero-content.enhanced-hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
    }
    
    .hero-stats.enhanced-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .floating-card {
        height: 500px;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .code-block {
        font-size: 13px;
        padding: 15px;
    }
    
    .tab {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .dashboard-container {
        padding: 15px;
    }
    
    .dashboard-header h4 {
        font-size: 14px;
    }
    
    .dashboard-metrics {
        gap: 12px;
    }
    
    .metric-value {
        font-size: 20px;
    }
    
    .metric-label {
        font-size: 11px;
    }
    
    .chart-bars {
        height: 80px;
        gap: 8px;
    }
    
    .bar-fill {
        width: 14px;
    }
    
    .bar-label {
        font-size: 9px;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    /* Adjust floating icons position */
    .floating-elements-container {
        top: 30px;
        right: 30px;
    }
    
    /* Adjust sections */
    .section-title h2 {
        font-size: 40px;
    }
    
    .section-title p {
        font-size: 18px;
    }
    
    /* Adjust solutions and case studies */
    .solutions-grid,
    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .solution-card,
    .case-study-card {
        padding: 28px;
    }
    
    .solution-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    /* Adjust header */
    nav ul li {
        margin-left: 20px;
    }
    
    .header-right {
        gap: 15px;
    }
    
    /* Adjust client logos */
    .client-logos {
        gap: 60px;
    }
    
    .client-logo img {
        height: 75px;
        max-width: 150px;
    }
}


/* For tablets in landscape and small laptops */
@media (max-width: 992px) {
    .hero-content.enhanced-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .enhanced-title {
        font-size: 42px;
        text-align: center;
    }

    .typing-text {
        font-size: 20px;
        text-align: center;
    }

    .section-title h2 {
        font-size: 36px;
    }
    
    .section-title p {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .floating-card {
        height: 500px;
        max-width: 600px;
        margin: 0 auto;
    }

    .glass-card {
        padding: 25px;
    }
    
    .hero-buttons.enhanced-hero-buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .enhanced-btn-primary,
    .enhanced-btn-secondary {
        flex: 0 0 auto;
        min-width: 200px;
    }
    
    .client-logos {
        gap: 40px;
    }
    
    .client-logo {
        padding: 15px 20px;
    }
    
    /* Assessment tools adjustments for tablet */
    .assessment-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .assessment-tab {
        min-width: 200px;
    }
    
    .training-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Fix for contact form */
    .contact-form-container {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* For 960px screens (transition breakpoint) */
@media (max-width: 960px) {
    .hero-content.enhanced-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .enhanced-title {
        font-size: 42px;
    }
    
    .floating-card {
        height: 480px;
    }
    
    .glass-card {
        padding: 18px;
    }
    
    .solutions-grid,
    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 22px;
    }
}




/* ============================================
   MOBILE RESPONSIVE - TABLET & SMALL SCREENS
   ============================================ */

@media (max-width: 768px) {
    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        margin-left: auto;
		order: 2;
		justify-content: left;
        width: 40px;
        height: 40px;
        background: rgba(0, 229, 255, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(0, 204, 255, 0.2);
    }

    .mobile-menu-btn:hover {
        background: rgba(0, 229, 255, 0.2);
    }

    /* Navigation */
    nav ul {
        display: none;
        position: fixed;
        top: 180px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000; 
        max-height: auto;
        overflow-y: auto;
    }

    nav ul.mobile-active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    /* Header */
    header {
        padding: 10px 0;
		overflow: visible !important;
		max-height: none !important;
	}
	
	    
    .client-logo img {
        height: 60px;
        max-width: auto;
    }

    .header-container {
        padding: 0 15px;
		overflow: visible !important;
		max-height:none !important;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: right;
		min-height: auto;
    }

    .logo-img {
        height: 40px;
    }

    .header-right {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header-right.active {
        display: flex;
    }

    /* Fix for language switcher and CTA button in mobile */
    .language-switcher {
        width: 50%;
        max-width: 100px;
    }

    .lang-btn {
        width: 50%;
        justify-content: right;
    }

    .lang-dropdown {
        width: 50%;
        right: 0;
        left: 0;
    }

    .cta-button {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        text-align: center;
    }

    /* Hero Section - FIXED */
    .hero.enhanced-hero {
        min-height: auto;
        padding: 100px 0 60px;
        margin-top: 60px;
        overflow: hidden;
    }

    .hero-content.enhanced-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .enhanced-title {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 20px;
    }

    .typing-text {
        font-size: 16px;
        text-align: center;
        min-height: 60px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-buttons.enhanced-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .enhanced-btn-primary,
    .enhanced-btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Hide particles and orbs on mobile */
    .hero-particles {
        display: none;
    }

    .gradient-orb {
        display: none;
    }

    /* Hero Stats */
    .hero-stats.enhanced-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 100%;
        margin-top: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Floating Card - FIXED */
    .floating-card {
        height: auto !important;
        min-height: 400px;
        margin: 0 auto;
        max-width: 95%;
        animation: none;
        transform: none !important;
    }

    .glass-card {
        padding: 15px;
        border-radius: 15px;
        max-height: 500px;
        overflow-y: auto;
        position: relative;
    }

    /* Floating Icons - FIXED */
    .floating-elements-container {
        position: absolute;
        top: 10px !important;
        right: 20px !important;
        left: auto !important;
        z-index: 5;
        display: flex;
        flex-direction: column;
        gap: 5px;
        pointer-events: auto;
    }

    .floating-element {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
        border-radius: 8px;
        animation: float-element-mobile 3s ease-in-out infinite;
    }

    .floating-element .tooltip {
        display: none;
    }

    @keyframes float-element-mobile {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-5px) scale(1.05); }
    }

    /* Code Block - FIXED */
    .code-block {
        margin-top: 50px;
        margin-right: 50px;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 10px;
        padding: 10px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .code-line {
        white-space: nowrap;
        font-size: 10px;
    }

    /* Code Tabs */
    .code-tabs {
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: 0;
    }

    .tab {
        padding: 8px 10px;
        font-size: 10px;
        white-space: nowrap;
        min-width: 80px;
    }

    /* Dashboard - FIXED */
    .dashboard-container {
        max-height: none;
        padding: 10px;
        margin-top: 15px;
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .dashboard-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 10px;
    }

    .metric-card {
        padding: 8px;
    }

    .metric-value {
        font-size: 14px;
    }

    .metric-label {
        font-size: 9px;
    }

    .chart-container {
        margin-top: 10px;
    }

    .chart-bars {
        height: 60px;
        gap: 4px;
    }

    .bar {
        flex: 1;
    }

    .bar-fill {
        width: 8px;
    }

    .bar-label {
        font-size: 7px;
        transform: rotate(-45deg);
        transform-origin: left center;
        margin-left: 5px;
        white-space: nowrap;
        height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dashboard-footer {
        font-size: 8px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    /* Scene Progress */
    .scene-progress {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-top: 15px;
    }

    .progress-dots {
        gap: 8px;
    }

    .auto-play {
        font-size: 11px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
        font-size: 12px;
    }

    /* Trust Bar */
    .trust-bar {
        padding: 40px 0;
    }

    .client-logos {
        flex-direction: column;
        gap: 30px;
    }

    .client-logo {
        width: 80%;
        max-width: 250px;
        margin: 0 auto;
        padding: 15px;
    }

    .client-logo img {
        height: 60px;
    }

    /* Problem Solution Section */
    .problem-solution {
        padding: 60px 0;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .problem-side, .solution-side {
        padding: 25px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px;
        padding: 0 15px;
    }

    .section-title p {
        font-size: 16px;
        padding: 0 15px;
    }

    /* Solutions Grid */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-card {
        padding: 25px;
    }

    /* Case Studies */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-study-header {
        padding: 20px;
    }

    /* Contact Form */
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Contact form dropdown on mobile */
    .form-group select {
        padding: 12px 15px;
        font-size: 14px;
        background-position: right 15px center;
        background-size: 14px;
        padding-right: 40px;
    }
    




    .btn-primary {
        width: 100%;
    }

    /* Dropdown Menus */
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: rgba(15, 20, 32, 0.9);
        border: 1px solid rgba(0, 204, 255, 0.2);
        margin-top: 10px;
        border-radius: 10px;
        max-height: 300px;
        overflow-y: auto;
    }

    .dropdown-content a {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links ul li {
        margin-bottom: 0;
    }

    .social-links {
        justify-content: center;
    }

    /* Assessment Tools Mobile Styles */
    .assessment-hero {
        padding: 80px 0 40px;
    }

    .assessment-hero h1 {
        font-size: 32px;
    }

    .assessment-hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    .assessment-tabs {
        flex-direction: column;
        align-items: center;
    }

    .assessment-tab {
        width: 90%;
        padding: 15px 20px;
    }

    .assessment-container {
        padding: 25px;
        margin: 20px 0;
    }

    .assessment-header h3 {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }

    .form-section {
        padding: 20px;
    }

    .options label {
        padding: 10px;
        font-size: 14px;
    }

    .score-display {
        flex-direction: column;
        gap: 20px;
    }

    .score-circle {
        width: 120px;
        height: 120px;
    }

    .score-circle span {
        font-size: 36px;
    }

    .score-details {
        min-width: 100%;
        text-align: center;
    }

    .recommendations li {
        font-size: 14px;
    }

    .training-cards {
        grid-template-columns: 1fr;
    }

    /* Container */
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
	
	
}


/* ============================================
   MOBILE RESPONSIVE - EXTRA SMALL SCREENS
   ============================================ */

@media (max-width: 480px) {
    .enhanced-title {
        font-size: 28px;
    }

    .typing-text {
        font-size: 14px;
        min-height: 50px;
    }

    .stat-number {
        font-size: 24px;
    }

    .scroll-indicator {
        display: none;
    }

    .client-logos {
        gap: 20px;
    }

    .client-logo img {
        height: 50px;
        max-width: 120px;
    }

    .contact-form {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .comparison-container {
        gap: 20px;
    }

    .problem-side, .solution-side {
        padding: 20px;
    }

    /* Very small screen adjustments */
    .floating-element {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }

    .floating-elements-container {
        top: 8px !important;
        right: 8px !important;
        gap: 4px;
    }

    .code-block {
        margin-top: 40px;
        margin-right: 40px;
        font-size: 9px;
    }

    .floating-card {
        min-height: 350px;
    }

    .dashboard-metrics {
        gap: 5px;
    }

    .metric-value {
        font-size: 12px;
    }

    .metric-label {
        font-size: 8px;
    }

    .chart-bars {
        height: 50px;
    }

    .bar-fill {
        width: 6px;
    }

    .assessment-hero h1 {
        font-size: 28px;
    }

    .score-circle {
        width: 100px;
        height: 100px;
    }

    .score-circle span {
        font-size: 28px;
    }
    
    .form-group select {
        padding: 10px 12px;
        font-size: 13px;
    }
}



@keyframes barGrow {
    0% {
        height: 0;
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        height: var(--height);
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes float-element {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: translateY(-8px) rotate(2deg); 
        box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    }
}



@keyframes pulse-border {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}







/* ============================================
   ASSESSMENT TOOLS STYLES
   ============================================ */

.assessment-hero {
    background: linear-gradient(135deg, var(--deep-space) 0%, #1a2238 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.assessment-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--ai-teal), var(--cyber-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.assessment-hero p {
    font-size: 20px;
    color: var(--mid-gray);
    max-width: 600px;
    margin: 0 auto;
}

.assessments {
    padding: 80px 0;
    background: var(--space-blue);
}

.assessment-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.assessment-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 30px;
    color: var(--mid-gray);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
}

.assessment-tab:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--ai-teal);
    color: var(--ai-teal);
    transform: translateY(-3px);
}

.assessment-tab.active {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.assessment-container {
    display: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
}

.assessment-container.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.assessment-header {
    text-align: center;
    margin-bottom: 40px;
}

.assessment-header h3 {
    font-size: 32px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.assessment-header p {
    color: var(--mid-gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.assessment-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--ai-teal);
}

.form-section h4 {
    color: var(--ai-teal);
    margin-bottom: 20px;
    font-size: 20px;
}

.question {
    margin-bottom: 25px;
}

.question p {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 16px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.options label {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.options label:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.2);
}

.options input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--ai-teal);
}

.assessment-result {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    text-align: center;
}

.assessment-result h4 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--white);
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.4);
}

.score-circle span {
    font-size: 48px;
    line-height: 1;
}

.score-circle small {
    font-size: 16px;
    opacity: 0.8;
}

.score-details {
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.score-details h5 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--ai-teal);
}

.score-details p {
    color: var(--mid-gray);
    font-size: 16px;
    line-height: 1.6;
}

.recommendations {
    text-align: left;
    margin: 40px 0;
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 15px;
}

.recommendations h5 {
    color: var(--cyber-green);
    margin-bottom: 20px;
    font-size: 20px;
}

.recommendations ul {
    list-style: none;
    padding-left: 0;
}

.recommendations li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--mid-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recommendations li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cyber-green);
    font-weight: bold;
}

.training-recommendations {
    margin-top: 40px;
}

.training-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.training-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: all 0.3s;
}

.training-card:hover {
    transform: translateY(-5px);
    border-color: var(--ai-teal);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.training-card h6 {
    color: var(--ai-teal);
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.training-card p {
    color: var(--mid-gray);
    font-size: 14px;
    margin: 5px 0;
}

/* ============================================
   CORPORATE TRAINING PAGE STYLES
   ============================================ */

/* Training Hero */
.training-hero {
    background: linear-gradient(135deg, var(--deep-space) 0%, #1a2238 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.training-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--ai-teal), var(--cyber-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.training-hero p {
    font-size: 20px;
    color: var(--mid-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Training Benefits */
.training-benefits {
    padding: 80px 0;
    background: var(--space-blue);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--ai-teal);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.benefit-card p {
    color: var(--mid-gray);
    line-height: 1.6;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--space-blue) 100%);
}

.course-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.course-card:hover {
    border-color: var(--ai-teal);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.course-badge.advanced {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
}

.course-badge.intermediate {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.course-header {
    padding: 40px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.course-header h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.3;
}

.course-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.course-level {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-level.intermediate {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.course-level.advanced {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.course-duration,
.course-format {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mid-gray);
    font-size: 14px;
}

.course-content {
    padding: 30px 40px 40px;
}

.course-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--mid-gray);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.course-modules h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--ai-teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.module-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--ai-teal);
}

.module-card h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--white);
}

.module-card ul {
    list-style: none;
    padding-left: 0;
}

.module-card li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--mid-gray);
    font-size: 14px;
}

.module-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ai-teal);
}

.course-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.detail-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--ai-teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item p {
    color: var(--mid-gray);
    line-height: 1.6;
}

.alignment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.alignment-tag {
    background: rgba(0, 229, 255, 0.1);
    color: var(--ai-teal);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.course-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.course-syllabus {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Training Options */
.training-options {
    padding: 80px 0;
    background: var(--space-blue);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s;
}

.option-card:hover {
    transform: translateY(-10px);
    border-color: var(--ai-teal);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.option-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
}

.option-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--white);
}

.option-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.option-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--mid-gray);
}

.option-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ai-teal);
    font-weight: bold;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-space) 0%, #1a2238 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    color: var(--mid-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Training Page */
@media (max-width: 1024px) {
    .training-hero h1 {
        font-size: 40px;
    }
    
    .course-header h3 {
        font-size: 24px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .training-hero {
        padding: 100px 0 60px;
    }
    
    .training-hero h1 {
        font-size: 32px;
    }
    
    .training-hero p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .course-header {
        padding: 30px 20px 20px;
    }
    
    .course-content {
        padding: 20px;
    }
    
    .course-header h3 {
        font-size: 20px;
    }
    
    .course-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .course-details {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .course-actions {
        flex-direction: column;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .benefits-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .course-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 15px;
        display: inline-block;
    }
}

/* ============================================
   ENHANCED PRODUCT HERO SECTION
   ============================================ */

.product-hero-enhanced {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-space) 0%, #1a1f38 100%);
    margin-top: 70px;
    padding: 80px 0;
}

.product-hero-enhanced .product-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.product-hero-enhanced .product-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white), var(--ai-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-hero-enhanced .product-hero-text p {
    font-size: 20px;
    color: var(--mid-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.product-hero-enhanced .product-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-enhanced .product-screenshot {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 204, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    transition: all 0.4s;
}

.product-hero-enhanced .product-screenshot:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.3);
    border-color: var(--ai-teal);
}

/* ============================================
   FEATURE CARDS FOR PRODUCT PAGES
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    border-color: var(--ai-teal);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: var(--mid-gray);
    line-height: 1.6;
}

/* ============================================
   TECHNOLOGY STACK SECTION
   ============================================ */

.tech-stack {
    padding: 120px 0;
    background: var(--space-blue);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-category h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--ai-teal);
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-icon {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--ai-teal);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.tech-icon:hover {
    background: rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
    border-color: var(--ai-teal);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

/* ============================================
   CASE STUDIES FOR REGULATORY PAGE
   ============================================ */

.case-studies {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--deep-space) 0%, #1a2238 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    border-color: var(--ai-teal);
}

.case-study-header {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
    padding: 30px;
}

.case-study-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.case-study-content {
    padding: 30px;
}

.case-study-point {
    margin-bottom: 25px;
}

.case-study-point h4 {
    color: var(--ai-teal);
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-point p {
    color: var(--mid-gray);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--deep-space) 0%, #1a2238 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 20px;
    color: var(--mid-gray);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ============================================
   RESPONSIVE DESIGN FOR PRODUCT PAGES
   ============================================ */

@media (max-width: 1024px) {
    .product-hero-enhanced .product-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-hero-enhanced .product-hero-text h1 {
        font-size: 36px;
    }

    .product-hero-enhanced .product-hero-text p {
        font-size: 18px;
    }

    .product-hero-enhanced .product-screenshot {
        padding: 30px;
    }

    .features-grid,
    .case-studies-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-hero-enhanced {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .product-hero-enhanced .product-hero-text h1 {
        font-size: 32px;
    }

    .product-hero-enhanced .product-hero-text p {
        font-size: 16px;
    }

    .product-hero-enhanced .product-screenshot i {
        font-size: 80px;
    }

    .features-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card,
    .case-study-card {
        padding: 25px;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-icons {
        justify-content: center;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .product-hero-enhanced .product-hero-text h1 {
        font-size: 28px;
    }

    .product-hero-enhanced .product-screenshot i {
        font-size: 60px;
    }

    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3,
    .case-study-header h3 {
        font-size: 20px;
    }

    .tech-category h4 {
        text-align: center;
    }

    .case-study-header {
        padding: 20px;
    }

    .case-study-content {
        padding: 20px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* ============================================
   SCROLL ANIMATIONS FOR PRODUCT PAGES
   ============================================ */

.product-hero-enhanced,
.tech-stack,
.cta-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-hero-enhanced.visible,
.tech-stack.visible,
.cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTON STYLES FOR PRODUCT PAGES
   ============================================ */

.product-hero-enhanced .hero-buttons.enhanced-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .product-hero-enhanced .hero-buttons.enhanced-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .product-hero-enhanced .enhanced-btn-primary,
    .product-hero-enhanced .enhanced-btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}