/* NEXUS - Tech Company Styles */
/* Futuristic High-Tech Theme with Neon Colors and Cyberpunk Elements */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Main Content */
.main-content {
    opacity: 1;
    visibility: visible;
}

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

/* Navigation - Futuristic Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #00d4ff;
    box-shadow: 0 0 20px 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: 80px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    font-family: 'Orbitron', monospace;
}

.logo-accent {
    font-size: 10px;
    font-weight: 300;
    color: #ff6b35;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff6b35);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.nav-link:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Hero Section - Futuristic Style */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

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

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

.shape {
    position: absolute;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    border-radius: 0;
    animation: cyberFloat 10s ease-in-out infinite;
    opacity: 0.2;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(45deg, #ff6b35, #00d4ff);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
    background: linear-gradient(45deg, #ff6b35, #00d4ff);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@keyframes cyberFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.2;
    }
    25% { 
        transform: translateY(-25px) rotate(90deg) scale(1.1); 
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-50px) rotate(180deg) scale(0.9); 
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-25px) rotate(270deg) scale(1.1); 
        opacity: 0.4;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: cyberGradient 4s ease-in-out infinite;
}

@keyframes cyberGradient {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        color: #ffffff;
    }
    50% { 
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
        color: #00d4ff;
    }
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: cyberSlideInUp 1.2s ease forwards;
}

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

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

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.btn-icon {
    font-size: 1rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    color: #0a0a0a;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
    background: linear-gradient(45deg, #ff6b35, #00d4ff);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0a0a0a;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: cyberBounce 2s infinite;
}

.scroll-arrow {
    width: 25px;
    height: 25px;
    border-right: 3px solid #00d4ff;
    border-bottom: 3px solid #00d4ff;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

@keyframes cyberBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* Features Section - Futuristic Grid */
.features {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.section-title {
    font-family: 'Orbitron', monospace;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 80px;
    position: relative;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #00d4ff, #ff6b35, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cyberGradient 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff6b35);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

.feature-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 50px 30px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    color: #0a0a0a;
    position: relative;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    border-radius: 0;
    z-index: -1;
    opacity: 0.3;
    animation: cyberPulse 2s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

@keyframes cyberPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-transform: uppercase;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Showcase Section - Futuristic Style */
.showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.showcase-section {
    margin-bottom: 150px;
}

.showcase-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #00d4ff, #ff6b35, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cyberGradient 4s ease-in-out infinite;
}

/* Parallax Cards - Futuristic Style */
.parallax-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    perspective: 1000px;
    min-height: 300px;
    margin-bottom: 100px;
}

.parallax-card {
    background: rgba(0, 212, 255, 0.05);
    padding: 50px 40px;
    border-radius: 0;
    border: 2px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.parallax-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.parallax-card:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateZ(10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.card-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-transform: uppercase;
}

.card-content p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Interactive Grid - Futuristic Style */
.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.grid-item {
    aspect-ratio: 1;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.grid-item:hover::before {
    left: 100%;
}

.grid-item:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.grid-item:hover .item-content .grid-icon {
    transform: scale(1.3) rotate(360deg);
    color: #00d4ff;
}

.item-content {
    text-align: center;
    z-index: 2;
}

.item-content .grid-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: #ffffff;
    transition: all 0.4s ease;
    line-height: 1;
}

.item-content span {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Timeline - Futuristic Style */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00d4ff, #ff6b35, #00d4ff);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    border-radius: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: cyberPulse 2s ease-in-out infinite;
}

.timeline-content {
    background: rgba(0, 212, 255, 0.05);
    padding: 40px;
    border-radius: 0;
    width: 45%;
    border: 2px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.timeline-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-transform: uppercase;
}

.timeline-content p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* 3D Cards - Futuristic Style */
.cards-3d-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    perspective: 1000px;
}

.card-3d {
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.card-3d-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1s ease;
}

.card-3d:hover .card-3d-content {
    transform: rotateY(180deg);
}

.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.1);
    border-radius: 0;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.card-3d-back {
    transform: rotateY(180deg);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.card-3d h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

.card-3d p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Contact Section - Futuristic Style */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #00d4ff, #ff6b35, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cyberGradient 4s ease-in-out infinite;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 50px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 0;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(10px);
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0a0a0a;
    transition: all 0.3s ease;
    line-height: 1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* Contact Form - Futuristic Style */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 3px solid rgba(0, 212, 255, 0.3);
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #00d4ff;
}

.form-group label {
    position: absolute;
    top: 20px;
    left: 0;
    color: #cccccc;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 0.9rem;
    color: #00d4ff;
    font-weight: 600;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #ff6b35);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

/* Footer - Futuristic Style */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 80px 0 30px;
    border-top: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #ff6b35);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.social-links a i {
    font-size: 1.3rem;
    color: #0a0a0a;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.social-links a:hover i {
    transform: scale(1.2);
    color: #0a0a0a;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: #cccccc;
    font-size: 1rem;
}

/* 3D Background Canvas */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.1;
}

/* Floating Elements - Futuristic Style */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.1;
    animation: cyberFloatAround 25s linear infinite;
    color: #00d4ff;
}

.floating-icon i {
    font-size: 2.5rem;
    color: #00d4ff;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 5s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 10s; }
.floating-icon:nth-child(4) { top: 60%; right: 10%; animation-delay: 15s; }
.floating-icon:nth-child(5) { bottom: 20%; right: 30%; animation-delay: 20s; }
.floating-icon:nth-child(6) { top: 40%; left: 5%; animation-delay: 25s; }

@keyframes cyberFloatAround {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(100px, -50px) rotate(90deg) scale(1.2); }
    50% { transform: translate(50px, -100px) rotate(180deg) scale(0.8); }
    75% { transform: translate(-50px, -50px) rotate(270deg) scale(1.2); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        backdrop-filter: blur(20px);
        border-top: 2px solid #00d4ff;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    /* Mobile Hero Section */
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 0.9rem;
        min-width: 220px;
    }

    /* Mobile Features Section */
    .features {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .feature-card {
        padding: 35px 25px;
        border-radius: 0;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    /* Mobile Showcase Section */
    .showcase {
        padding: 80px 0;
    }

    .showcase-section {
        margin-bottom: 100px;
    }

    .showcase-section h3 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Mobile Parallax Cards */
    .parallax-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .parallax-card {
        padding: 35px 25px;
        border-radius: 0;
    }

    .card-content h4 {
        font-size: 1.5rem;
    }

    /* Mobile Interactive Grid */
    .interactive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .grid-item {
        border-radius: 0;
        min-height: 140px;
    }

    .item-content .grid-icon {
        font-size: 2.5rem;
    }

    .item-content span {
        font-size: 1rem;
    }

    /* Mobile Timeline */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding: 25px;
        border-radius: 0;
    }

    .timeline-content h4 {
        font-size: 1.3rem;
    }

    /* Mobile 3D Cards */
    .cards-3d-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .card-3d {
        height: 300px;
    }

    .card-3d-front,
    .card-3d-back {
        padding: 30px 25px;
        border-radius: 0;
    }

    .card-3d h4 {
        font-size: 1.5rem;
    }

    /* Mobile Contact Section */
    .contact {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    /* Mobile Footer */
    .footer {
        padding: 60px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    /* Mobile Container */
    .container {
        padding: 0 15px;
    }
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top: 4px solid #00d4ff;
    border-radius: 0;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

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