/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 50%, #2a2f3e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::-webkit-scrollbar, *::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #232a3d;
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb, *::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb:hover, *::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* === AI Particles Background === */
.particles {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 8px; height: 8px;
    background: linear-gradient(135deg, #667eea 60%, #f093fb 100%);
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 0 16px #667eea88, 0 0 32px #f093fb44;
    animation: floatParticle 16s linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { opacity: 1; }
    100% { transform: translateY(-120vh) scale(1.2); opacity: 0.2; }
}

/* === Typewriter Animation === */
.typewriter {
    display: inline-block;
    border-right: 2px solid #f093fb;
    white-space: nowrap;
    overflow: hidden;
    animation: blink-caret 0.8s step-end infinite;
}
@keyframes blink-caret {
    0%, 100% { border-color: #f093fb; }
    50% { border-color: transparent; }
}

/* === Glow CTA Button === */
.glow-btn {
    box-shadow: 0 0 16px 2px #667eea88, 0 0 32px 4px #f093fb44;
    animation: glowPulse 2.5s infinite alternate;
}
@keyframes glowPulse {
    0% { box-shadow: 0 0 16px 2px #667eea88, 0 0 32px 4px #f093fb44; }
    100% { box-shadow: 0 0 32px 8px #f093fb99, 0 0 48px 12px #667eea55; }
}

/* === Fade Up Animation === */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}
.fade-up-delayed {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s 0.3s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-up-delayed.animate {
    opacity: 1;
    transform: translateY(0);
}

/* === Hero Visual Responsive === */
.ai-visual.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    z-index: 2;
}
@media (max-width: 700px) {
    .ai-visual.hero-visual svg { width: 90vw; height: auto; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Animation Classes */
.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-up.animate {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #b8c5d1;
    line-height: 1.7;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Advanced Gradient Text Animation */
.animated-gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand .logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #b8c5d1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8c5d1;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 40px;
    text-align: center;
}

.language-btn:hover,
.language-btn.active {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    color: #667eea;
    transform: translateY(-1px);
}

.language-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #667eea;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.6); }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #b8c5d1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;

    background-size: 400% 400%;
    border-radius: 22px;
    z-index: -1;
    animation: gradientBorder 8s ease infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    font-weight: 600;
    color: #fff;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.metric-card {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 1s;
}

.metric-card:hover::before {
    left: 100%;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.metric-card h3 {
    font-size: 0.85rem;
    color: #b8c5d1;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.metric-change {
    font-size: 0.8rem;
    color: #4ade80;
    font-weight: 500;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.floating-shape-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 30px;
    top: 20%;
    left: 10%;
    animation: floatShape1 20s ease-in-out infinite;
}

.floating-shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.15), rgba(102, 126, 234, 0.15));
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation: floatShape2 15s ease-in-out infinite reverse;
}

.floating-shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 20px;
    bottom: 30%;
    left: 20%;
    animation: floatShape3 25s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translateX(0px) translateY(0px) scale(1); }
    50% { transform: translateX(30px) translateY(-40px) scale(1.2); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-40px) rotate(180deg) scale(1); }
    75% { transform: translateY(-20px) rotate(270deg) scale(1.1); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

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

.section-header p {
    font-size: 1.1rem;
    color: #b8c5d1;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.8s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-content p {
    color: #b8c5d1;
    margin: 0;
    font-size: 0.95rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visualization {
    width: 300px;
    height: 300px;
    position: relative;
}

.neural-network {
    width: 100%;
    height: 100%;
    position: relative;
}

.node {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    position: absolute;
    animation: nodeGlow 3s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

.node:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.node:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.5s; }
.node:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; }
.node:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 1.5s; }

@keyframes nodeGlow {
    0% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
        transform: scale(1.1);
    }
}

/* Services Section */
.services {
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-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: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.8s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #667eea;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #b8c5d1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-link:hover {
    color: #764ba2;
}

/* Stats Section */
.stats {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    color: #b8c5d1;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-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: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(102, 126, 234, 0.05) 50%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.testimonial-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(20px, 20px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-style: italic;
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    animation: avatarGlow 3s ease-in-out infinite alternate;
}

@keyframes avatarGlow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    100% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.6); }
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.author-info span {
    color: #b8c5d1;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    animation: ctaGlow 10s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #b8c5d1;
    margin-bottom: 2rem;
}

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

/* Page Hero */
.page-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 140px 0 80px;
    text-align: left;
    background:
        radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.services-nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 32px;
}

.project-card-sidebar {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
    min-width: 260px;
    max-width: 320px;
    z-index: 10;
    background: linear-gradient(135deg, rgba(24,29,43,0.85) 60%, rgba(35,42,61,0.92) 100%);
    border-radius: 32px;
    box-shadow: 0 8px 40px 0 #667eea33, 0 1.5px 0 0 #667eea;
    padding: 36px 22px 28px 22px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    border-left: none;
    border-top: none;
    backdrop-filter: blur(8px) saturate(1.2);
    border: 1.5px solid #232a3d;
    transition: box-shadow 0.3s;
}
@media (max-width: 1100px) {
  .project-card-sidebar {
    position: static;
    margin: 0 auto 24px auto;
    max-width: 100%;
    width: 100%;
    top: unset;
  }
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #b8c5d1;
}

/* Advanced Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Additional animations and effects continue... */

/* Continue with responsive design... */

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .overview-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }



    .floating-shape-1,
    .floating-shape-2,
    .floating-shape-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-brand .logo {
        width: 35px;
        height: 35px;
    }
    
    .nav-brand h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .stats-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        width: 30px;
        height: 30px;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Additional sections continue with the same enhanced animation patterns... */

/* Services Detailed Page */
.services-detailed {
    padding: 80px 0;
    position: relative;
}

.services-detailed-grid {
    display: grid;
    gap: 4rem;
}

.service-detailed {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-detailed:hover::before {
    transform: scaleX(1);
}

.service-detailed:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.service-detailed:hover .service-icon-large {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.1);
}

.service-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-header p {
    font-size: 1.1rem;
    color: #b8c5d1;
    max-width: 600px;
    margin: 0 auto;
}

.service-features,
.service-benefits {
    margin-bottom: 2rem;
}

.service-features h3,
.service-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
}

.service-features h3::before,
.service-benefits h3::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.service-features ul,
.service-benefits ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.service-features li,
.service-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-features li:hover,
.service-benefits li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.service-features li::before,
.service-benefits li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.service-benefits li::before {
    content: '🎯';
    background: rgba(34, 197, 94, 0.1);
}

/* Process Section */
.process {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    animation: stepGlow 3s ease-in-out infinite alternate;
}

@keyframes stepGlow {
    0% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    100% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
    }
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.process-step p {
    color: #b8c5d1;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Blog Styles */
.featured-blog {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.featured-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-category {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-category.ai {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.post-category.automation {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.post-category.data {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.post-category.technology {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.post-category.business {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.post-date {
    color: #b8c5d1;
    font-size: 0.9rem;
}

.featured-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.featured-content p {
    font-size: 1.1rem;
    color: #b8c5d1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.post-meta-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.read-time {
    color: #b8c5d1;
    font-size: 0.9rem;
}

.featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visual {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neural-network-large {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.neural-network-large .node {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: nodeGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.neural-network-large .node.large {
    width: 60px;
    height: 60px;
}

.neural-network-large .node.medium {
    width: 40px;
    height: 40px;
}

.neural-network-large .node.small {
    width: 25px;
    height: 25px;
}

/* Blog Categories */
.blog-categories {
    padding: 60px 0 0;
}

.categories-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #b8c5d1;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.category-item.active,
.category-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    color: #667eea;
    transform: translateY(-2px);
}

.category-icon {
    font-size: 1.2rem;
}

.category-count {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-item.active .category-count {
    background: rgba(102, 126, 234, 0.2);
}

/* Blog Posts Grid */
.blog-posts {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-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.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.8s;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.blog-visual.automation {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
}

.blog-visual.machine-learning {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.2));
}

.blog-visual.data-science {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.2));
}

.blog-visual.tech-trends {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(168, 85, 247, 0.2));
}

.blog-visual.business {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.2));
}

.blog-visual.security {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.blog-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #b8c5d1;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.4;
}

.blog-content p {
    color: #b8c5d1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #764ba2;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: #b8c5d1;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscribe-form input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.subscribe-form input::placeholder {
    color: #b8c5d1;
}

.subscribe-form button {
    white-space: nowrap;
    padding: 15px 25px;
}

/* Responsive Design for Blog */
@media (max-width: 1024px) {
    .featured-post,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-image {
        order: -1;
    }

    .ai-visual {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .featured-content h2 {
        font-size: 1.8rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        gap: 0.5rem;
    }

    .category-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .subscribe-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .featured-post {
        padding: 2rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .featured-content h2 {
        font-size: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }
}

/* Blog Post Page */
.blog-post-hero {
    padding: 140px 0 80px;
    background:
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
}

.breadcrumb span {
    color: #b8c5d1;
}

.post-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #b8c5d1;
    font-size: 0.9rem;
}

.blog-post-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-excerpt {
    font-size: 1.2rem;
    color: #b8c5d1;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.author-info-detailed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.author-avatar-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-details h4 {
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 1.1rem;
}

.author-details p {
    margin: 0 0 1rem 0;
    color: #b8c5d1;
    font-size: 0.9rem;
}

.author-social {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Blog Post Content */
.blog-post-content {
    padding: 80px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.post-body {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.post-body h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    color: #fff;
    position: relative;
}

.post-body h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.post-body h4 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    color: #667eea;
}

.post-body p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #e2e8f0;
}

.post-body ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.post-body li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #e2e8f0;
    line-height: 1.6;
}

.post-body li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
    top: 0.1rem;
}

/* Content Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.share-section,
.table-of-contents,
.related-topics {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.share-section h4,
.table-of-contents h4,
.related-topics h4 {
    margin: 0 0 1rem 0;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #b8c5d1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.table-of-contents a:hover {
    color: #667eea;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-post-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.4);
}

.related-post-image {
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.related-post-image.automation {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
}

.related-post-image.machine-learning {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(102, 126, 234, 0.2));
}

.related-post-image.data-science {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.2));
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #fff;
    line-height: 1.3;
}

.related-post-content p {
    color: #b8c5d1;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.read-more-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #764ba2;
}

/* Responsive Design for Blog Post */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .blog-post-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 2rem;
    }

    .post-excerpt {
        font-size: 1.1rem;
    }

    .post-body {
        padding: 2rem;
    }

    .author-info-detailed {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .post-meta-top {
        flex-direction: column;
        gap: 1rem;
    }

    .content-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-post-header h1 {
        font-size: 1.8rem;
    }

    .post-body {
        padding: 1.5rem;
    }

    .post-body h3 {
        font-size: 1.5rem;
    }

    .post-body h3::before {
        left: -15px;
        height: 25px;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-section h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #b8c5d1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b8c5d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8c5d1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

/* === Contact Page Customization === */
.contact-form-section {
    padding: 60px 0 40px 0;
    background: rgba(20, 25, 40, 0.98);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.contact-info {
    background: linear-gradient(135deg, #181d2b 60%, #232a3d 100%);
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(30,40,60,0.18);
    padding: 36px 32px 32px 32px;
    color: #fff;
    margin-bottom: 0;
}
.contact-info h2 {
    font-size: 2.1rem;
    margin-bottom: 0.7rem;
}
.contact-info p {
    color: #b8c5d1;
    margin-bottom: 1.2rem;
}
.contact-methods {
    margin: 32px 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #232a3d;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 12px 0 rgba(30,40,60,0.10);
}
.contact-icon {
    flex-shrink: 0;
    color: #667eea;
    background: #181d2b;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.contact-details p {
    color: #b8c5d1;
    margin-bottom: 0.1rem;
    font-size: 0.98rem;
}
.response-time {
    margin-top: 32px;
    background: #232a3d;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 1px 8px 0 rgba(30,40,60,0.08);
}
.response-time h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #f093fb;
}
.response-time p {
    color: #b8c5d1;
    font-size: 0.97rem;
}

.contact-form {
    background: linear-gradient(135deg, #181d2b 60%, #232a3d 100%);
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(30,40,60,0.18);
    padding: 36px 32px 32px 32px;
    color: #fff;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.form-row {
    display: flex;
    gap: 18px;
}
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
.form-group label {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #b8c5d1;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: #232a3d;
    border: 1.5px solid #2a2f3e;
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 1rem;
    transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    outline: none;
}
.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 8px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.98rem;
    color: #b8c5d1;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #667eea;
}
.btn-full {
    width: 100%;
    margin-top: 10px;
}
.form-note {
    font-size: 0.92rem;
    color: #7e8ba3;
    margin-top: 8px;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 60px 0 40px 0;
    background: rgba(20, 25, 40, 0.98);
}
.faq .section-header {
    text-align: center;
    margin-bottom: 36px;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
.faq-item {
    background: linear-gradient(135deg, #181d2b 60%, #232a3d 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px 0 rgba(30,40,60,0.13);
    padding: 28px 24px 22px 24px;
    color: #fff;
    transition: transform 0.18s, box-shadow 0.18s;
}
.faq-item:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(102,126,234,0.18);
}
.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}
.faq-item p {
    color: #b8c5d1;
    font-size: 0.99rem;
}

/* === About Page Customization === */
.company-overview {
    padding: 60px 0 40px 0;
    background: rgba(20, 25, 40, 0.98);
}
.overview-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 900px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
.overview-content {
    background: linear-gradient(135deg, #181d2b 60%, #232a3d 100%);
    border-radius: 22px;
    box-shadow: 0 6px 32px 0 rgba(30,40,60,0.18);
    padding: 36px 32px 32px 32px;
    color: #fff;
}
.overview-content h2 {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}
.overview-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}
.overview-content ul.feature-list {
    margin: 0 0 0.5rem 1.2rem;
    padding: 0;
    color: #b8c5d1;
    font-size: 1rem;
}
.overview-content ul.feature-list li {
    margin-bottom: 0.5rem;
    list-style: disc;
}
.overview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-brain {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #232a3d 60%, #181d2b 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 18px 0 rgba(30,40,60,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
}
.brain-node {
    width: 22px;
    height: 22px;
    background: #667eea;
    border-radius: 50%;
    position: absolute;
    opacity: 0.7;
    box-shadow: 0 0 12px #667eea88;
}
.brain-node.active {
    background: #f093fb;
    box-shadow: 0 0 18px #f093fbcc;
    opacity: 1;
}
.ai-brain .brain-node:nth-child(1) { top: 20%; left: 30%; }
.ai-brain .brain-node:nth-child(2) { top: 60%; left: 20%; }
.ai-brain .brain-node:nth-child(3) { top: 50%; right: 25%; }
.ai-brain .brain-node:nth-child(4) { bottom: 25%; left: 50%; }
.ai-brain .brain-node:nth-child(5) { bottom: 20%; right: 30%; }

.our-story {
    padding: 60px 0 40px 0;
    background: rgba(20, 25, 40, 0.98);
}
.story-timeline {
    display: flex;
    flex-direction: row;
    gap: 28px;
    position: relative;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
.story-timeline::-webkit-scrollbar {
    display: none;
}
.story-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
    z-index: 0;
    transform: translateY(-50%);
    border-radius: 2px;
}
.timeline-item {
    background: linear-gradient(135deg, #181d2b 60%, #232a3d 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px 0 rgba(30,40,60,0.13);
    padding: 28px 24px 22px 24px;
    color: #fff;
    min-width: 220px;
    max-width: 260px;
    flex: 1 0 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    transition: transform 0.18s, box-shadow 0.18s;
    margin-bottom: 0;
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -14px;
    width: 28px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
    z-index: 2;
    transform: translateY(-50%);
    border-radius: 2px;
}
.timeline-year {
    font-size: 1.1rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}
.timeline-year::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: #f093fb;
    border: 3px solid #667eea;
    border-radius: 50%;
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.timeline-item:first-child .timeline-year::before {
    left: -9px;
}
.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #f093fb;
}
.timeline-content p {
    color: #b8c5d1;
    font-size: 0.99rem;
}
@media (max-width: 900px) {
    .story-timeline {
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
        padding-bottom: 0;
    }
    .story-timeline::before {
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #667eea 0%, #f093fb 100%);
        transform: translateX(-50%);
    }
    .timeline-item {
        min-width: unset;
        max-width: unset;
        flex: 1 0 auto;
        margin-left: 0;
        margin-bottom: 0;
        margin-top: 0;
    }
    .timeline-item:not(:last-child)::after {
        top: auto;
        left: 50%;
        right: auto;
        width: 4px;
        height: 28px;
        background: linear-gradient(180deg, #667eea 0%, #f093fb 100%);
        transform: translateX(-50%);
    }
    .timeline-year::before {
        left: 50%;
        top: -28px;
        transform: translateX(-50%);
    }
    .timeline-item:first-child .timeline-year::before {
        top: -9px;
        left: 50%;
    }
}

.team {
    padding: 60px 0 40px 0;
    background: rgba(20, 25, 40, 0.98);
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 28px;
}
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
.team-member {
    background: linear-gradient(135deg, #181d2b 60%, #232a3d 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px 0 rgba(30,40,60,0.13);
    padding: 28px 24px 22px 24px;
    color: #fff;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.team-member:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(102,126,234,0.18);
}
.member-avatar {
    width: 64px;
    height: 64px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: bold;
    margin: 0 auto 14px auto;
    box-shadow: 0 2px 8px #667eea55;
}
.member-role {
    color: #f093fb;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.values {
    padding: 60px 0 40px 0;
    background: rgba(20, 25, 40, 0.98);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 28px;
}
@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
.value-item {
    background: linear-gradient(135deg, #181d2b 60%, #232a3d 100%);
    border-radius: 18px;
    box-shadow: 0 4px 18px 0 rgba(30,40,60,0.13);
    padding: 28px 24px 22px 24px;
    color: #fff;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.value-item:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 8px 32px 0 rgba(102,126,234,0.18);
}
.value-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    color: #667eea;
}

/* Timeline scroll shadow indicators */
.story-timeline-scrollable {
    position: relative;
}
.story-timeline-scrollable::before,
.story-timeline-scrollable::after {
    content: '';
    position: absolute;
    top: 0;
    width: 36px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s;
}
.story-timeline-scrollable::before {
    left: 0;
    background: linear-gradient(90deg, rgba(20,25,40,0.98) 80%, transparent);
    opacity: 1;
}
.story-timeline-scrollable::after {
    right: 0;
    background: linear-gradient(270deg, rgba(20,25,40,0.98) 80%, transparent);
    opacity: 1;
}
.story-timeline-scrollable.hide-left::before {
    opacity: 0;
}
.story-timeline-scrollable.hide-right::after {
    opacity: 0;
}

.story-timeline {
    scroll-behavior: smooth;
}

/* === Why AI Sticky Section === */
.why-ai-sticky {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 2;
}
.why-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #181d2b 60%, #232a3d 100%);
    background-attachment: fixed;
    z-index: 1;
    opacity: 0.98;
    pointer-events: none;
    transition: background 0.5s;
}
.why-ai-sticky .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 60px;
}
.why-header {
    text-align: center;
    margin-bottom: 48px;
}
.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    justify-content: center;
}
@media (max-width: 1100px) {
    .why-cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .why-cards {
        grid-template-columns: 0fr;
    }
}
.why-card {
    background: linear-gradient(135deg, #232a3d 60%, #181d2b 100%);
    border-radius: 20px;
    box-shadow: 0 6px 32px 0 rgba(30,40,60,0.18);
    padding: 36px 28px 32px 28px;
    color: #fff;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    z-index: 2;
    opacity: 0.97;
}
.why-card:hover {
    transform: translateY(-8px) scale(1.035);
    box-shadow: 0 12px 40px 0 rgba(102,126,234,0.18);
}
.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.1rem;
    color: #667eea;
    text-shadow: 0 0 12px #f093fb55;
}
.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #f093fb;
}
.why-card p {
    color: #b8c5d1;
    font-size: 1.05rem;
}
.why-wave {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

/* === Hero Down Arrow & Text === */
.hero-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    gap: 6px;
    user-select: none;
}
.hero-down-text {
    font-size: 1rem;
    color: #b8c5d1;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroArrowBounce 1.5s infinite alternate;
}
@keyframes heroArrowBounce {
    0% { transform: translateY(0); opacity: 0.7; }
    60% { opacity: 1; }
    100% { transform: translateY(16px); opacity: 0.7; }
}
.hero-down-arrow svg {
    filter: drop-shadow(0 2px 8px #667eea55);
}

/* === Services Navigation Buttons (Elegant Blue) === */
.services-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 36px 0 32px 0;
    z-index: 3;
    position: relative;
    animation: fadeInUp 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.services-nav button {
    background: linear-gradient(90deg, #232a3d 60%, #181d2b 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 14px 36px;
    font-size: 1.08rem;
    font-family: inherit;
    font-weight: 700;
    box-shadow: 0 2px 16px 0 #667eea22;
    cursor: pointer;
    transition: background 0.25s, color 0.2s, box-shadow 0.25s, transform 0.18s;
    outline: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    animation: navBtnAppear 0.7s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes navBtnAppear {
    0% { opacity: 0; transform: translateY(24px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.services-nav button:nth-child(1) { animation-delay: 0.05s; }
.services-nav button:nth-child(2) { animation-delay: 0.12s; }
.services-nav button:nth-child(3) { animation-delay: 0.19s; }
.services-nav button:nth-child(4) { animation-delay: 0.26s; }
.services-nav button:nth-child(5) { animation-delay: 0.33s; }
.services-nav button:nth-child(6) { animation-delay: 0.40s; }

.services-nav button::before {
    content: '';
    position: absolute;
    left: -40%;
    top: -40%;
    width: 180%;
    height: 180%;
    background: linear-gradient(120deg, #667eea, #4f5bd5, #667eea);
    background-size: 200% 200%;
    opacity: 0.16;
    z-index: 0;
    filter: blur(12px);
    transition: opacity 0.3s;
    animation: navBtnGlowBlue 3.5s linear infinite;
    border-radius: 50%;
    pointer-events: none;
}
@keyframes navBtnGlowBlue {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.services-nav button:hover, .services-nav button.active {
    background: linear-gradient(90deg, #667eea 0%, #4f5bd5 100%);
    color: #fff;
    box-shadow: 0 6px 32px 0 #667eea55, 0 0 0 2px #4f5bd555;
    transform: scale(1.06);
    z-index: 2;
}
.services-nav button:hover::before, .services-nav button.active::before {
    opacity: 0.28;
}
@media (max-width: 700px) {
    .services-nav {
        gap: 10px;
    }
    .services-nav button {
        padding: 10px 14px;
        font-size: 0.98rem;
    }
}

/* === Project Card Sidebar (Hero Only, Enhanced) === */
.project-card-sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
    min-width: 260px;
    max-width: 300px;
    margin-right: 32px;
    z-index: 10;
    background: linear-gradient(135deg, rgba(24,29,43,0.85) 60%, rgba(35,42,61,0.92) 100%);
    border-radius: 32px;
    box-shadow: 0 8px 40px 0 #667eea33, 0 1.5px 0 0 #667eea;
    padding: 36px 22px 28px 22px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    border-left: none;
    border-top: none;
    backdrop-filter: blur(8px) saturate(1.2);
    border: 1.5px solid #232a3d;
    transition: box-shadow 0.3s;
}
.project-card-sidebar::before {
    content: '';
    position: absolute;
    left: 0; top: 24px; bottom: 24px;
    width: 6px;
    border-radius: 6px;
    background: linear-gradient(180deg, #667eea 0%, #f093fb 100%);
    box-shadow: 0 0 16px #667eea55;
    z-index: 1;
}
.project-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.project-icon {
    font-size: 2.1rem;
    color: #ffe066;
    text-shadow: 0 0 16px #f093fb88, 0 0 8px #ffe06688;
    filter: drop-shadow(0 0 8px #667eea88);
    animation: iconPulse 2.5s infinite alternate;
}
@keyframes iconPulse {
    0% { filter: drop-shadow(0 0 8px #667eea88); }
    100% { filter: drop-shadow(0 0 18px #f093fbcc); }
}
.project-card-header h3 {
    font-size: 1.32rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px #232a3d55;
}
.project-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.project-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #232a3d 60%, #181d2b 100%);
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    color: #fff;
    font-size: 1.08rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px 0 #667eea22;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s, color 0.18s;
    outline: none;
    position: relative;
    letter-spacing: 0.01em;
    opacity: 0.96;
}
.project-item:hover, .project-item:focus {
    background: linear-gradient(90deg, #667eea 0%, #4f5bd5 100%);
    color: #fff;
    box-shadow: 0 6px 24px 0 #667eea55;
    transform: scale(1.06);
    z-index: 2;
    opacity: 1;
}
.project-thumb {
    font-size: 1.25rem;
    margin-right: 2px;
    filter: drop-shadow(0 0 6px #667eea55);
}
.project-title {
    font-size: 1.08rem;
    font-weight: 600;
}
@media (max-width: 1100px) {
    .project-card-sidebar {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 24px;
        border-radius: 24px;
        border-left: none;
        border-top: none;
        box-shadow: 0 4px 18px 0 #667eea33;
        padding: 18px 8px 14px 8px;
    }
    .project-card-sidebar::before {
        left: 24px; top: 0; bottom: 0; width: 90%; height: 6px;
        background: linear-gradient(90deg, #667eea 0%, #f093fb 100%);
        border-radius: 6px;
        box-shadow: 0 0 12px #667eea55;
    }
    .project-list {
        flex-direction: row;
        gap: 10px;
    }
}
@media (max-width: 700px) {
    .project-card-sidebar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 2px 10px 2px;
        border-radius: 16px;
    }
    .project-list {
        flex-direction: column;
        gap: 8px;
    }
    .project-card-sidebar::before {
        display: none;
    }
}

.services-content-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    margin-top: 0;
}

.project-card-sidebar {
    margin-top: 0;
    min-width: 260px;
    max-width: 320px;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.owl-carousel {
    flex: 1 1 0%;
    margin-left: 0 !important;
    width: 100%;
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 0;
    overflow: hidden;
    /* يمنع خروج الكروت عن الصف */
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: flex-start;
    width: 100% !important;
    justify-content: space-between;
}

.owl-carousel .why-card {
    height: 100%;
    min-width: 0;
    max-width: none;
    width: 100%;
    flex: 1 1 0;
    margin: 0 12px;
    box-sizing: border-box;
}

.owl-carousel .why-card:first-child {
    margin-left: 0;
}
.owl-carousel .why-card:last-child {
    margin-right: 0;
}

.services-detailed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-1 * ((100vw - 100%) / 2));
    margin-right: 0;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .services-detailed {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 1100px) {
    .services-content-row {
        flex-direction: column;
        gap: 24px;
    }
    .project-card-sidebar {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
}

/* Mobile Responsive for Services Page */
@media (max-width: 768px) {
    .services-content-row {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }
    
    .project-card-sidebar {
        max-width: 100%;
        width: 100%;
        margin: 0;
        min-width: auto;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    
    .project-card-header {
        padding: 16px;
        text-align: center;
    }
    
    .project-card-header h3 {
        font-size: 1.2rem;
        margin: 0;
    }
    
    .project-list {
        padding: 0 16px 16px;
    }
    
    .project-category-btn {
        padding: 12px 16px;
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .project-item {
        padding: 10px 16px;
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .why-cards-slider-wrapper {
        width: 100%;
        margin: 0;
        padding: 0 8px;
    }
    
    .why-cards-flex {
        gap: 12px;
        padding: 0 4px;
    }
    
    .why-cards-flex .why-card {
        min-width: 140px;
        max-width: 160px;
        padding: 16px 12px;
        margin: 0 6px;
    }
    
    .why-card h3 {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-top: 8px;
    }
    
    .why-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .why-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .why-arrow.left {
        left: 4px;
    }
    
    .why-arrow.right {
        right: 4px;
    }
    
    .services-detailed {
        padding: 0 16px;
    }
    
    .service-detailed {
        padding: 20px 16px;
        margin-bottom: 20px;
    }
    
    .service-header h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .service-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .service-features h3,
    .service-benefits h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-features li,
    .service-benefits li {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .services-content-row {
        padding: 0 12px;
        gap: 12px;
    }
    
    .project-card-header {
        padding: 12px;
    }
    
    .project-card-header h3 {
        font-size: 1.1rem;
    }
    
    .project-list {
        padding: 0 12px 12px;
    }
    
    .project-category-btn {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .project-item {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .why-cards-flex .why-card {
        min-width: 120px;
        max-width: 140px;
        padding: 12px 8px;
        margin: 0 4px;
    }
    
    .why-card h3 {
        font-size: 0.8rem;
        margin-top: 6px;
    }
    
    .why-icon {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .why-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .why-arrow.left {
        left: 2px;
    }
    
    .why-arrow.right {
        right: 2px;
    }
    
    .services-detailed {
        padding: 0 12px;
    }
    
    .service-detailed {
        padding: 16px 12px;
        margin-bottom: 16px;
    }
    
    .service-header h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .service-header p {
        font-size: 0.9rem;
    }
    
    .service-features h3,
    .service-benefits h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .service-features li,
    .service-benefits li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
}

.services-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 18px;
    margin-top: -38px;
    gap: 0;
    position: relative;
    z-index: 11;
}

.services-nav {
    margin: 0 8px;
}

.services-nav-arrow {
    margin: 0 2px;
}

/* === Project Modal === */
.project-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 24, 38, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s;
}
.project-modal.active {
    display: flex;
}
.project-modal-content {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.30);
    padding: 3rem 2.5rem 2.2rem 2.5rem;
    min-width: 320px;
    max-width: 95vw;
    max-height: 90vh;
    color: #fff;
    position: relative;
    text-align: center;
    overflow-y: auto;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 768px) {
    .project-modal-content {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
        max-width: 98vw;
        max-height: 85vh;
        border-radius: 16px;
    }
    
    .project-modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .project-modal-img {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .project-modal-close {
        top: 12px;
        right: 12px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-modal-content {
        padding: 1.5rem 1rem 1rem 1rem;
        max-width: 99vw;
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .project-modal-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .project-modal-img {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .project-modal-close {
        top: 8px;
        right: 8px;
        font-size: 1.3rem;
    }
}
.project-modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102,126,234,0.07), transparent);
    transition: left 0.8s;
    z-index: 1;
}
.project-modal.active .project-modal-content:hover::before {
    left: 100%;
}
.project-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
    z-index: 2;
    position: relative;
}
.project-modal-content p {
    color: #b8c5d1;
    font-size: 1.08rem;
    margin-bottom: 0;
    z-index: 2;
    position: relative;
}
.project-modal-img {
    font-size: 3.2rem;
    margin-bottom: 18px;
    z-index: 2;
    position: relative;
}
.project-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
}

/* === Force Owl Carousel horizontal layout for why-cards === */
.owl-carousel {
  display: block !important;
  width: 100%;
  overflow: visible;
}
.owl-carousel .owl-stage {
  display: flex !important;
  flex-direction: row !important;
}
.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.why-card {
  min-width: 260px;
  max-width: 320px;
  width: 100%;
  margin: 0 12px;
  box-sizing: border-box;
}

/* === Owl Carousel custom nav arrows for why-cards === */
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav button {
  background: linear-gradient(135deg, #23263a 60%, #667eea 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: 0 2px 12px #667eea33, 0 0 0 2px #23263a;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  outline: none;
  position: relative;
}
.owl-carousel .owl-nav button::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 16px 4px #667eea55;
  opacity: 0.25;
  pointer-events: none;
  transition: opacity 0.2s;
}
.owl-carousel .owl-nav button:hover {
  background: linear-gradient(135deg, #667eea 60%, #f093fb 100%);
  color: #fff;
  box-shadow: 0 4px 32px #f093fb99, 0 0 0 2px #667eea;
  transform: scale(1.12);
}
.owl-carousel .owl-nav button:hover::after {
  opacity: 0.5;
}
.owl-carousel .owl-nav .owl-nav-prev {
  margin-left: -24px;
}
.owl-carousel .owl-nav .owl-nav-next {
  margin-right: -24px;
}
.owl-carousel {
  position: relative;
  padding: 0 32px;
}
.owl-carousel .owl-nav button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  line-height: 1;
}

.why-cards-flex {
  display: flex;
  flex: 1 1 0;
  width: 100%;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}

.why-cards-flex .why-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
}

.why-cards-slider-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
  gap: 0;
}

.why-arrow {
  background: rgba(40,50,80,0.7);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  width: 48px;
  cursor: pointer;
  border-radius: 50%;
  align-self: center;
  transition: background 0.2s;
  z-index: 2;
  margin: 0 8px;
  box-shadow: 0 2px 12px #667eea33;
}
.why-arrow:hover {
  background: #667eea;
}
.why-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.why-cards-flex {
    overflow: hidden;
    flex: 1 1 0;
    display: flex
;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(.4,1.3,.5,1);
    align-items: center;
}

.why-cards-flex .why-card {
    flex: 0 0 calc((100% - 72px) / 4);
    max-width: calc((100% - 72px) / 4);
    min-width: 0;
    align-items: center;
    box-sizing: border-box;
    height: auto !important;
    transition: box-shadow 0.2s;
}

.why-cards-flex {
  gap: 8px !important;
}
.why-cards-flex .why-card {
  flex: 0 0 calc((100% - 24px) / 4) !important;
  max-width: calc((100% - 24px) / 4) !important;
  min-width: 0;
  margin: 0 !important;
  height: 220px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-category-btn {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(102,126,234,0.13);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 6px;
  transition: background 0.18s, border 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  box-shadow: 0 2px 8px 0 #667eea11;
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-category-btn .me-2 {
  font-size: 1.25em;
  color: #ffe066;
  filter: drop-shadow(0 0 6px #f093fb55);
}
.project-category-btn.active, .project-category-btn:focus {
  background: linear-gradient(90deg, #232a3d 60%, #667eea 100%);
  color: #ffe066;
  border-color: #667eea;
  box-shadow: 0 4px 18px 0 #667eea33;
  transform: scale(1.03);
}
.project-category-btn:hover {
  background: rgba(102,126,234,0.13);
  color: #ffe066;
  border-color: #667eea;
  box-shadow: 0 4px 18px 0 #667eea33;
}
.project-sub-list {
  padding-left: 0.5em;
  margin-bottom: 10px;
}
.project-item {
  background: linear-gradient(90deg, #232a3d 60%, #181d2b 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 16px 9px 32px;
  margin-bottom: 5px;
  font-size: 1.01rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  box-shadow: 0 1.5px 8px 0 #667eea11;
  position: relative;
}
.project-item .project-thumb {
  font-size: 1.15em;
  margin-right: 6px;
  color: #ffe066;
  filter: drop-shadow(0 0 6px #f093fb55);
}
.project-item:hover, .project-item:focus {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 4px 18px 0 #667eea33;
  transform: scale(1.04);
}
.project-item:active {
  transform: scale(0.98);
}

.project-modal-content .post-body {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 8px;
  text-align: left;
}
.project-modal-content .post-body::-webkit-scrollbar {
  width: 8px;
  background: #232a3d;
  border-radius: 8px;
}
.project-modal-content .post-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
}
.project-modal-content .post-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}
