/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00f0ff;
    --secondary: #ff006e;
    --accent: #8338ec;
    --dark: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text: #ffffff;
    --text-muted: #888888;
    --glow: 0 0 20px rgba(0, 240, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50px;
    padding: 15px 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 50px;
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary);
    text-shadow: var(--glow);
}

.logo-no {
    font-size: 1.5rem;
    color: var(--secondary);
    text-shadow: var(--glow-pink);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: var(--glow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section - Split Screen */
.hero-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    position: relative;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(50px);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 30px;
    margin-bottom: 30px;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border: 2px solid;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-secondary:hover {
    background: var(--text);
    color: var(--dark);
    transform: translateY(-3px);
}

.hero-right {
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 240, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 0, 110, 0.05) 50%, transparent 70%);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-animation {
    position: relative;
    width: 300px;
}

.code-line {
    height: 4px;
    background: var(--primary);
    margin-bottom: 15px;
    border-radius: 2px;
    box-shadow: var(--glow);
    animation: codeTyping 2s ease-in-out infinite;
}

.code-line:nth-child(1) { width: 80%; animation-delay: 0s; }
.code-line:nth-child(2) { width: 100%; animation-delay: 0.2s; }
.code-line:nth-child(3) { width: 60%; animation-delay: 0.4s; }
.code-line:nth-child(4) { width: 90%; animation-delay: 0.6s; }
.code-line:nth-child(5) { width: 70%; animation-delay: 0.8s; }

@keyframes codeTyping {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border: 2px solid;
    border-radius: 10px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    border-color: var(--primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    border-color: var(--secondary);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    border-color: var(--accent);
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--primary);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* About Section - Diagonal */
.about-diagonal {
    position: relative;
    padding: 150px 0;
    background: var(--dark);
    overflow: hidden;
}

.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--dark) 50%, var(--dark-gray) 100%);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    z-index: 0;
}

.about-diagonal .container {
    position: relative;
    z-index: 1;
}

.section-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.1);
    position: absolute;
    top: -50px;
    left: 40px;
    line-height: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.title-prefix {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 2;
}

.lead-text strong {
    color: var(--secondary);
    text-shadow: var(--glow-pink);
}

.about-features {
    margin-top: 50px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 240, 255, 0.05);
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--dark);
    border-radius: 5px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text);
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-box {
    aspect-ratio: 1;
    background: var(--light-gray);
    border: 2px solid var(--primary);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-box:hover {
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: var(--glow-pink);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-box:hover .image-overlay {
    opacity: 1;
}

.image-overlay span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow);
}

.image-overlay span:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Services Section */
.services-grid {
    padding: 150px 0;
    background: var(--dark-gray);
    position: relative;
}

.services-grid .section-number {
    color: rgba(255, 0, 110, 0.1);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.service-card-large:hover {
    border-color: var(--secondary);
    box-shadow: var(--glow-pink);
    transform: translateY(-10px);
}

.service-card-large:hover::before {
    opacity: 0.2;
}

.service-card {
    background: var(--dark);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    padding: 10px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 15px;
    text-shadow: var(--glow);
}

.service-card-large .service-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
}

.service-card-large h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card-large p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Portfolio Section */
.portfolio-masonry {
    padding: 150px 0;
    background: var(--dark);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 10px 30px;
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--text-muted);
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    aspect-ratio: 1;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.portfolio-overlay p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.portfolio-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* Team Section */
.team-section {
    padding: 150px 0;
    background: var(--dark-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--dark);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.team-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 20px;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text);
}

.team-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--dark);
}

.contact-left {
    padding: 100px 60px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
}

.contact-content {
    max-width: 500px;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-info-list {
    margin-bottom: 50px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text);
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    color: var(--text);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.contact-right {
    padding: 100px 60px;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
}

.btn-submit:hover {
    background: var(--secondary);
    box-shadow: var(--glow-pink);
    transform: translateY(-3px);
}

/* Footer */
.footer-minimal {
    padding: 60px 0 30px;
    background: var(--dark-gray);
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-large {
        grid-column: span 2;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        left: 20px;
        right: 20px;
        transform: none;
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        background: var(--dark-gray);
        border: 2px solid var(--primary);
        border-radius: 20px;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        padding: 80px 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-large {
        grid-column: span 1;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-left,
    .contact-right {
        padding: 60px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-number {
        font-size: 5rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section-number {
        font-size: 4rem;
        top: -30px;
        left: 20px;
    }
}

/* Page Hero Styles */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--dark-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--dark);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 30px;
}

.mv-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text);
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* About Content Section */
.about-content-section {
    padding: 150px 0;
    background: var(--dark);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.stat-number-large {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow);
    margin-bottom: 10px;
}

.stat-label-large {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    padding: 150px 0;
    background: var(--dark-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--dark);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Team Preview */
.team-preview {
    padding: 150px 0;
    background: var(--dark);
}

.team-cta {
    text-align: center;
    margin-top: 60px;
}

/* Process Section */
.process-section {
    padding: 150px 0;
    background: var(--dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--dark-gray);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Join Section */
.why-join {
    padding: 150px 0;
    background: var(--dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--dark);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text);
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Job Openings Section */
.job-openings-section {
    padding: 150px 0;
    background: var(--dark);
}

.jobs-container {
    max-width: 900px;
    margin: 0 auto;
}

.job-card-detailed {
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card-detailed:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.job-header-detailed {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.job-header-detailed h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text);
}

.job-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.job-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-type-badge {
    background: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.job-toggle-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.job-toggle-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.job-details-detailed {
    display: none;
    padding: 0 30px 30px;
}

.job-description,
.job-requirements {
    margin-bottom: 30px;
}

.job-description h4,
.job-requirements h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.job-description p {
    color: var(--text-muted);
    line-height: 1.8;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements ul li {
    padding: 10px 0;
    color: var(--text-muted);
    padding-left: 25px;
    position: relative;
}

.job-requirements ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.job-apply-section {
    margin-top: 30px;
}

/* General Application */
.general-application {
    padding: 100px 0;
    background: var(--dark-gray);
    text-align: center;
}

.general-app-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.general-app-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Tech Tags */
.portfolio-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
    justify-content: center;
}

.portfolio-tech span {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Portfolio Stats */
.portfolio-stats {
    padding: 100px 0;
    background: var(--dark-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item-large {
    text-align: center;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--light-gray);
}

.map-content {
    text-align: center;
    color: var(--text-muted);
}

.map-content i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.map-content p {
    font-size: 1.1rem;
}

/* Error 404 */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 100px;
    background: var(--dark);
}

.error-content {
    text-align: center;
}

.error-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 12rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.error-4,
.error-0 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.error-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.error-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive additions */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
}
