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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-attachment: fixed;
    color: #FFFFFF;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    color: #FFFFFF;
}

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

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.7;
    color: #E5E5E5;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #CCCCCC;
}

.section-description {
    font-size: 1.125rem;
    color: #CCCCCC;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00D084 0%, #00FF9F 100%);
    color: #000000;
    box-shadow: 0 4px 14px 0 rgba(0, 208, 132, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00B574 0%, #00E690 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(0, 208, 132, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: #00D084;
    border: 2px solid #00D084;
}

.btn-secondary:hover {
    background: #00D084;
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #666666;
}

.btn-outline:hover {
    border-color: #00D084;
    color: #00D084;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-container {
    height: 70px;
}

.nav-container {
    max-width: none;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    position: relative;
}

@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-left: 0;
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.logo {
    height: 50px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(59, 130, 246, 0.2));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E5E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    position: absolute;
    top: 0;
    right: 2rem;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    height: 60px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        transform: none;
    }
}

.nav-link {
    color: #CCCCCC;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00D084 0%, #00FF9F 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bar {
    width: 26px;
    height: 3px;
    background: linear-gradient(135deg, #F1F5F9 0%, #CBD5E1 100%);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Rocket ship removed - keeping geometric shapes only */

/* Rocket ship parts removed */

/* Rocket exhaust and flames removed */

/* Cool Geometric Background Elements */
.geometric-animation {
    position: absolute;
    width: 350px;
    height: 350px;
    top: 20%;
    right: 15%;
    animation: megaRotate 20s linear infinite;
    filter: blur(0.3px);
}

.shape-layer {
    position: absolute;
    border: 2px solid rgba(0, 208, 132, 0.15);
    border-radius: 12px;
    transform-origin: center center;
}

.shape-layer-1 {
    width: 100%;
    height: 100%;
    animation: layerFloat1 8s ease-in-out infinite;
    border-color: rgba(0, 208, 132, 0.25);
    box-shadow: 0 0 30px rgba(0, 208, 132, 0.08);
}

.shape-layer-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    animation: layerFloat2 6s ease-in-out infinite reverse;
    border-color: rgba(0, 255, 159, 0.2);
    box-shadow: 0 0 25px rgba(0, 255, 159, 0.06);
}

.shape-layer-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    animation: layerFloat3 4s ease-in-out infinite;
    border-color: rgba(0, 208, 132, 0.3);
    box-shadow: 0 0 20px rgba(0, 208, 132, 0.1);
}

.shape-center {
    width: 25%;
    height: 25%;
    top: 37.5%;
    left: 37.5%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.6) 0%, rgba(0, 255, 159, 0.3) 50%, transparent 100%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(0, 208, 132, 0.3), 0 0 60px rgba(0, 255, 159, 0.15);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    animation: megaFloat 12s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 5%;
    animation-delay: 0s;
    opacity: 0.4;
}

.shape-2 {
    width: 90px;
    height: 90px;
    top: 15%;
    left: 75%;
    animation-delay: 4s;
    opacity: 0.3;
}

.shape-3 {
    width: 70px;
    height: 70px;
    top: 75%;
    right: 20%;
    animation-delay: 8s;
    opacity: 0.35;
}

/* Rocket particle trail removed */

/* Horizontal animation removed */

@keyframes megaRotate {
    0% { 
        transform: rotate(0deg) scale(1);
    }
    25% { 
        transform: rotate(90deg) scale(1.05);
    }
    50% { 
        transform: rotate(180deg) scale(0.95);
    }
    75% { 
        transform: rotate(270deg) scale(1.02);
    }
    100% { 
        transform: rotate(360deg) scale(1);
    }
}

@keyframes layerFloat1 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        border-color: rgba(0, 208, 132, 0.25);
    }
    50% { 
        transform: rotate(180deg) scale(1.08);
        border-color: rgba(0, 255, 159, 0.4);
    }
}

@keyframes layerFloat2 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        border-color: rgba(0, 255, 159, 0.2);
    }
    50% { 
        transform: rotate(-120deg) scale(0.92);
        border-color: rgba(0, 208, 132, 0.35);
    }
}

@keyframes layerFloat3 {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        border-color: rgba(0, 208, 132, 0.3);
    }
    50% { 
        transform: rotate(90deg) scale(1.12);
        border-color: rgba(0, 255, 159, 0.5);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 40px rgba(0, 208, 132, 0.3), 0 0 60px rgba(0, 255, 159, 0.15);
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.9;
        box-shadow: 0 0 60px rgba(0, 208, 132, 0.5), 0 0 90px rgba(0, 255, 159, 0.3);
    }
}

@keyframes megaFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-30px) translateX(15px) scale(1.03);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) translateX(-10px) scale(0.97);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-40px) translateX(8px) scale(1.01);
        opacity: 0.5;
    }
}

/* Rocket trail animations removed */

/* Particle Effects */
.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 208, 132, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

/* Enhanced glow effects removed for clean text readability */

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .geometric-animation {
        width: 280px;
        height: 280px;
        top: 15%;
        right: 8%;
    }
    
    .shape-1, .shape-2, .shape-3 {
        width: 80px;
        height: 80px;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .geometric-animation,
    .floating-shapes {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .geometric-animation,
    .floating-shapes,
    .particle {
        animation: none;
    }
    
    .geometric-animation *,
    .floating-shapes * {
        animation: none !important;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.badge-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    background: linear-gradient(135deg, #00D084 0%, #00FF9F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    animation: slideInUp 0.8s ease-out 0.5s both;
}

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

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

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-element {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.element-1 {
    width: 300px;
    height: 300px;
    animation: rotate 20s linear infinite;
}

.element-2 {
    width: 200px;
    height: 200px;
    animation: rotate 15s linear infinite reverse;
}

.element-3 {
    width: 100px;
    height: 100px;
    animation: rotate 10s linear infinite;
}

.graphic-pulse {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

/* Section Spacing */
section {
    padding: 6rem 0;
    position: relative;
}

.portfolio {
    padding: 2rem 0 4rem 0;
}

section h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #00D084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    text-align: center;
    font-size: 1.25rem;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Alternating section backgrounds */
.consulting {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 70%),
        linear-gradient(180deg, #000000 0%, #2a2a2a 50%, #000000 100%);
}

.venture-capital {
    background: 
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%),
        linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
}

.team {
    background: 
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 60%),
        linear-gradient(45deg, #000000 0%, #2a2a2a 50%, #000000 100%);
}

.portfolio {
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%),
        linear-gradient(225deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
}

.trust-builders {
    background: 
        radial-gradient(ellipse at top, rgba(255, 255, 255, 0.02) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #2a2a2a 50%, #000000 100%);
}

.contact {
    background: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%),
        linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact .section-title,
.contact .section-description {
    color: white;
}

.contact .contact-info {
    color: rgba(255, 255, 255, 0.9);
}

/* Consulting Services */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
}

.service-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0.5rem;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 25%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.01) 75%,
        rgba(255, 255, 255, 0.02) 100%
    );
    background-size: 200% 200%;
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
    animation: gradientShift 6s ease-in-out infinite;
}

.service-card:hover::before {
    opacity: 1;
    animation-duration: 3s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #00D084 0%, #00B574 100%);
    color: #000000;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(0, 208, 132, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F2937;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.2),
        0 3px 8px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 208, 132, 0.4);
}

.service-card:hover .feature-tag {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 208, 132, 0.4);
}

.service-title {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-description {
    color: #E5E5E5;
    line-height: 1.3;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Venture Capital */
.venture-capital {
    background: transparent;
}

.vc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .vc-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.vc-text h2 {
    margin-bottom: 1.5rem;
}

.vc-focus {
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.vc-focus:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.vc-focus h3 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
}

.focus-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.focus-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: #E5E5E5;
    font-size: 1.05rem;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.focus-list li:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.focus-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D084;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(0, 208, 132, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 208, 132, 0.3);
}

.vc-cta {
    margin-top: 2rem;
}

.vc-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-self: start;
}

.stat-card {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #00D084 0%, #00B574 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-card > * {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00D084;
    line-height: 1;
}

.stat-label {
    color: #E5E5E5;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Team Section */

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

.team-member {
    text-align: center;
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.member-name {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.member-role {
    color: #00D084;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #E5E5E5;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #00D084;
}

/* Portfolio */
.portfolio {
    background: transparent;
}

.case-studies {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.case-study {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.case-study:hover::before {
    left: 100%;
}

.case-study:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.case-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
}

.case-title {
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    font-size: 1.25rem;
}

.case-description {
    color: #E5E5E5;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.case-metrics {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.metric {
    background: rgba(20, 20, 20, 0.8);
    color: #00D084;
    border: 1px solid rgba(0, 208, 132, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Trust Builders */
.trust-builders {
    padding: 3rem 0;
}

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

.testimonial {
    background: rgba(40, 40, 40, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #FFFFFF;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #FFFFFF;
}

.author-role {
    color: #CCCCCC;
    font-size: 0.9rem;
}

.press-mentions {
    text-align: center;
}

.press-title {
    margin-bottom: 2rem;
    color: #E5E5E5;
    font-weight: 500;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.press-logo {
    height: 40px;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(1.5) contrast(0.8);
    transition: all 0.2s ease;
}

.press-logo:hover {
    opacity: 1;
    filter: brightness(1.8) contrast(1);
}

/* Contact Section */
.contact {
    background: transparent;
}

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

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00D084 0%, #00B574 100%);
    color: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.9rem;
    color: #CCCCCC;
}

.method-value {
    font-weight: 500;
    color: #FFFFFF;
}

/* Form Styles */
.form {
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.form:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #FFFFFF;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: rgba(20, 20, 20, 0.8);
    color: #FFFFFF;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.form-input,
.form-select,
.form-textarea {
    transition: all 0.3s ease;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: 
        linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #E5E5E5;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: #FFFFFF;
}

.footer-description {
    color: #CCCCCC;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    color: #FFFFFF;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #00D084;
}

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

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

.legal-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #00D084;
}

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

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: #2D3748;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0AEC0;
    transition: all 0.2s ease;
}

.footer-social .social-link:hover {
    background: #00D084;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .vc-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        height: 80px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        transform: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        min-width: 120px;
    }

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

    .nav-item {
        margin: 0;
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .case-study {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .press-logos {
        gap: 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    

    
    .vc-stats {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        justify-content: center;
    }
}

/* Animations and Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.team-member:nth-child(1) { transition-delay: 0.1s; }
.team-member:nth-child(2) { transition-delay: 0.2s; }
.team-member:nth-child(3) { transition-delay: 0.3s; }

/* Loading animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.8) 25%, rgba(59, 130, 246, 0.1) 50%, rgba(30, 41, 59, 0.8) 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Particle effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #666666 0%, #444444 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #888888 0%, #666666 100%);
}

