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

html {
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    font-weight: 300;
    letter-spacing: 0.4px;
    position: relative;
}

/* Global 3D Background Scene */
.global-3d-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    perspective: 1000px;
    overflow: hidden;
}

.bg-3d-object {
    position: absolute;
    opacity: 0.9;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    filter: none;
}

/* Background 3D Objects */
.bg-cube-small {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(157, 78, 221, 0.8));
    border-radius: 3px;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.bg-cube-medium {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(254, 202, 87, 0.8));
    border-radius: 4px;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.bg-sphere-small {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(72, 202, 228, 0.8), rgba(0, 119, 182, 0.8));
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(72, 202, 228, 0.3);
}

.bg-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(157, 78, 221, 0.8);
    transform-style: preserve-3d;
    filter: drop-shadow(0 4px 8px rgba(157, 78, 221, 0.3));
}

.bg-diamond {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(0, 212, 255, 0.7));
    transform: rotate(45deg);
    border-radius: 2px;
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.bg-hexagon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.8), rgba(106, 76, 147, 0.8));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transform-style: preserve-3d;
    filter: drop-shadow(0 4px 8px rgba(157, 78, 221, 0.3));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

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

.nav-logo .logo-text {
    font-family: 'Lexend', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(22, 33, 62, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

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

.hero-content {
    animation: slideInLeft 1s ease-out;
}

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

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
    perspective: 1000px;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(157, 78, 221, 0.15));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.1);
    transform-style: preserve-3d;
}

.isometric-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    animation: sceneRotate 25s linear infinite;
}

.iso-element {
    position: absolute;
    transform-style: preserve-3d;
}

.iso-phone {
    width: 50px;
    height: 85px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 8px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transform: rotateX(60deg) rotateY(-45deg) translateZ(80px);
    animation: phoneFloat 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    top: 150px;
    left: 80px;
}

.iso-tablet {
    width: 90px;
    height: 120px;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    border-radius: 6px;
    border: 2px solid rgba(157, 78, 221, 0.3);
    transform: rotateX(45deg) rotateY(60deg) translateZ(40px);
    animation: tabletFloat 5.5s ease-in-out infinite;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    top: 80px;
    right: 120px;
}

.iso-watch {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transform: rotateX(30deg) rotateY(-60deg) translateZ(120px);
    animation: watchFloat 3.5s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    bottom: 180px;
    left: 150px;
}

.iso-headphones {
    width: 70px;
    height: 60px;
    background: linear-gradient(135deg, #16213e, #0f0f23);
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transform: rotateX(50deg) rotateY(30deg) translateZ(90px);
    animation: headphonesFloat 4.2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    top: 200px;
    right: 180px;
}

.iso-laptop {
    width: 100px;
    height: 70px;
    background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
    border-radius: 5px;
    border: 2px solid rgba(157, 78, 221, 0.3);
    transform: rotateX(60deg) rotateY(45deg) translateZ(60px);
    animation: laptopFloat 5s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    top: 250px;
    right: 100px;
}

.iso-camera {
    width: 65px;
    height: 45px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f23);
    border-radius: 8px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    transform: rotateX(40deg) rotateY(-30deg) translateZ(70px);
    animation: cameraFloat 3.8s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    top: 120px;
    left: 200px;
}

.iso-gamepad {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #9d4edd, #6a4c93);
    border-radius: 12px;
    border: 2px solid rgba(157, 78, 221, 0.4);
    transform: rotateX(55deg) rotateY(20deg) translateZ(45px);
    animation: gamepadFloat 4.7s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
    bottom: 120px;
    right: 150px;
}

.iso-speaker {
    width: 45px;
    height: 75px;
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    border-radius: 6px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transform: rotateX(65deg) rotateY(-20deg) translateZ(85px);
    animation: speakerFloat 4.3s ease-in-out infinite;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    bottom: 200px;
    left: 250px;
}

.iso-chart {
    width: 70px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(157, 78, 221, 0.2));
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotateX(45deg) rotateY(30deg) translateZ(100px);
    animation: chartFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    top: 80px;
    right: 200px;
}

.iso-monitor {
    width: 110px;
    height: 80px;
    background: linear-gradient(135deg, #2a2a3e, #16213e);
    border-radius: 4px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transform: rotateX(70deg) rotateY(10deg) translateZ(25px);
    animation: monitorFloat 5.2s ease-in-out infinite;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    top: 300px;
    left: 120px;
}

.iso-keyboard {
    width: 95px;
    height: 35px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f23);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotateX(80deg) rotateY(-10deg) translateZ(15px);
    animation: keyboardFloat 4.8s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    bottom: 80px;
    right: 200px;
}

.iso-cube {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00d4ff, #9d4edd);
    border-radius: 4px;
    transform: rotateX(45deg) rotateY(-30deg) translateZ(110px);
    animation: cubeFloat 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    bottom: 150px;
    left: 180px;
}

.iso-cube2 {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 3px;
    transform: rotateX(60deg) rotateY(45deg) translateZ(130px);
    animation: cube2Float 5.5s ease-in-out infinite;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
    top: 180px;
    right: 250px;
}

.iso-sphere {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #48cae4, #0077b6);
    border-radius: 50%;
    transform: rotateX(30deg) rotateY(-45deg) translateZ(95px);
    animation: sphereFloat 4.5s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(72, 202, 228, 0.3);
    bottom: 250px;
    right: 80px;
}

.iso-progress {
    width: 85px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotateX(30deg) rotateY(-60deg) translateZ(75px);
    animation: progressFloat 4.5s ease-in-out infinite;
    overflow: hidden;
    bottom: 220px;
    right: 120px;
}

.iso-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #9d4edd);
    border-radius: 10px;
    animation: progressFill 3s ease-in-out infinite;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00d4ff;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
    opacity: 0.6;
}

.particle:nth-child(2n) {
    background: #9d4edd;
    animation-delay: -2s;
}

.particle:nth-child(3n) {
    background: #ff6b6b;
    animation-delay: -4s;
}

@keyframes sceneRotate {
    0% { transform: translate(-50%, -50%) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

@keyframes phoneFloat {
    0%, 100% { transform: rotateX(60deg) rotateY(-45deg) translateZ(80px) translateY(0px); }
    50% { transform: rotateX(60deg) rotateY(-45deg) translateZ(80px) translateY(-10px); }
}

@keyframes tabletFloat {
    0%, 100% { transform: rotateX(45deg) rotateY(60deg) translateZ(40px) translateY(0px); }
    50% { transform: rotateX(45deg) rotateY(60deg) translateZ(40px) translateY(-12px); }
}

@keyframes watchFloat {
    0%, 100% { transform: rotateX(30deg) rotateY(-60deg) translateZ(120px) translateY(0px); }
    50% { transform: rotateX(30deg) rotateY(-60deg) translateZ(120px) translateY(-8px); }
}

@keyframes headphonesFloat {
    0%, 100% { transform: rotateX(50deg) rotateY(30deg) translateZ(90px) translateY(0px); }
    50% { transform: rotateX(50deg) rotateY(30deg) translateZ(90px) translateY(-10px); }
}

@keyframes laptopFloat {
    0%, 100% { transform: rotateX(60deg) rotateY(45deg) translateZ(60px) translateY(0px); }
    50% { transform: rotateX(60deg) rotateY(45deg) translateZ(60px) translateY(-15px); }
}

@keyframes cameraFloat {
    0%, 100% { transform: rotateX(40deg) rotateY(-30deg) translateZ(70px) translateY(0px); }
    50% { transform: rotateX(40deg) rotateY(-30deg) translateZ(70px) translateY(-10px); }
}

@keyframes gamepadFloat {
    0%, 100% { transform: rotateX(55deg) rotateY(20deg) translateZ(45px) translateY(0px); }
    50% { transform: rotateX(55deg) rotateY(20deg) translateZ(45px) translateY(-12px); }
}

@keyframes speakerFloat {
    0%, 100% { transform: rotateX(65deg) rotateY(-20deg) translateZ(85px) translateY(0px); }
    50% { transform: rotateX(65deg) rotateY(-20deg) translateZ(85px) translateY(-8px); }
}

@keyframes chartFloat {
    0%, 100% { transform: rotateX(45deg) rotateY(30deg) translateZ(100px) translateY(0px); }
    50% { transform: rotateX(45deg) rotateY(30deg) translateZ(100px) translateY(-8px); }
}

@keyframes monitorFloat {
    0%, 100% { transform: rotateX(70deg) rotateY(10deg) translateZ(25px) translateY(0px); }
    50% { transform: rotateX(70deg) rotateY(10deg) translateZ(25px) translateY(-18px); }
}

@keyframes keyboardFloat {
    0%, 100% { transform: rotateX(80deg) rotateY(-10deg) translateZ(15px) translateY(0px); }
    50% { transform: rotateX(80deg) rotateY(-10deg) translateZ(15px) translateY(-6px); }
}

@keyframes cubeFloat {
    0%, 100% { transform: rotateX(45deg) rotateY(-30deg) translateZ(110px) translateY(0px) rotateZ(0deg); }
    50% { transform: rotateX(45deg) rotateY(-30deg) translateZ(110px) translateY(-12px) rotateZ(180deg); }
}

@keyframes cube2Float {
    0%, 100% { transform: rotateX(60deg) rotateY(45deg) translateZ(130px) translateY(0px) rotateZ(0deg); }
    50% { transform: rotateX(60deg) rotateY(45deg) translateZ(130px) translateY(-10px) rotateZ(-180deg); }
}

@keyframes sphereFloat {
    0%, 100% { transform: rotateX(30deg) rotateY(-45deg) translateZ(95px) translateY(0px); }
    50% { transform: rotateX(30deg) rotateY(-45deg) translateZ(95px) translateY(-14px); }
}

@keyframes progressFloat {
    0%, 100% { transform: rotateX(30deg) rotateY(-60deg) translateZ(75px) translateY(0px); }
    50% { transform: rotateX(30deg) rotateY(-60deg) translateZ(75px) translateY(-6px); }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 0%; }
}

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

/* Background 3D Object Animations */
@keyframes bgCubeFloat1 {
    0%, 100% { transform: rotateX(45deg) rotateY(45deg) translateZ(50px) translateY(0px); }
    50% { transform: rotateX(45deg) rotateY(225deg) translateZ(50px) translateY(-30px); }
}

@keyframes bgCubeFloat2 {
    0%, 100% { transform: rotateX(60deg) rotateY(-30deg) translateZ(80px) translateY(0px); }
    50% { transform: rotateX(60deg) rotateY(150deg) translateZ(80px) translateY(-25px); }
}

@keyframes bgCubeFloat3 {
    0%, 100% { transform: rotateX(30deg) rotateY(60deg) translateZ(40px) translateY(0px); }
    50% { transform: rotateX(30deg) rotateY(240deg) translateZ(40px) translateY(-35px); }
}

@keyframes bgSphereFloat1 {
    0%, 100% { transform: rotateX(20deg) rotateY(0deg) translateZ(60px) translateY(0px) scale(1); }
    50% { transform: rotateX(20deg) rotateY(180deg) translateZ(60px) translateY(-20px) scale(1.2); }
}

@keyframes bgSphereFloat2 {
    0%, 100% { transform: rotateX(40deg) rotateY(90deg) translateZ(70px) translateY(0px) scale(1); }
    50% { transform: rotateX(40deg) rotateY(270deg) translateZ(70px) translateY(-15px) scale(0.8); }
}

@keyframes bgTriangleFloat1 {
    0%, 100% { transform: rotateX(50deg) rotateY(30deg) rotateZ(0deg) translateZ(45px) translateY(0px); }
    50% { transform: rotateX(50deg) rotateY(30deg) rotateZ(180deg) translateZ(45px) translateY(-28px); }
}

@keyframes bgTriangleFloat2 {
    0%, 100% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg) translateZ(55px) translateY(0px); }
    50% { transform: rotateX(35deg) rotateY(-45deg) rotateZ(-180deg) translateZ(55px) translateY(-22px); }
}

@keyframes bgDiamondFloat1 {
    0%, 100% { transform: rotateX(45deg) rotateY(45deg) rotateZ(45deg) translateZ(35px) translateY(0px); }
    50% { transform: rotateX(45deg) rotateY(225deg) rotateZ(225deg) translateZ(35px) translateY(-18px); }
}

@keyframes bgDiamondFloat2 {
    0%, 100% { transform: rotateX(60deg) rotateY(-30deg) rotateZ(45deg) translateZ(65px) translateY(0px); }
    50% { transform: rotateX(60deg) rotateY(150deg) rotateZ(225deg) translateZ(65px) translateY(-25px); }
}

@keyframes bgHexagonFloat1 {
    0%, 100% { transform: rotateX(30deg) rotateY(60deg) translateZ(50px) translateY(0px) scale(1); }
    50% { transform: rotateX(30deg) rotateY(240deg) translateZ(50px) translateY(-32px) scale(1.1); }
}

@keyframes bgHexagonFloat2 {
    0%, 100% { transform: rotateX(55deg) rotateY(-20deg) translateZ(75px) translateY(0px) scale(1); }
    50% { transform: rotateX(55deg) rotateY(160deg) translateZ(75px) translateY(-20px) scale(0.9); }
}

/* Section-Specific 3D Objects */
.section-3d-object {
    position: absolute;
    opacity: 0.7;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    filter: none;
    z-index: 1;
}

/* About Section Objects */
.about-cube {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.6), rgba(157, 78, 221, 0.6));
    border-radius: 4px;
    transform-style: preserve-3d;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.about-sphere {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(157, 78, 221, 0.6));
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.4);
}

.about-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(0, 212, 255, 0.6);
    filter: drop-shadow(0 6px 15px rgba(0, 212, 255, 0.4));
}

/* Projects Section Objects */
.projects-cube {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.6), rgba(255, 159, 67, 0.6));
    border-radius: 4px;
    transform-style: preserve-3d;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.projects-diamond {
    width: 20px;
    height: 20px;
    background: rgba(255, 159, 67, 0.6);
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: 0 6px 20px rgba(255, 159, 67, 0.4);
}

.projects-hexagon {
    width: 24px;
    height: 24px;
    background: rgba(255, 107, 107, 0.6);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    filter: drop-shadow(0 6px 15px rgba(255, 107, 107, 0.4));
}

/* Contact Section Objects */
.contact-sphere {
    width: 32px;
    height: 32px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(46, 213, 115, 0.6));
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(46, 213, 115, 0.4);
}

.contact-cube {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.6), rgba(0, 184, 148, 0.6));
    border-radius: 4px;
    transform-style: preserve-3d;
    box-shadow: 0 6px 20px rgba(46, 213, 115, 0.4);
}

.contact-triangle {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 24px solid rgba(0, 184, 148, 0.6);
    filter: drop-shadow(0 6px 15px rgba(0, 184, 148, 0.4));
}

/* Section Object Animations */
@keyframes aboutFloat1 {
    0%, 100% { transform: rotateX(20deg) rotateY(0deg) translateZ(40px) translateY(0px); }
    50% { transform: rotateX(20deg) rotateY(180deg) translateZ(40px) translateY(-15px); }
}

@keyframes aboutFloat2 {
    0%, 100% { transform: rotateX(45deg) rotateY(45deg) translateZ(30px) translateY(0px) scale(1); }
    50% { transform: rotateX(45deg) rotateY(225deg) translateZ(30px) translateY(-20px) scale(1.1); }
}

@keyframes aboutFloat3 {
    0%, 100% { transform: rotateX(60deg) rotateY(-30deg) translateZ(50px) translateY(0px); }
    50% { transform: rotateX(60deg) rotateY(150deg) translateZ(50px) translateY(-12px); }
}

@keyframes projectsFloat1 {
    0%, 100% { transform: rotateX(30deg) rotateY(60deg) translateZ(45px) translateY(0px); }
    50% { transform: rotateX(30deg) rotateY(240deg) translateZ(45px) translateY(-18px); }
}

@keyframes projectsFloat2 {
    0%, 100% { transform: rotateX(50deg) rotateY(-45deg) translateZ(35px) translateY(0px) scale(1); }
    50% { transform: rotateX(50deg) rotateY(135deg) translateZ(35px) translateY(-22px) scale(0.9); }
}

@keyframes projectsFloat3 {
    0%, 100% { transform: rotateX(25deg) rotateY(90deg) translateZ(55px) translateY(0px); }
    50% { transform: rotateX(25deg) rotateY(270deg) translateZ(55px) translateY(-16px); }
}

@keyframes contactFloat1 {
    0%, 100% { transform: rotateX(40deg) rotateY(30deg) translateZ(42px) translateY(0px); }
    50% { transform: rotateX(40deg) rotateY(210deg) translateZ(42px) translateY(-20px); }
}

@keyframes contactFloat2 {
    0%, 100% { transform: rotateX(35deg) rotateY(-60deg) translateZ(38px) translateY(0px) scale(1); }
    50% { transform: rotateX(35deg) rotateY(120deg) translateZ(38px) translateY(-14px) scale(1.05); }
}

@keyframes contactFloat3 {
    0%, 100% { transform: rotateX(55deg) rotateY(15deg) translateZ(48px) translateY(0px); }
    50% { transform: rotateX(55deg) rotateY(195deg) translateZ(48px) translateY(-18px); }
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

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

.about-main-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #c0c0c0;
    font-weight: 300;
}

.about-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.about-link {
    color: #00d4ff;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: #9d4edd;
}

.about-link i {
    font-size: 0.7rem;
}

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

.stats-header {
    margin-bottom: 2rem;
}

.stats-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    padding: 1rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #c0c0c0;
    font-weight: 300;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.projects .container {
    position: relative;
    z-index: 2;
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.project-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #e0e0e0;
    letter-spacing: 0.5px;
}

.project-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #00d4ff 0%, #9d4edd 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

/* Page Styles for New Pages */
.mission-page, .vision-page, .technology-page, .team-page {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

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

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

.content-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.content-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Mission Page Styles */
.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-main {
    width: 100%;
    margin-bottom: 4rem;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.pillar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.pillar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.pillar p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.impact-metrics {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.impact-metrics h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
    text-align: center;
    grid-column: 1 / -1;
}

.metric {
    text-align: center;
    margin-bottom: 0;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* Vision Page Styles */
.vision-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-main {
    width: 100%;
    margin-bottom: 4rem;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 3rem 0;
}

.goal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.goal:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.goal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.goal h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.goal p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.future-roadmap {
    margin-top: 3rem;
}

.future-roadmap h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.roadmap-items {
    display: grid;
    gap: 1rem;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.roadmap-item .year {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    min-width: 60px;
}

.roadmap-item .milestone {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.vision-stats {
    height: fit-content;
}

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

.stats-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

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

/* Technology Page Styles */
.tech-overview {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-header i {
    font-size: 2rem;
    color: #667eea;
}

.category-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

.tech-items {
    display: grid;
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.tech-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.tech-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.tech-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.innovation-section {
    margin-top: 4rem;
    text-align: center;
}

.innovation-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 3rem;
}

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

.innovation-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.innovation-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.innovation-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.innovation-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.innovation-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Team Page Styles */
.team-overview {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

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

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.member-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.departments-section {
    margin: 4rem 0;
}

.departments-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.department {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.department:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.dept-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.department h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.dept-count {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.department p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.culture-section {
    margin: 4rem 0;
}

.culture-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.value:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.value h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.value p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

.join-team-section {
    margin-top: 4rem;
    text-align: center;
}

.join-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.join-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.join-cta p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .mission-content,
    .vision-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .mission-pillars,
    .vision-goals {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .departments-grid,
    .culture-values,
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-item {
        flex-direction: column;
        text-align: center;
    }
    
    .roadmap-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .roadmap-item .year {
        font-size: 1.2rem;
    }
    
    .future-metrics {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .impact-metrics .metric {
        margin-bottom: 2rem;
    }
    
    .impact-metrics h3 {
        margin-bottom: 2rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #000000 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #9d4edd 100%);
    transform: translateY(-3px);
}

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

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
}

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

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

    .container {
        padding: 0 15px;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}