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

:root {
    /* Color Palette */
    --primary-color: #00f5ff;
    --secondary-color: #ff006e;
    --accent-color: #8338ec;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-tech: linear-gradient(135deg, #00f5ff 0%, #8338ec 50%, #ff006e 100%);
    
    /* Dark Tech Theme */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #151515;
    --bg-card: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #555555;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.4);
    --glow-primary: 0 0 30px rgba(0, 245, 255, 0.3);
    --glow-secondary: 0 0 30px rgba(255, 0, 110, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Add subtle tech pattern to body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 245, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 110, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(131, 56, 236, 0.025) 0%, transparent 50%),
        linear-gradient(0deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    animation: bodyTechPulse 15s ease-in-out infinite;
}

@keyframes bodyTechPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Technology Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 245, 255, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(131, 56, 236, 0.02) 50%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(131, 56, 236, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #000000 50%, #0a0a0a 75%, #000000 100%);
    background-size: 100px 100px, 100px 100px, 800px 800px, 600px 600px, 400px 400px, 100% 100%;
    animation: techBackground 20s ease-in-out infinite;
}

/* Add tech grid overlay */
#particles-js::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(131, 56, 236, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 56, 236, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    opacity: 0.3;
    animation: gridPulse 8s ease-in-out infinite alternate;
}

/* Add circuit pattern overlay */
#particles-js::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 245, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 110, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(131, 56, 236, 0.08) 1.5px, transparent 1.5px);
    background-size: 150px 150px, 100px 100px, 200px 200px;
    opacity: 0.4;
    animation: circuitPulse 12s ease-in-out infinite;
}

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

@keyframes gridPulse {
    0% { 
        opacity: 0.2;
        transform: scale(1);
    }
    100% { 
        opacity: 0.5;
        transform: scale(1.02);
    }
}

@keyframes circuitPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(0, 0);
    }
    33% { 
        opacity: 0.6;
        transform: translate(10px, -10px);
    }
    66% { 
        opacity: 0.4;
        transform: translate(-10px, 10px);
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.15);
    z-index: 1000;
    transition: all var(--transition-medium);
    /* Enhanced tech shadow design */
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.8),
        0 8px 60px rgba(0, 245, 255, 0.08),
        0 12px 100px rgba(131, 56, 236, 0.06),
        inset 0 -1px 0 rgba(0, 245, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.99);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    /* Enhanced scrolled shadow */
    box-shadow: 
        0 6px 40px rgba(0, 0, 0, 0.9),
        0 12px 80px rgba(0, 245, 255, 0.12),
        0 18px 140px rgba(131, 56, 236, 0.08),
        0 25px 200px rgba(255, 0, 110, 0.05),
        inset 0 -1px 0 rgba(0, 245, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Add subtle glow line at bottom of navbar */
.nav-container::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 245, 255, 0.3) 20%, 
        rgba(131, 56, 236, 0.5) 50%, 
        rgba(255, 0, 110, 0.3) 80%, 
        transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateX(-50%) scaleX(0.8);
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(-50%) scaleX(1.1);
    }
}

.nav-logo .logo-3d {
    position: relative;
    perspective: 1000px;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-tech);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    transform: rotateY(0deg);
    transition: all var(--transition-medium);
    display: inline-block;
}

.logo-3d:hover .logo-text {
    transform: rotateY(15deg) scale(1.05);
    text-shadow: 0 0 40px rgba(0, 245, 255, 0.8);
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-tech);
    border-radius: 10px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: -1;
}

.logo-3d:hover .logo-glow {
    opacity: 0.3;
}

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

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link i {
    font-size: 1.1rem;
    transition: all var(--transition-medium);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(0, 245, 255, 0.12);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 245, 255, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 245, 255, 0.18);
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow: 
        0 6px 20px rgba(0, 245, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-tech);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.nav-link:hover .nav-line,
.nav-link.active .nav-line {
    width: 80%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.8rem;
    border-radius: 10px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all var(--transition-medium);
}

.nav-toggle:hover {
    background: rgba(0, 245, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.2);
}

.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(131, 56, 236, 0.8));
    transition: all var(--transition-medium);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0, 245, 255, 0.3);
}

/* Members Area Dropdown Styles */
.members-area {
    position: relative;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.1);
}

.dropdown-toggle:hover {
    background: rgba(0, 245, 255, 0.15);
    border-color: rgba(0, 245, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 255, 0.2);
}

.dropdown-arrow {
    transition: transform var(--transition-medium);
    font-size: 0.8rem;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 245, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-medium);
    border-radius: 8px;
    margin: 0.25rem;
}

.dropdown-item:hover {
    background: rgba(0, 245, 255, 0.12);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 1rem;
    width: 18px;
    transition: all var(--transition-medium);
}

.dropdown-item:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all var(--transition-slow);
}

/* Realistic Tech Background Layers */
.bg-ai {
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 245, 255, 0.1) 40%, transparent 50%),
        radial-gradient(circle at 30% 40%, rgba(131, 56, 236, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #000814 0%, #001d3d 50%, #000814 100%);
    clip-path: polygon(0 0, 60% 0, 40% 100%, 0% 100%);
    animation: techFloat 25s ease-in-out infinite;
}

.bg-cloud {
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0, 245, 255, 0.05) 10px, rgba(0, 245, 255, 0.05) 20px),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 110, 0.15) 0%, transparent 60%),
        linear-gradient(225deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 60% 100%);
    animation: techFloat 30s ease-in-out infinite reverse;
}

.bg-renewable {
    background: 
        linear-gradient(0deg, transparent 0%, rgba(131, 56, 236, 0.08) 50%, transparent 100%),
        radial-gradient(ellipse at 50% 20%, rgba(0, 245, 255, 0.12) 0%, transparent 70%),
        conic-gradient(from 45deg at 50% 50%, #000000 0deg, #0f0f0f 90deg, #1a1a1a 180deg, #0f0f0f 270deg, #000000 360deg);
    clip-path: polygon(0 40%, 40% 0, 80% 100%, 0% 100%);
    animation: techFloat 35s ease-in-out infinite;
}

.bg-tech {
    background: 
        linear-gradient(60deg, rgba(255, 0, 110, 0.08) 0%, transparent 30%, rgba(131, 56, 236, 0.06) 70%, transparent 100%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        linear-gradient(315deg, #000000 0%, #16213e 30%, #0f0f0f 60%, #000000 100%);
    clip-path: polygon(60% 0, 100% 30%, 100% 100%, 20% 100%);
    animation: techFloat 28s ease-in-out infinite reverse;
}

@keyframes techFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.12;
    }
    25% { 
        transform: translateY(-15px) translateX(10px) rotate(0.5deg);
        opacity: 0.18;
    }
    50% { 
        transform: translateY(-8px) translateX(-5px) rotate(-0.3deg);
        opacity: 0.15;
    }
    75% { 
        transform: translateY(-20px) translateX(8px) rotate(0.2deg);
        opacity: 0.20;
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    perspective: 1000px;
}

.title-line {
    display: block;
    transform: translateY(100px);
    opacity: 0;
    animation: slideInUp 1s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { 
    animation-delay: 0.4s; 
}

/* Specific styles for two-line hero title */
.hero-title-two-lines {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    line-height: 1.2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.2rem !important;
}

.hero-title-two-lines .title-line {
    display: block !important;
    white-space: nowrap !important;
}

.hero-title-two-lines .title-line:nth-child(1) { 
    animation-delay: 0.2s;
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
}

.hero-title-two-lines .title-line:nth-child(2) { 
    animation-delay: 0.4s;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem) !important;
}

.gradient-text {
    background: var(--gradient-tech);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

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

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-tech);
    color: white;
    box-shadow: var(--glow-primary);
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

/* 3D Cube Positioning with proper spacing */
.hero-3d-object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}

/* Cloud/Tech Cube - Left */
.hero-3d-object:first-child {
    left: 20%;
    transform: translate(-50%, -50%);
}

/* AI Cube - Center-Left */
.ai-cube {
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Business Cube - Right */
.business-cube {
    left: 80%;
    transform: translate(-50%, -50%);
}

.cube {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotateCube 20s linear infinite;
}

.ai-cube .cube {
    animation: rotateCubeReverse 25s linear infinite;
}

.business-cube .cube {
    animation: rotateCubeSlowSpin 30s linear infinite;
}

@keyframes rotateCubeReverse {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(-360deg) rotateY(-360deg); }
}

@keyframes rotateCubeSlowSpin {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(180deg) rotateY(360deg); }
}

.face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 245, 255, 0.1);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-face {
    background: rgba(255, 0, 110, 0.1);
    border: 2px solid var(--secondary-color);
}

.business-face {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(103, 58, 183, 0.15));
    border: 2px solid #9C27B0;
    box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
}

.face-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.face-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: all var(--transition-medium);
    background: transparent;
    display: block;
    max-width: 100%;
    max-height: 60px;
}

/* Handle different media types */
.face-image[src$=".svg"] {
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.face-image[src$=".png"], 
.face-image[src$=".jpg"], 
.face-image[src$=".jpeg"] {
    object-fit: cover;
    border-radius: 8px;
}

.face-image[src$=".mp4"] {
    object-fit: cover;
    border-radius: 8px;
}

/* Video element styling for MP4 files */
video.face-image {
    object-fit: cover;
    border-radius: 8px;
    background: #000;
}

.face-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.ai-face .face-title {
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.business-face .face-title {
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
}

.face:hover .face-image {
    opacity: 1;
    transform: scale(1.1);
}

.face:hover .face-title {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8);
    transform: scale(1.05);
}

.ai-face:hover .face-title {
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.8);
}

.business-face:hover .face-title {
    color: #9C27B0;
    text-shadow: 0 0 15px rgba(156, 39, 176, 0.8);
}

.face.front  { transform: rotateY(0deg) translateZ(100px); }
.face.back   { transform: rotateY(180deg) translateZ(100px); }
.face.right  { transform: rotateY(90deg) translateZ(100px); }
.face.left   { transform: rotateY(-90deg) translateZ(100px); }
.face.top    { transform: rotateX(90deg) translateZ(100px); }
.face.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    animation: pulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow i {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-tech);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s ease-in-out infinite;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto var(--spacing-md);
}

.loading-progress {
    height: 100%;
    background: var(--gradient-tech);
    border-radius: 2px;
    animation: loadingProgress 3s ease forwards;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Services Section */
.services {
    min-height: 100vh;
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(13, 13, 13, 0.98) 25%,
        rgba(0, 15, 25, 0.95) 50%,
        rgba(13, 13, 13, 0.98) 75%,
        rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
}

.services-title .title-line {
    display: inline;
}

.services-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Scroll Animation Styles */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-animation.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced stagger delays for service cards */
.stagger-animation[data-delay="0"] {
    transition-delay: 0ms;
}

.stagger-animation[data-delay="100"] {
    transition-delay: 100ms;
}

.stagger-animation[data-delay="200"] {
    transition-delay: 200ms;
}

.stagger-animation[data-delay="300"] {
    transition-delay: 300ms;
}

.stagger-animation[data-delay="400"] {
    transition-delay: 400ms;
}

.stagger-animation[data-delay="500"] {
    transition-delay: 500ms;
}

.stagger-animation[data-delay="600"] {
    transition-delay: 600ms;
}

.stagger-animation[data-delay="700"] {
    transition-delay: 700ms;
}

/* Services Section Animation */
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.service-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    backdrop-filter: blur(20px);
    cursor: pointer;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 245, 255, 0.05) 0%, 
        rgba(131, 56, 236, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 245, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.card-icon i {
    font-size: 2.5rem;
    transition: all var(--transition-medium);
    z-index: 2;
    position: relative;
}

.service-icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    opacity: 0.8;
    transition: all var(--transition-medium);
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
}

.service-card:hover .service-icon-img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.6));
}

.service-card:hover .card-icon i {
    opacity: 0.3;
    transform: scale(0.8);
}

.card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.card-tech-stack {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tech-tag {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tech-tag:hover {
    background: rgba(0, 245, 255, 0.2);
    border-color: rgba(0, 245, 255, 0.5);
    transform: scale(1.05);
}

/* Unique card colors */
.cloud-computing:hover {
    border-color: rgba(0, 150, 255, 0.5);
}

.cloud-computing .card-icon {
    background: linear-gradient(135deg, #0096ff 0%, #00d4ff 100%);
}

.ai-implementing:hover {
    border-color: rgba(131, 56, 236, 0.5);
}

.ai-implementing .card-icon {
    background: linear-gradient(135deg, #8338ec 0%, #a855f7 100%);
}

.digital-marketing:hover {
    border-color: rgba(255, 0, 110, 0.5);
}

.digital-marketing .card-icon {
    background: linear-gradient(135deg, #ff006e 0%, #ff4081 100%);
}

.virtual-consulting:hover {
    border-color: rgba(0, 255, 136, 0.5);
}

.virtual-consulting .card-icon {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
}

.virtual-training:hover {
    border-color: rgba(255, 165, 0, 0.5);
}

.virtual-training .card-icon {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

.startup-business:hover {
    border-color: rgba(255, 69, 0, 0.5);
}

.startup-business .card-icon {
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
}

.domain-hosting:hover {
    border-color: rgba(32, 178, 170, 0.5);
}

.domain-hosting .card-icon {
    background: linear-gradient(135deg, #20b2aa 0%, #48d1cc 100%);
}

.cyber-security:hover {
    border-color: rgba(220, 20, 60, 0.5);
}

.cyber-security .card-icon {
    background: linear-gradient(135deg, #dc143c 0%, #ff1744 100%);
}

/* Explore More Button Styles */
.explore-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.5);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.explore-btn i {
    transition: transform var(--transition-medium);
    font-size: 0.8rem;
}

.explore-btn:hover i {
    transform: translateX(3px);
}

.explore-btn span {
    transition: all var(--transition-medium);
}

/* Who We Are Section */
.who-we-are {
    min-height: 100vh;
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(15, 15, 30, 0.98) 25%,
        rgba(25, 0, 40, 0.95) 50%,
        rgba(15, 15, 30, 0.98) 75%,
        rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

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

.who-we-are-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.who-we-are-header {
    text-align: center;
    margin-bottom: 4rem;
}

.who-we-are-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.who-we-are-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mission & Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.interactive-card {
    perspective: 1000px;
    height: 300px;
}

.card-3d-effect {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.interactive-card:hover .card-3d-effect {
    transform: rotateY(10deg) rotateX(10deg) translateZ(20px);
    box-shadow: 
        0 20px 60px rgba(0, 245, 255, 0.2),
        0 0 40px rgba(131, 56, 236, 0.1);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-tech);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.interactive-card:hover .card-glow {
    opacity: 0.3;
}

.card-icon-large {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.interactive-card:hover .card-icon-large {
    transform: scale(1.1) rotateY(180deg);
    color: var(--secondary-color);
}

.who-we-are .card-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Stats Section */
.stats-section {
    margin-bottom: 6rem;
}

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

.stat-item {
    padding: 2rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(15, 15, 15, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Expertise Section */
.expertise-section {
    margin-bottom: 6rem;
}

.section-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.expertise-card {
    position: relative;
    height: 250px;
    perspective: 1000px;
}

.expertise-front,
.expertise-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.expertise-back {
    transform: rotateY(180deg);
    background: rgba(131, 56, 236, 0.1);
    border-color: var(--accent-color);
}

.interactive-hover:hover .expertise-front {
    transform: rotateY(-180deg);
}

.interactive-hover:hover .expertise-back {
    transform: rotateY(0deg);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.expertise-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.expertise-brief {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.expertise-details {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Values Section */
.values-section {
    margin-bottom: 6rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(15, 15, 15, 0.9);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.2) rotateY(360deg);
}

.value-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-tech);
    opacity: 0.05;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design for Who We Are */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .interactive-card {
        height: 250px;
    }
    
    .card-3d-effect {
        padding: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .who-we-are {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-background .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.contact-background .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 255, 157, 0.1), rgba(0, 123, 255, 0.1));
    animation: float 6s ease-in-out infinite;
}

.contact-background .shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.contact-background .shape-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.contact-background .shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.contact-background .shape-4 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 10%;
    animation-delay: 1s;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff9d, #007bff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    flex-shrink: 0;
}

.info-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.social-links {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.social-links h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00ff9d, #007bff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.3);
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 157, 0.1), transparent);
    animation: rotate 10s linear infinite;
    z-index: -1;
}

.contact-form-wrapper h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #00ff9d;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group select:valid + label,
.form-group textarea:valid + label {
    transform: translateY(-1.5rem);
    font-size: 0.8rem;
    color: #00ff9d;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff9d, #007bff);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

/* Service Select Styling */
.service-select {
    position: relative;
    margin-bottom: 2rem;
}

.select-label {
    position: absolute;
    top: -0.5rem;
    left: 0;
    color: #00ff9d;
    font-size: 0.9rem;
    font-weight: 600;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 3;
}

.service-select select {
    padding: 1.2rem 0 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    appearance: none;
    cursor: pointer;
}

.service-select select:focus {
    border-bottom-color: #00ff9d;
}

.service-select select option {
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem;
}

/* Message Group Styling */
.message-group {
    position: relative;
    margin-bottom: 2rem;
}

.message-label {
    position: absolute;
    top: -1.5rem;
    left: 0.5rem;
    color: #00ff9d;
    font-size: 1rem;
    font-weight: 700;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 3;
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

.message-box {
    background: rgba(255, 255, 255, 0.05);
          border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.8rem 1rem 1rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 0.3rem;
}

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

.message-box:hover::before {
    left: 100%;
}

.message-box:hover {
    border-color: rgba(0, 255, 157, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 255, 157, 0.1);
}

.message-box textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    padding-top: 1.2rem;
}

.message-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    font-size: 0.95rem;
}

.message-box textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Form Submit Section */
.form-submit {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.submit-btn {
    background: linear-gradient(45deg, #00ff9d, #007bff);
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
}

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

.submit-btn:hover .btn-glow {
    left: 100%;
}

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

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Contact Section Responsive */
@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-cards {
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}