/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add CSS variables for color theming */
:root {
    --bg-color: #0a0a0a;
    --text-color: #e2e8f0;
    --heading-color: #fff;
    --primary-color: #a99cf7;
    --secondary-color: #ff77c6;
    --navbar-bg: rgba(10,10,10,0.95);
    --card-bg: #181a1b;
    --border-color: #23272f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    will-change: background, backdrop-filter;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-logo h2 {
    color: var(--heading-color);
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.2s ease;
    will-change: transform;
}

.nav-logo h2:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    will-change: color, transform;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    transition: width 0.2s ease;
    transform: translateX(-50%);
    will-change: width;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
    will-change: transform;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    margin-top: 0.5rem;
    will-change: opacity, transform;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
    will-change: background, color;
}

.dropdown-item:hover {
    background: rgba(120, 119, 198, 0.1);
    color: var(--primary-color);
}

.dropdown-item.active {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
    will-change: transform;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.dropdown-item span {
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    will-change: transform, box-shadow;
}

.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.2s ease;
    will-change: transform, opacity;
}

/* Enhanced navbar shimmer effect on scroll */
.navbar.scrolled {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled::before {
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
}

.navbar.scrolled::after {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(96, 165, 250, 0.08) 25%, 
        rgba(96, 165, 250, 0.15) 50%, 
        rgba(96, 165, 250, 0.08) 75%, 
        transparent 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
    will-change: transform;
}

.hero-badge:hover {
    transform: translateY(-2px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: left;
    line-height: 1.1;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #5a4fcf;
    color: #fff;
    box-shadow: 0 4px 12px rgba(90, 79, 207, 0.18);
}

.btn-primary:hover {
    background: #6d5fd3;
    box-shadow: 0 8px 20px rgba(90, 79, 207, 0.22);
}

.btn-secondary {
    background: #b84e8c;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(184, 78, 140, 0.15);
}

.btn-secondary:hover {
    background: #c96fa7;
    box-shadow: 0 8px 20px rgba(184, 78, 140, 0.18);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    transition: transform 0.2s ease;
    will-change: transform;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.card-4 {
    top: 30%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(1deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
    will-change: transform;
}

.section-badge:hover {
    transform: translateY(-2px);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
    margin-top: 40px;
    scroll-margin-top: 120px;
    background: rgba(10, 10, 10, 0.6); /* 60% opacity dark black background */
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, background;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
    transition: transform 0.2s ease;
    will-change: transform;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    transition: transform 0.2s ease;
    will-change: transform;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.2s ease;
    will-change: gap;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    transition: width 0.2s ease;
    will-change: width;
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    gap: 12px;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.5);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Technologies Section */
.technologies {
    padding: 120px 0;
    background: rgba(10, 10, 10, 0.6); /* 60% opacity dark black background */
    position: relative;
}

.technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.tech-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    will-change: transform, box-shadow, background;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(120, 119, 198, 0.4);
}

/* Enhanced tech item text styling */
.tech-item {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(120, 119, 198, 0.1) 100%);
    border: 1px solid rgba(120, 119, 198, 0.2);
    position: relative;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tech-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(120, 119, 198, 0.1) 0%, 
        rgba(255, 119, 198, 0.1) 50%, 
        rgba(120, 119, 198, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    pointer-events: none;
}

.tech-item:hover::after {
    opacity: 1;
}

.tech-item:hover {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(120, 119, 198, 0.5),
        0 0 20px rgba(120, 119, 198, 0.3),
        0 0 30px rgba(120, 119, 198, 0.1);
    background: linear-gradient(135deg, 
        rgba(120, 119, 198, 0.15) 0%, 
        rgba(255, 119, 198, 0.15) 50%, 
        rgba(120, 119, 198, 0.15) 100%);
    border-color: rgba(120, 119, 198, 0.5);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(120, 119, 198, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-shadow: 
        0 0 15px rgba(120, 119, 198, 0.8),
        0 0 25px rgba(120, 119, 198, 0.5),
        0 0 35px rgba(120, 119, 198, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
    box-shadow: 0 4px 24px 0 rgba(120, 119, 198, 0.10), 0 1.5px 6px 0 rgba(120, 119, 198, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5em 1.5em;
    outline: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 119, 198, 0.13), 0 4px 24px 0 rgba(120, 119, 198, 0.13);
    transform: scale(1.015);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.19);
}

.form-group select option {
    color: #1f2937;
    background: #f8fafc;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.25s, color 0.25s;
}

.form-group select option:checked,
.form-group select option:focus {
    background: #e0e7ff;
    color: #2563eb;
}

/* Custom scrollbar for dropdowns (Webkit browsers) */
.form-group select::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
    border-radius: 8px;
}
.form-group select::-webkit-scrollbar-thumb {
    background: #7877c6;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label::after {
    content: '';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="message"]::after {
    content: ' *';
    color: #ef4444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #ff77c6 0%, #7877c6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, #7877c6 0%, transparent 100%);
}

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.milestone-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features {
    list-style: none;
}

.value-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-content {
    margin-top: 3rem;
}

.expertise-services,
.expertise-tech,
.expertise-industries {
    margin-bottom: 4rem;
}

.expertise-services h3,
.expertise-tech h3,
.expertise-industries h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 40px;
    scroll-margin-top: 120px;
}

.service-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(95%);
    animation: fade-in 0.5s ease-in-out forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
        transform: scale(100%);
    }
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
    box-shadow: 0 4px 24px 0 rgba(120, 119, 198, 0.10), 0 1.5px 6px 0 rgba(120, 119, 198, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5em 1.5em;
    outline: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 119, 198, 0.13), 0 4px 24px 0 rgba(120, 119, 198, 0.13);
    transform: scale(1.015);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.19);
}

.form-group select option {
    color: #1f2937;
    background: #f8fafc;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.25s, color 0.25s;
}

.form-group select option:checked,
.form-group select option:focus {
    background: #e0e7ff;
    color: #2563eb;
}

/* Custom scrollbar for dropdowns (Webkit browsers) */
.form-group select::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
    border-radius: 8px;
}
.form-group select::-webkit-scrollbar-thumb {
    background: #7877c6;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label::after {
    content: '';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="message"]::after {
    content: ' *';
    color: #ef4444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #5a4fcf;
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(90, 79, 207, 0.18);
}

.contact-form .btn-primary:hover {
    background: #6d5fd3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(90, 79, 207, 0.22);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, #7877c6 0%, transparent 100%);
}

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.milestone-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features {
    list-style: none;
}

.value-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-content {
    margin-top: 3rem;
}

.expertise-services,
.expertise-tech,
.expertise-industries {
    margin-bottom: 4rem;
}

.expertise-services h3,
.expertise-tech h3,
.expertise-industries h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 40px;
    scroll-margin-top: 120px;
}

.service-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(95%);
    animation: fade-in 0.5s ease-in-out forwards;
}

@keyframes fade-in {
    to {
        opacity: 1;
        transform: scale(100%);
    }
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Add CSS variables for color theming */
:root {
    --bg-color: #0a0a0a;
    --text-color: #e2e8f0;
    --heading-color: #fff;
    --primary-color: #a99cf7;
    --secondary-color: #ff77c6;
    --navbar-bg: rgba(10,10,10,0.95);
    --card-bg: #181a1b;
    --border-color: #23272f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    will-change: background, backdrop-filter;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-logo h2 {
    color: var(--heading-color);
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.2s ease;
    will-change: transform;
}

.nav-logo h2:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    will-change: color, transform;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    transition: width 0.2s ease;
    transform: translateX(-50%);
    will-change: width;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
    will-change: transform;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    margin-top: 0.5rem;
    will-change: opacity, transform;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    position: relative;
    will-change: background, color;
}

.dropdown-item:hover {
    background: rgba(120, 119, 198, 0.1);
    color: var(--primary-color);
}

.dropdown-item.active {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
}

.dropdown-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
    will-change: transform;
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.dropdown-item span {
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    will-change: transform, box-shadow;
}

.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.2s ease;
    will-change: transform, opacity;
}

/* Enhanced navbar shimmer effect on scroll */
.navbar.scrolled {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled::before {
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.2), transparent);
}

.navbar.scrolled::after {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(96, 165, 250, 0.08) 25%, 
        rgba(96, 165, 250, 0.15) 50%, 
        rgba(96, 165, 250, 0.08) 75%, 
        transparent 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
    will-change: transform;
}

.hero-badge:hover {
    transform: translateY(-2px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: left;
    line-height: 1.1;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(120, 119, 198, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    transition: transform 0.2s ease;
    will-change: transform;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.card-4 {
    top: 30%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(1deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(120, 119, 198, 0.1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
    will-change: transform;
}

.section-badge:hover {
    transform: translateY(-2px);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
    margin-top: 40px;
    scroll-margin-top: 120px;
    background: rgba(10, 10, 10, 0.6); /* 60% opacity dark black background */
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, background;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
    transition: transform 0.2s ease;
    will-change: transform;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    transition: transform 0.2s ease;
    will-change: transform;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.2s ease;
    will-change: gap;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7877c6, #ff77c6);
    transition: width 0.2s ease;
    will-change: width;
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    gap: 12px;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(120, 119, 198, 0.5);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step p {
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Technologies Section */
.technologies {
    padding: 120px 0;
    background: rgba(10, 10, 10, 0.6); /* 60% opacity dark black background */
    position: relative;
}

.technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.tech-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    will-change: transform, box-shadow, background;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(120, 119, 198, 0.4);
}

/* Enhanced tech item text styling */
.tech-item {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(120, 119, 198, 0.1) 100%);
    border: 1px solid rgba(120, 119, 198, 0.2);
    position: relative;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tech-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(120, 119, 198, 0.1) 0%, 
        rgba(255, 119, 198, 0.1) 50%, 
        rgba(120, 119, 198, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    pointer-events: none;
}

.tech-item:hover::after {
    opacity: 1;
}

.tech-item:hover {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(120, 119, 198, 0.5),
        0 0 20px rgba(120, 119, 198, 0.3),
        0 0 30px rgba(120, 119, 198, 0.1);
    background: linear-gradient(135deg, 
        rgba(120, 119, 198, 0.15) 0%, 
        rgba(255, 119, 198, 0.15) 50%, 
        rgba(120, 119, 198, 0.15) 100%);
    border-color: rgba(120, 119, 198, 0.5);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(120, 119, 198, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-shadow: 
        0 0 15px rgba(120, 119, 198, 0.8),
        0 0 25px rgba(120, 119, 198, 0.5),
        0 0 35px rgba(120, 119, 198, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
    box-shadow: 0 4px 24px 0 rgba(120, 119, 198, 0.10), 0 1.5px 6px 0 rgba(120, 119, 198, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5em 1.5em;
    outline: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 119, 198, 0.13), 0 4px 24px 0 rgba(120, 119, 198, 0.13);
    transform: scale(1.015);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.19);
}

.form-group select option {
    color: #1f2937;
    background: #f8fafc;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.25s, color 0.25s;
}

.form-group select option:checked,
.form-group select option:focus {
    background: #e0e7ff;
    color: #2563eb;
}

/* Custom scrollbar for dropdowns (Webkit browsers) */
.form-group select::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
    border-radius: 8px;
}
.form-group select::-webkit-scrollbar-thumb {
    background: #7877c6;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label::after {
    content: '';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="message"]::after {
    content: ' *';
    color: #ef4444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #ff77c6 0%, #7877c6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, #7877c6 0%, transparent 100%);
}

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.milestone-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features {
    list-style: none;
}

.value-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-content {
    margin-top: 3rem;
}

.expertise-services,
.expertise-tech,
.expertise-industries {
    margin-bottom: 4rem;
}

.expertise-services h3,
.expertise-tech h3,
.expertise-industries h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
    box-shadow: 0 4px 24px 0 rgba(120, 119, 198, 0.10), 0 1.5px 6px 0 rgba(120, 119, 198, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5em 1.5em;
    outline: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 119, 198, 0.13), 0 4px 24px 0 rgba(120, 119, 198, 0.13);
    transform: scale(1.015);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.19);
}

.form-group select option {
    color: #1f2937;
    background: #f8fafc;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.25s, color 0.25s;
}

.form-group select option:checked,
.form-group select option:focus {
    background: #e0e7ff;
    color: #2563eb;
}

/* Custom scrollbar for dropdowns (Webkit browsers) */
.form-group select::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
    border-radius: 8px;
}
.form-group select::-webkit-scrollbar-thumb {
    background: #7877c6;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label::after {
    content: '';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="message"]::after {
    content: ' *';
    color: #ef4444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #ff77c6 0%, #7877c6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, #7877c6 0%, transparent 100%);
}

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.milestone-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features {
    list-style: none;
}

.value-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-content {
    margin-top: 3rem;
}

.expertise-services,
.expertise-tech,
.expertise-industries {
    margin-bottom: 4rem;
}

.expertise-services h3,
.expertise-tech h3,
.expertise-industries h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
    box-shadow: 0 4px 24px 0 rgba(120, 119, 198, 0.10), 0 1.5px 6px 0 rgba(120, 119, 198, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5em 1.5em;
    outline: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 119, 198, 0.13), 0 4px 24px 0 rgba(120, 119, 198, 0.13);
    transform: scale(1.015);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.19);
}

.form-group select option {
    color: #1f2937;
    background: #f8fafc;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.25s, color 0.25s;
}

.form-group select option:checked,
.form-group select option:focus {
    background: #e0e7ff;
    color: #2563eb;
}

/* Custom scrollbar for dropdowns (Webkit browsers) */
.form-group select::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
    border-radius: 8px;
}
.form-group select::-webkit-scrollbar-thumb {
    background: #7877c6;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label::after {
    content: '';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="message"]::after {
    content: ' *';
    color: #ef4444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #ff77c6 0%, #7877c6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, #7877c6 0%, transparent 100%);
}

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.milestone-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features {
    list-style: none;
}

.value-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-content {
    margin-top: 3rem;
}

.expertise-services,
.expertise-tech,
.expertise-industries {
    margin-bottom: 4rem;
}

.expertise-services h3,
.expertise-tech h3,
.expertise-industries h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
    box-shadow: 0 4px 24px 0 rgba(120, 119, 198, 0.10), 0 1.5px 6px 0 rgba(120, 119, 198, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5em 1.5em;
    outline: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 119, 198, 0.13), 0 4px 24px 0 rgba(120, 119, 198, 0.13);
    transform: scale(1.015);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.19);
}

.form-group select option {
    color: #1f2937;
    background: #f8fafc;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.25s, color 0.25s;
}

.form-group select option:checked,
.form-group select option:focus {
    background: #e0e7ff;
    color: #2563eb;
}

/* Custom scrollbar for dropdowns (Webkit browsers) */
.form-group select::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
    border-radius: 8px;
}
.form-group select::-webkit-scrollbar-thumb {
    background: #7877c6;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label::after {
    content: '';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="message"]::after {
    content: ' *';
    color: #ef4444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #ff77c6 0%, #7877c6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, #7877c6 0%, transparent 100%);
}

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.milestone-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features {
    list-style: none;
}

.value-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-content {
    margin-top: 3rem;
}

.expertise-services,
.expertise-tech,
.expertise-industries {
    margin-bottom: 4rem;
}

.expertise-services h3,
.expertise-tech h3,
.expertise-industries h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
    box-shadow: 0 4px 24px 0 rgba(120, 119, 198, 0.10), 0 1.5px 6px 0 rgba(120, 119, 198, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5em 1.5em;
    outline: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 119, 198, 0.13), 0 4px 24px 0 rgba(120, 119, 198, 0.13);
    transform: scale(1.015);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.19);
}

.form-group select option {
    color: #1f2937;
    background: #f8fafc;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.25s, color 0.25s;
}

.form-group select option:checked,
.form-group select option:focus {
    background: #e0e7ff;
    color: #2563eb;
}

/* Custom scrollbar for dropdowns (Webkit browsers) */
.form-group select::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
    border-radius: 8px;
}
.form-group select::-webkit-scrollbar-thumb {
    background: #7877c6;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label::after {
    content: '';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="message"]::after {
    content: ' *';
    color: #ef4444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #ff77c6 0%, #7877c6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, #7877c6 0%, transparent 100%);
}

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.milestone-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features {
    list-style: none;
}

.value-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-content {
    margin-top: 3rem;
}

.expertise-services,
.expertise-tech,
.expertise-industries {
    margin-bottom: 4rem;
}

.expertise-services h3,
.expertise-tech h3,
.expertise-industries h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), background 0.35s;
    box-shadow: 0 4px 24px 0 rgba(120, 119, 198, 0.10), 0 1.5px 6px 0 rgba(120, 119, 198, 0.08);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23e2e8f0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5em 1.5em;
    outline: none;
}

.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 4px rgba(255, 119, 198, 0.13), 0 4px 24px 0 rgba(120, 119, 198, 0.13);
    transform: scale(1.015);
}

.form-group select:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.19);
}

.form-group select option {
    color: #1f2937;
    background: #f8fafc;
    font-size: 1.05rem;
    padding: 0.7rem 1.2rem;
    transition: background 0.25s, color 0.25s;
}

.form-group select option:checked,
.form-group select option:focus {
    background: #e0e7ff;
    color: #2563eb;
}

/* Custom scrollbar for dropdowns (Webkit browsers) */
.form-group select::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
    border-radius: 8px;
}
.form-group select::-webkit-scrollbar-thumb {
    background: #7877c6;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .form-group select {
        font-size: 1rem;
        padding: 0.9rem 2.5rem 0.9rem 1rem;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label::after {
    content: '';
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="message"]::after {
    content: ' *';
    color: #ef4444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #ff77c6 0%, #7877c6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(120, 119, 198, 0.4);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.15) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Sections */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section:nth-child(even) {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.about-section:nth-child(odd) {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 40px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(180deg, #7877c6 0%, transparent 100%);
}

.milestone:last-child::before {
    display: none;
}

.milestone-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
    flex-shrink: 0;
}

.milestone-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.milestone-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-features {
    list-style: none;
}

.value-features li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Expertise Section */
.expertise-content {
    margin-top: 3rem;
}

.expertise-services,
.expertise-tech,
.expertise-industries {
    margin-bottom: 4rem;
}

.expertise-services h3,
.expertise-tech h3,
.expertise-industries h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tags span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(120, 119, 198, 0.3);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-bio {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.member-credentials span {
    background: rgba(120, 119, 198, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(120, 119, 198, 0.3);
}

.team-culture {
    margin-top: 4rem;
}

.team-culture h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.culture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    text-align: center;
    padding: 2rem;
}

.culture-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.culture-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.culture-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.certifications {
    margin-top: 4rem;
}

.certifications h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-item span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.success-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.success-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.success-description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.success-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.awards {
    margin-top: 4rem;
}

.awards h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-5px);
}

.award-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.award-item span {
    color: var(--text-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.award-item small {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-content {
    margin-top: 3rem;
}

.innovation-labs {
    margin-bottom: 4rem;
}

.innovation-labs h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.lab-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.lab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.4);
}

.lab-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.lab-item p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lab-projects {
    list-style: none;
}

.lab-projects li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.lab-projects li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.open-source,
.patents {
    margin-bottom: 4rem;
}

.open-source h3,
.patents h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.open-source p,
.patents p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.oss-projects,
.patents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oss-item,
.patent-item {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.oss-item:hover,
.patent-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
    transform: translateY(-3px);
}

.oss-item i,
.patent-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.oss-item h4,
.patent-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oss-item p,
.patent-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Social Impact Section */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(120, 119, 198, 0.4);
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.impact-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.impact-stats .stat {
    text-align: center;
}

.impact-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-stats .stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.diversity {
    margin-top: 4rem;
}

.diversity h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.diversity-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.diversity-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.diversity-stat .stat-label {
    color: var(--text-color);
    font-weight: 500;
}

.diversity-initiatives h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.diversity-initiatives ul {
    list-style: none;
}

.diversity-initiatives li {
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.diversity-initiatives li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    text-align: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 280px;
    margin-bottom: 0;
}

.contact-form {
    flex: 1 1 400px;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
    max-width: 520px;
}

.contact-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(120, 119, 198, 0.3);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7877c6 0%, #ff77c6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(120, 119, 198, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(120, 119, 198, 0.4);
}

.contact-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7877c6 0%, #ff77c6 100%);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.05), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.contact-form:hover::after {
    left: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: var(--card-bg);
    border: 2px solid rgba(120, 119, 198, 0.18);
    color: var(--text-color);
    font-size: 1.08rem;
    font-family: inherit;
    border-radius: 14px;
    padding: 1.1rem 3rem 1.1rem 1.5rem;
    transition: border-color 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow
}