* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00bdc1;
    --secondary: #006896;
    --accent: #00739b;
    --dark: #002b64;
    --darker: #001428;
    --light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body {
    font-family: 'Space Grotesk', 'JetBrains Mono', monospace, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #001428 0%, #002b64 50%, #001428 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.logo-container {
    position: relative;
    margin-bottom: 3rem;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.preloader-logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 189, 193, 0.6));
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(0, 189, 193, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(0, 189, 193, 1));
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 189, 193, 0.3), transparent);
    filter: blur(40px);
    animation: glowPulse 2s ease-in-out infinite;
}

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

.code-lines {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    display: inline-block;
}

.code-line {
    opacity: 0;
    animation: typeIn 0.5s ease-out forwards;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

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

.code-line:nth-child(2) {
    animation-delay: 0.5s;
}

.code-line:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes typeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.code-keyword {
    color: #00bdc1;
    font-weight: 600;
}

.code-variable {
    color: #ffffff;
}

.code-function {
    color: #00739b;
    font-weight: 600;
}

.code-string {
    color: #006896;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(0, 189, 193, 0.3);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00bdc1, #00739b, #00bdc1);
    background-size: 200% 100%;
    width: 0;
    border-radius: 10px;
    animation: loadingAnimation 2s ease-in-out forwards, shimmer 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 189, 193, 0.6);
}

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

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.loading-percentage {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00bdc1;
    text-shadow: 0 0 20px rgba(0, 189, 193, 0.6);
    letter-spacing: 2px;
}

/* 3D Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #002b64 0%, #001428 50%, #002b64 100%);
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite;
    opacity: 0.3;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    top: 50%;
    right: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    bottom: -20%;
    left: 30%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    top: 20%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 80px) scale(0.9);
    }
    75% {
        transform: translate(40px, -40px) scale(1.05);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-3d {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #00bdc1, #00739b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 189, 193, 0.5);
    letter-spacing: -1px;
}

.logo-img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 189, 193, 0.3));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 189, 193, 0.6));
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

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

/* Navigation Social Icons */
.nav-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.nav-social-link:hover {
    background: rgba(0, 189, 193, 0.3);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 189, 193, 0.4);
}

.nav-social-link svg {
    transition: transform 0.3s ease;
}

.nav-social-link:hover svg {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-3d-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.floating-cube {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float-cube 15s infinite ease-in-out;
    transform-style: preserve-3d;
}

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

.cube-2 {
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.cube-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float-cube {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) rotateY(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) rotateY(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) rotateY(180deg);
    }
    75% {
        transform: translate(20px, -40px) rotate(270deg) rotateY(270deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(0, 189, 193, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 189, 193, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite;
}

.badge-icon {
    animation: rotate 3s linear infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 189, 193, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 115, 155, 0.8);
    }
}

.title-3d {
    font-size: 7rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #fff 0%, #00bdc1 50%, #00739b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 50px rgba(0, 189, 193, 0.5);
    letter-spacing: -5px;
    display: inline-block;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: 2rem;
    margin: 1.5rem 0;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.8;
    margin: 2rem auto;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-primary-3d, .btn-secondary-3d {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-3d {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 10px 40px rgba(0, 189, 193, 0.4);
}

.btn-primary-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 189, 193, 0.6);
}

.btn-secondary-3d {
    background: rgba(0, 189, 193, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 189, 193, 0.3);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
}

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

/* Mouse Scroll Animation */
.mouse-scroll {
    margin-top: 1rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 189, 193, 0.2);
    border: 1px solid rgba(0, 189, 193, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-tag.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #fff, #00bdc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.section-title.light {
    background: linear-gradient(135deg, #fff, #00bdc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Card Effect */
.glass-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: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

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

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 8rem 0;
    position: relative;
}

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

.rotating-card {
    perspective: 1000px;
}

.card-3d {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    animation: cardRotate 10s infinite linear;
}

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

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backface-visibility: hidden;
}

.card-face.back {
    transform: rotateY(180deg);
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 3rem;
}

.stats-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.7;
}

.stat-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 189, 193, 0.4), transparent);
    filter: blur(40px);
    z-index: -1;
}

/* Services Section */
.services-section {
    padding: 8rem 0;
    position: relative;
}

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

.service-card-3d {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    overflow: hidden;
}

.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 189, 193, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-3d:hover .service-glow {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.service-card-3d:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(0, 189, 193, 0.4);
    border-color: rgba(0, 189, 193, 0.5);
}

.service-icon-3d {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

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

.service-card-3d h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card-3d p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-3d:hover .service-link {
    color: var(--accent);
    transform: translateX(5px);
    display: inline-block;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: translateX(-50%);
}

.process-step-3d {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step-3d:nth-child(even) {
    flex-direction: row-reverse;
}

.step-card {
    width: 45%;
    text-align: left;
}

.step-number-3d {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 10px 40px rgba(0, 189, 193, 0.5);
    z-index: 10;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-card p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Tech Section */
.tech-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #002b64, #006896);
    position: relative;
    overflow: hidden;
}

.tech-carousel {
    overflow: hidden;
    padding: 2rem 0;
}

.tech-track {
    display: flex;
    gap: 2rem;
    animation: scroll-tech 30s linear infinite;
}

@keyframes scroll-tech {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-card-3d {
    min-width: 200px;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-card-3d:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 189, 193, 0.4);
}

/* Instagram Section */
.instagram-section {
    padding: 8rem 0;
    background: var(--light-bg);
}

.instagram-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.instagram-grid {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.instagram-embed {
    max-width: 540px;
    width: 100%;
}

.instagram-media {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.instagram-cta {
    text-align: center;
    margin-top: 3rem;
}

.instagram-cta .btn-primary-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-3d-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(0, 189, 193, 0.3);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: 15%;
    animation-delay: -7s;
}

.orbit-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes orbit-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.contact-info-card {
    text-align: center;
    padding: 3rem 2rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-card p {
    opacity: 0.8;
}

.cta-section {
    text-align: center;
    margin-top: 5rem;
}

.cta-text {
    font-size: 1.3rem;
    opacity: 0.85;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-3d {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 189, 193, 0.4);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    animation: button-glow 3s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.cta-btn-3d:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 115, 155, 0.6);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

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

.social-link:hover {
    background: rgba(0, 189, 193, 0.2);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 189, 193, 0.4);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    margin-top: 0.5rem;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Page Hero Sections */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #fff, #00bdc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1.5rem 0;
    letter-spacing: -3px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.85;
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.floating-card {
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card.delay-1 {
    animation-delay: -2s;
}

.floating-card.delay-2 {
    animation-delay: -4s;
}

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

.card-stat {
    text-align: center;
    padding: 2rem;
}

.card-stat h3 {
    font-size: 3rem;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.card-stat p {
    font-size: 1rem;
    opacity: 0.7;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
}

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

.value-card {
    text-align: center;
    padding: 3rem 2rem;
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    opacity: 0.8;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
}

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

.team-member {
    text-align: center;
    padding: 3rem 2rem;
}

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

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-member p {
    opacity: 0.8;
    line-height: 1.7;
}

/* CTA Full Section */
.cta-full-section {
    padding: 8rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #fff, #00bdc1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    opacity: 0.85;
    margin-bottom: 3rem;
}

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

/* Portfolio Section */
.portfolio-section {
    padding: 4rem 0 8rem;
}

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

.portfolio-item {
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 189, 193, 0.2), rgba(0, 115, 155, 0.2));
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.project-placeholder {
    font-size: 6rem;
}

.portfolio-content {
    padding: 0 1rem 1rem;
}

.project-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 189, 193, 0.2);
    border: 1px solid rgba(0, 189, 193, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    margin-bottom: 1rem;
}

.portfolio-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.portfolio-item p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item:hover .project-placeholder {
    animation: rotate 2s ease-in-out infinite;
}

/* Responsive Design */

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Tablet View */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .rotating-card {
        margin: 0 auto;
    }
    
    .card-3d {
        width: 250px;
        height: 250px;
    }
    
    .process-step-3d {
        flex-direction: column !important;
    }
    
    .step-card {
        width: 100%;
    }
    
    .step-number-3d {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .stats-3d {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .services-grid-3d {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    /* Hide desktop menu, show mobile toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 20, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-right: 1px solid rgba(0, 189, 193, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.4s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
    
    /* Typography */
    .title-3d {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .page-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .page-subtitle {
        font-size: 1.05rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .nav-social {
        gap: 0.8rem;
    }
    
    .nav-social-link {
        width: 32px;
        height: 32px;
    }
    
    /* Buttons */
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn-primary-3d, .btn-secondary-3d {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-btn-3d {
        padding: 1.2rem 2.5rem;
        font-size: 1.05rem;
    }
    
    /* Sections */
    .container {
        padding: 0 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 1rem;
        min-height: 90vh;
    }
    
    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Grids */
    .services-grid-3d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-3d {
        padding: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-3d {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Cards */
    .glass-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .service-icon-3d {
        font-size: 3rem;
    }
    
    .service-card-3d h3 {
        font-size: 1.5rem;
    }
    
    /* Process Section */
    .step-number-3d {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-card h3 {
        font-size: 1.6rem;
    }
    
    /* Tech Carousel */
    .tech-card-3d {
        min-width: 150px;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Contact */
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    /* Preloader Mobile */
    .preloader-logo {
        width: 120px;
    }
    
    .code-lines {
        font-size: 0.85rem;
    }
    
    .loading-bar {
        width: 250px;
    }
    
    .loading-percentage {
        font-size: 1rem;
    }
    
    /* Floating elements - reduce on mobile */
    .floating-cube {
        width: 60px;
        height: 60px;
        opacity: 0.3;
    }
    
    .shape {
        filter: blur(60px);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .title-3d {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .btn-primary-3d, .btn-secondary-3d {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .service-card-3d {
        padding: 1.5rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .card-3d {
        width: 200px;
        height: 200px;
    }
    
    .loading-bar {
        width: 200px;
    }
    
    .code-lines {
        font-size: 0.75rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 1rem 4rem;
    }
    
    .title-3d {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .floating-cube, .scroll-indicator {
        display: none;
    }
}
