/* New Tech Page styling with theme support */
:root {
    /* Tech page specific colors - Light theme by default */
    --tech-primary: var(--primary-color, #0088CC);
    --tech-secondary: var(--secondary-color, #6B35C2);
    --tech-dark: var(--bg-tertiary, #D5DBE2);
    --tech-darker: var(--bg-primary, #DFE5EC);
    --tech-light: var(--text-secondary, #1A3060);
    --tech-highlight: #ff4087;
    --tech-gray: var(--text-primary, #48525E);
    --tech-card-bg: var(--card-bg, #e7e8ea);
    --tech-gradient: linear-gradient(135deg, var(--tech-primary), var(--tech-secondary));
    --tech-gradient-reversed: linear-gradient(135deg, var(--tech-secondary), var(--tech-primary));
    
    /* Element-specific colors for light theme */
    --tech-hero-bg: var(--bg-primary, #DFE5EC);
    --tech-features-bg: var(--bg-secondary, #cccfd5);
    --tech-process-bg: var(--bg-primary, #DFE5EC);
    --tech-comparison-bg: var(--bg-secondary, #cccfd5);
    --tech-cta-bg: var(--bg-primary, #DFE5EC);
    
    /* Component colors for light theme */
    --tech-card-border: rgba(0, 0, 0, 0.1);
    --tech-badge-bg: rgba(0, 136, 204, 0.15);
    --tech-badge-border: rgba(0, 136, 204, 0.3);
    --tech-btn-secondary-bg: rgba(0, 0, 0, 0.05);
    --tech-btn-secondary-border: rgba(0, 136, 204, 0.3);
    --tech-feature-icon-bg: rgba(0, 136, 204, 0.1);
    --tech-tag-bg: rgba(0, 136, 204, 0.1);
    --tech-tag-border: rgba(0, 136, 204, 0.2);
    --tech-shape-opacity: 0.15;
    --tech-satellite-shadow: rgba(0, 136, 204, 0.5);
    --tech-particle-opacity: 0.3;
}

/* Dark theme overrides */
[data-theme="dark"] {
    --tech-primary: var(--primary-color, #0088CC);
    --tech-secondary: var(--secondary-color, #6B35C2);
    --tech-dark: var(--bg-secondary, #1E1E1E);
    --tech-darker: var(--bg-primary, #121212);
    --tech-light: var(--text-primary, #E0E0E0);
    --tech-gray: var(--text-muted, #AAAAAA);
    --tech-card-bg: var(--card-bg, #1E1E1E);
    
    /* Element-specific colors for dark theme */
    --tech-hero-bg: var(--bg-primary, #121212);
    --tech-features-bg: var(--bg-secondary, #1E1E1E);
    --tech-process-bg: var(--bg-primary, #121212);
    --tech-comparison-bg: var(--bg-secondary, #1E1E1E);
    --tech-cta-bg: var(--bg-primary, #121212);
    
    /* Component colors for dark theme */
    --tech-card-border: rgba(255, 255, 255, 0.1);
    --tech-badge-bg: rgba(0, 136, 204, 0.15);
    --tech-badge-border: rgba(0, 136, 204, 0.3);
    --tech-btn-secondary-bg: rgba(255, 255, 255, 0.05);
    --tech-btn-secondary-border: rgba(0, 136, 204, 0.3);
    --tech-feature-icon-bg: rgba(0, 136, 204, 0.1);
    --tech-tag-bg: rgba(0, 136, 204, 0.1);
    --tech-tag-border: rgba(0, 136, 204, 0.2);
    --tech-shape-opacity: 0.05;
    --tech-satellite-shadow: rgba(0, 136, 204, 0.5);
    --tech-particle-opacity: 0.2;
}

/* General styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--tech-darker);
    color: var(--tech-light);
    overflow-x: hidden;
    transition: var(--theme-transition);
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Section */
.tech-hero {
    position: relative;
    min-height: 100vh;
    background: var(--tech-hero-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: var(--theme-transition);
}

.tech-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
}

.tech-hero-text {
    width: 50%;
    padding-right: 50px;
}

.tech-badge {
    display: inline-block;
    background: var(--tech-badge-bg);
    color: var(--tech-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--tech-badge-border);
    backdrop-filter: blur(8px);
    box-shadow: var(--box-shadow);
    transition: var(--theme-transition);
}

.tech-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    transition: var(--theme-transition);
}

.tech-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--tech-gray);
    max-width: 600px;
    transition: var(--theme-transition);
}

.tech-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.tech-stat {
    position: relative;
}

.tech-stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--theme-transition);
}

.tech-stat-label {
    font-size: 1rem;
    color: var(--tech-gray);
    transition: var(--theme-transition);
}

.tech-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.tech-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.tech-btn-primary {
    background: var(--tech-gradient);
    color: white;
    box-shadow: 0 8px 20px rgba(var(--tech-primary-rgb, 0, 136, 204), 0.3);
}

.tech-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(var(--tech-primary-rgb, 0, 136, 204), 0.4);
}

.tech-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tech-gradient-reversed);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.tech-btn-primary:hover::after {
    opacity: 1;
}

.tech-btn-secondary {
    background: var(--tech-btn-secondary-bg);
    color: var(--tech-light);
    border: 1px solid var(--tech-btn-secondary-border);
    backdrop-filter: blur(8px);
    transition: var(--theme-transition);
}

.tech-btn-secondary:hover {
    background: var(--tech-btn-secondary-bg);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.tech-tag {
    background: var(--tech-tag-bg);
    color: var(--tech-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--tech-tag-border);
    backdrop-filter: blur(4px);
    white-space: nowrap;
    transition: var(--theme-transition);
}

/* Hero Visual Side */
.tech-hero-visual {
    width: 50%;
    position: relative;
}

.tech-ai-orb {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background: radial-gradient(circle at 30% 30%, rgba(var(--tech-primary-rgb, 0, 136, 204), 0.8), rgba(var(--tech-secondary-rgb, 107, 53, 194), 0.4) 60%, transparent);
    box-shadow: 
        0 0 60px rgba(var(--tech-primary-rgb, 0, 136, 204), 0.6),
        0 0 100px rgba(var(--tech-secondary-rgb, 107, 53, 194), 0.4);
    backdrop-filter: blur(10px);
    animation: pulse 6s infinite ease-in-out;
    transition: var(--theme-transition);
}

.tech-ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--tech-gradient);
    box-shadow: 0 0 30px rgba(var(--tech-primary-rgb, 0, 136, 204), 0.8);
    overflow: hidden;
    transition: var(--theme-transition);
}

.tech-ai-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
    0% { width: 0%; height: 0%; opacity: 1; }
    100% { width: 150%; height: 150%; opacity: 0; }
}

.tech-ai-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(var(--tech-primary-rgb, 0, 136, 204), 0.3);
    transition: var(--theme-transition);
}

.tech-ai-orbit-inner {
    width: 230px;
    height: 230px;
}

.tech-ai-orbit-outer {
    width: 350px;
    height: 350px;
}

.tech-ai-satellite {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--tech-secondary);
    box-shadow: 0 0 10px var(--tech-satellite-shadow);
    animation: orbit linear infinite;
    transition: var(--theme-transition);
}

.tech-ai-satellite::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--tech-secondary), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--theme-transition);
}

.tech-ai-satellite:nth-child(1) {
    animation-duration: 12s;
    animation-delay: 0s;
}

.tech-ai-satellite:nth-child(2) {
    animation-duration: 18s;
    animation-delay: -3s;
}

.tech-ai-satellite:nth-child(3) {
    animation-duration: 24s;
    animation-delay: -6s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

.tech-ai-data {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.tech-data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tech-primary);
    animation: data-flow linear infinite;
    transition: var(--theme-transition);
}

@keyframes data-flow {
    0% { opacity: 0; transform: scale(0.5) translate(0, 0); }
    20% { opacity: var(--tech-particle-opacity); }
    100% { opacity: 0; transform: scale(1.5) translate(var(--tx), var(--ty)); }
}

.tech-keyword-cloud {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.tech-keyword {
    position: absolute;
    font-size: var(--size, 1rem);
    color: rgba(var(--tech-primary-rgb, 0, 136, 204), 0.1);
    white-space: nowrap;
    animation: float var(--float-time, 5s) infinite ease-in-out;
    animation-delay: var(--delay, 0s);
    transition: var(--theme-transition);
}

/* Features section */
.tech-features {
    padding: 100px 0;
    background: var(--tech-features-bg);
    position: relative;
    overflow: hidden;
    transition: var(--theme-transition);
}

.tech-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.tech-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: var(--theme-transition);
}

.tech-section-title p {
    font-size: 1.2rem;
    color: var(--tech-gray);
    max-width: 700px;
    margin: 0 auto;
    transition: var(--theme-transition);
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-feature-card {
    background: var(--tech-card-bg);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid var(--tech-card-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.tech-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--strong-shadow);
    border-color: var(--tech-primary);
}

.tech-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--tech-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.tech-feature-card:hover::before {
    transform: scaleX(1);
}

.tech-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--tech-feature-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: var(--tech-primary);
    position: relative;
    overflow: hidden;
    transition: var(--theme-transition);
}

.tech-feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--tech-gradient);
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.tech-feature-card:hover .tech-feature-icon::after {
    opacity: 0.2;
}

.tech-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--tech-light);
    transition: var(--theme-transition);
}

.tech-feature-card p {
    color: var(--tech-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    transition: var(--theme-transition);
}

.tech-feature-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.tech-feature-points li {
    padding-right: 24px;
    margin-bottom: 12px;
    position: relative;
    color: var(--tech-gray);
    transition: var(--theme-transition);
}

.tech-feature-points li::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tech-primary);
    right: 0;
    top: 8px;
    transition: var(--theme-transition);
}

/* Process Section */
.tech-process {
    padding: 120px 0;
    background: var(--tech-process-bg);
    position: relative;
    transition: var(--theme-transition);
}

.tech-process-container {
    position: relative;
    z-index: 2;
}

.tech-process-steps {
    position: relative;
    margin-top: 80px;
}

.tech-process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 44px;
    width: 3px;
    background: linear-gradient(to bottom, var(--tech-primary) 0%, var(--tech-secondary) 100%);
    z-index: 1;
    transition: var(--theme-transition);
}

.tech-process-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.tech-step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--tech-card-bg);
    backdrop-filter: blur(8px);
    border: 2px solid var(--tech-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--tech-light);
    position: relative;
    margin-left: 40px;
    flex-shrink: 0;
    background-size: 200% 200%;
    animation: gradientShift 5s infinite ease;
    transition: var(--theme-transition);
}

.tech-step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--tech-gradient);
    opacity: 0.1;
    z-index: -1;
    transition: var(--theme-transition);
}

.tech-step-content {
    flex: 1;
    background: var(--tech-card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--tech-card-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.tech-process-step:hover .tech-step-content {
    border-color: var(--tech-primary);
    transform: translateY(-5px);
    box-shadow: var(--strong-shadow);
}

.tech-step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--tech-light);
    transition: var(--theme-transition);
}

.tech-step-content p {
    color: var(--tech-gray);
    line-height: 1.6;
    margin-bottom: 0;
    transition: var(--theme-transition);
}

/* Comparison Section */
.tech-comparison {
    padding: 100px 0;
    background: var(--tech-comparison-bg);
    position: relative;
    transition: var(--theme-transition);
}

.tech-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--theme-transition);
}

.tech-comparison-table thead {
    background: rgba(var(--tech-primary-rgb, 0, 136, 204), 0.1);
    transition: var(--theme-transition);
}

.tech-comparison-table th {
    padding: 20px;
    text-align: right;
    font-weight: 600;
    color: var(--tech-light);
    border-bottom: 1px solid rgba(var(--tech-primary-rgb, 0, 136, 204), 0.2);
    transition: var(--theme-transition);
}

.tech-comparison-table th:first-child {
    width: 30%;
}

.tech-comparison-table tbody tr {
    transition: background-color 0.2s ease;
    background-color: var(--tech-card-bg);
}

.tech-comparison-table tbody tr:hover {
    background: rgba(var(--tech-primary-rgb, 0, 136, 204), 0.05);
}

.tech-comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--tech-card-border);
    color: var(--tech-gray);
    transition: var(--theme-transition);
}

.tech-comparison-table tr:last-child td {
    border-bottom: none;
}

.tech-check-icon {
    color: var(--green, #17B17F);
    font-size: 1.2rem;
}

.tech-x-icon {
    color: var(--tech-highlight);
    font-size: 1.2rem;
}

/* Stats Section */
.tech-stats-section {
    padding: 120px 0;
    background: var(--tech-process-bg);
    position: relative;
    overflow: hidden;
    transition: var(--theme-transition);
}

.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-stat-box {
    background: var(--tech-card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--tech-card-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.tech-stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--tech-primary);
    box-shadow: var(--strong-shadow);
}

.tech-stat-box .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--theme-transition);
}

.tech-stat-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--tech-light);
    transition: var(--theme-transition);
}

.tech-stat-box p {
    color: var(--tech-gray);
    font-size: 0.9rem;
    transition: var(--theme-transition);
}

/* Case Studies */
.tech-cases {
    padding: 100px 0;
    background: var(--tech-comparison-bg);
    transition: var(--theme-transition);
}

.tech-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-case-card {
    background: var(--tech-card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--tech-card-border);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.tech-case-card:hover {
    transform: translateY(-10px);
    border-color: var(--tech-primary);
    box-shadow: var(--strong-shadow);
}

.tech-case-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.tech-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: saturate(0.8) brightness(0.9);
}

.tech-case-card:hover .tech-case-image img {
    transform: scale(1.05);
}

.tech-case-content {
    padding: 30px;
}

.tech-case-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--tech-light);
    transition: var(--theme-transition);
}

.tech-result-highlight {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: rgba(var(--tech-primary-rgb, 0, 136, 204), 0.1);
    border-radius: 4px;
    color: var(--tech-primary);
    font-weight: 600;
    transition: var(--theme-transition);
}

.tech-case-content p {
    color: var(--tech-gray);
    line-height: 1.6;
    transition: var(--theme-transition);
}

/* CTA Section */
.tech-cta {
    padding: 100px 0;
    background: var(--tech-cta-bg);
    position: relative;
    overflow: hidden;
    transition: var(--theme-transition);
}

.tech-cta-box {
    background: linear-gradient(135deg, rgba(var(--tech-primary-rgb, 0, 136, 204), 0.1), rgba(var(--tech-secondary-rgb, 107, 53, 194), 0.1));
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--tech-primary-rgb, 0, 136, 204), 0.2);
    box-shadow: var(--card-shadow);
    max-width: 800px;
    margin: 0 auto;
    transition: var(--theme-transition);
}

.tech-cta-box:hover {
    box-shadow: var(--strong-shadow);
    border-color: var(--tech-primary);
}

.tech-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: var(--tech-shape-opacity);
    background-image: radial-gradient(circle at 50% 50%, var(--tech-primary) 0%, transparent 60%);
    animation: pulse 6s infinite;
    z-index: -1;
    transition: var(--theme-transition);
}

.tech-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--tech-light);
    transition: var(--theme-transition);
}

.tech-cta-text {
    color: var(--tech-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    transition: var(--theme-transition);
}

/* Update particles colors for theme */
.particles-js-canvas-el {
    transition: var(--theme-transition);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .tech-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-ai-orb {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 991px) {
    .tech-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-hero-text, 
    .tech-hero-visual {
        width: 100%;
        padding-right: 0;
    }
    
    .tech-hero-text {
        margin-bottom: 60px;
    }
    
    .tech-hero-title {
        font-size: 3rem;
    }
    
    .tech-stats {
        justify-content: center;
    }
    
    .tech-buttons {
        justify-content: center;
    }
    
    .tech-tags {
        justify-content: center;
    }
    
    .tech-process-line {
        right: 24px;
    }
    
    .tech-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .tech-features-grid,
    .tech-stats-grid,
    .tech-case-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-process-step {
        flex-direction: column;
    }
    
    .tech-process-line {
        display: none;
    }
    
    .tech-step-number {
        margin: 0 0 20px 0;
    }
    
    .tech-cta-box {
        padding: 40px 20px;
    }
    
    .tech-hero-title {
        font-size: 2.5rem;
    }
    
    .tech-section-title h2 {
        font-size: 2rem;
    }
    
    .tech-ai-orb {
        width: 280px;
        height: 280px;
    }
}
.tech-floating-terms {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-term {
    position: absolute;
    white-space: nowrap;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 0.5px;
    pointer-events: none;
    animation: floatUpwards linear infinite;
    color: var(--primary-color, #0088CC);
    opacity: 0.2;
}

@keyframes floatUpwards {
    0% {
        transform: translate(var(--drift), 0);
        opacity: var(--initial-opacity, 0.2);
    }
    80% {
        opacity: var(--initial-opacity, 0.2);
    }
    100% {
        transform: translate(var(--drift), -120vh);
        opacity: 0;
    }
}
/* Base styles for the circular stats */
.ai-seo-stat-circles {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    text-align: center;
    flex-wrap: wrap;
}

.ai-seo-stat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33%;
    margin-bottom: 20px;
}

.ai-seo-stat-circle span {
    margin-top: 10px;
    color: var(--text-primary, #E6EBF5);
    font-size: 0.9rem;
}

.circular-chart {
    width: 100px;
    height: 100px;
}


/* Process Timeline Styles - with theme support */
.tech-process {
    padding: 100px 0;
    background: var(--tech-process-bg, var(--bg-primary, #DFE5EC));
    position: relative;
    transition: var(--theme-transition, all 0.3s ease);
}

.tech-process-timeline {
    position: relative;
    margin: 60px 0;
}

.tech-timeline-line {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to left, var(--primary-color, #0088CC), var(--secondary-color, #6B35C2));
    transform: translateY(-50%);
    z-index: 0;
}

.tech-process-steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tech-process-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    text-align: center;
}

.tech-step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--tech-card-bg, #e7e8ea);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary, #1A3060);
    border: 2px solid var(--primary-color, #0088CC);
    box-shadow: var(--card-shadow, 0 8px 15px rgba(0, 0, 0, 0.1));
    position: relative;
    transition: var(--theme-transition, all 0.3s ease);
    cursor: pointer;
}

.tech-step-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb, 0, 136, 204), 0.2), rgba(var(--secondary-color-rgb, 107, 53, 194), 0.2));
    z-index: -1;
    transition: var(--theme-transition, all 0.3s ease);
}

.tech-process-step:hover .tech-step-circle {
    transform: translateY(-5px);
    box-shadow: var(--strong-shadow, 0 12px 20px rgba(0, 0, 0, 0.15));
}

.tech-step-content {
    max-width: 90%;
    margin: 0 auto;
}

.tech-step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary, #1A3060);
    transition: var(--theme-transition, all 0.3s ease);
}

.tech-step-content p {
    color: var(--text-secondary, #48525E);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: var(--theme-transition, all 0.3s ease);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .tech-step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .tech-process-steps {
        flex-direction: column;
    }

    .tech-timeline-line {
        height: 100%;
        width: 3px;
        right: 50%;
        top: 0;
        bottom: 0;
        transform: translateX(50%);
    }

    .tech-process-step {
        width: 100%;
        margin: 20px 0;
        flex-direction: row;
        text-align: right;
    }

    .tech-step-circle {
        margin: 0 0 0 15px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .tech-step-content {
        text-align: right;
    }
}

@media (max-width: 480px) {
    .tech-process-step {
        flex-direction: column;
        text-align: center;
    }

    .tech-step-circle {
        margin: 0 0 15px 0;
    }

    .tech-step-content {
        text-align: center;
    }
}