:root {
    --bg-color: #0F1A20;
    --bg-secondary: #1a2832;
    --bg-gradient: linear-gradient(135deg, #0F1A20 0%, #1a2832 100%);
    --text-color: #e0e7ee;
    --primary-color: #00f2ff;
    /* Neon Cyan */
    --secondary-color: #7000ff;
    /* Neon Purple */
    --accent-color: #ff0055;
    /* Neon Pink */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-gradient);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    background-attachment: fixed;
}

/* Geometric Background Elements */
.geometric-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.06;
    transition: transform 0.3s ease-out;
}

/* Circles */
.geo-circle {
    border: 2px solid #00f2ff;
    border-radius: 50%;
}

.geo-circle.geo-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float-slow 25s ease-in-out infinite;
}

.geo-circle.geo-2 {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 10%;
    border-color: #7000ff;
    animation: float-slow 30s ease-in-out infinite reverse;
}

.geo-circle.geo-3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 40%;
    border-color: rgba(255, 0, 85, 0.5);
    animation: float-slow 20s ease-in-out infinite;
}

/* Squares */
.geo-square {
    border: 2px solid #00f2ff;
    border-radius: 4px;
}

.geo-square.geo-4 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    transform: rotate(45deg);
    border-color: #7000ff;
    animation: rotate-slow 40s linear infinite, float-slow 25s ease-in-out infinite;
}

.geo-square.geo-5 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 15%;
    transform: rotate(15deg);
    animation: rotate-slow 35s linear infinite reverse, float-slow 28s ease-in-out infinite;
}

/* Triangles */
.geo-triangle {
    width: 0;
    height: 0;
    border-style: solid;
}

.geo-triangle.geo-6 {
    border-width: 0 75px 130px 75px;
    border-color: transparent transparent rgba(0, 242, 255, 0.5) transparent;
    top: 45%;
    left: 8%;
    animation: float-slow 32s ease-in-out infinite;
}

.geo-triangle.geo-7 {
    border-width: 0 50px 87px 50px;
    border-color: transparent transparent rgba(112, 0, 255, 0.5) transparent;
    top: 70%;
    right: 30%;
    animation: float-slow 28s ease-in-out infinite reverse;
}

/* Lines */
.geo-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f2ff, transparent);
}

.geo-line.geo-8 {
    width: 200px;
    top: 20%;
    right: 5%;
    transform: rotate(-30deg);
    animation: pulse-line 4s ease-in-out infinite, float-slow 30s ease-in-out infinite;
}

.geo-line.geo-9 {
    width: 150px;
    bottom: 30%;
    left: 25%;
    transform: rotate(45deg);
    background: linear-gradient(90deg, transparent, #7000ff, transparent);
    animation: pulse-line 5s ease-in-out infinite, float-slow 26s ease-in-out infinite reverse;
}

/* Dots */
.geo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.geo-dot.geo-10 {
    top: 25%;
    left: 30%;
    animation: pulse-dot 3s ease-in-out infinite, float-slow 22s ease-in-out infinite;
}

.geo-dot.geo-11 {
    top: 55%;
    right: 15%;
    background: #7000ff;
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.5);
    animation: pulse-dot 3.5s ease-in-out infinite 0.5s, float-slow 24s ease-in-out infinite reverse;
}

.geo-dot.geo-12 {
    bottom: 40%;
    left: 50%;
    background: rgba(255, 0, 85, 0.8);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
    animation: pulse-dot 4s ease-in-out infinite 1s, float-slow 26s ease-in-out infinite;
}

/* Animations */
@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(-15px, -30px);
    }
    75% {
        transform: translate(-20px, 15px);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.06;
    }
    50% {
        opacity: 0.12;
    }
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.06;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.12;
    }
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: width var(--transition-speed);
}

.btn-primary:hover {
    color: var(--bg-color);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Navbar - Hidden on hero, appears at top when scrolled */
.navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 0;
    opacity: 1;
    pointer-events: auto;
}

.logo-container {
    opacity: 1;
    transform: scale(1);
}

.nav-logo {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    opacity: 1;
    transform: scale(1);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    z-index: 2;
}

/* Hero Left Side - Logo and Company Name */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.4));
}

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

.hero-company-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
    margin: 0;
    background: linear-gradient(135deg, #00f2ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Right Side - Taglines */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    letter-spacing: -1.5px;
}

.hero-supporting {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

/* Background Visual */
.hero-visual {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-visual canvas {
    display: block;
    width: 100%;
    height: 100%;
}

#hero-canvas-container {
    width: 100%;
    height: 100%;
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    opacity: 1;
}

.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin: 10px auto;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Sections Common */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #a0a0a0;
    margin-top: 10px;
    margin-bottom: 25px;
    font-weight: 400;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.title-underline.align-left {
    margin: 0;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

/* Vision Section */
.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vision-card p {
    color: #ccc;
}

.card-icon {
    margin-bottom: 20px;
    display: inline-flex;
    padding: 12px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
}

/* Split-Screen Vision Section */
.vision-split-screen .section-subtitle {
    font-size: 1.05rem;
    color: #a0a0a0;
    margin-top: 10px;
    margin-bottom: 40px;
    font-weight: 400;
}

.vision-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

/* Left Side: Animated Globe Visualization */
.vision-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-globe {
    position: relative;
    width: 350px;
    height: 350px;
}

.globe-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: globe-rotate 20s linear infinite;
}

.globe-ring.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 242, 255, 0.3);
    animation-duration: 20s;
}

.globe-ring.ring-2 {
    width: 75%;
    height: 75%;
    border-color: rgba(112, 0, 255, 0.3);
    animation-duration: 15s;
    animation-direction: reverse;
}

.globe-ring.ring-3 {
    width: 50%;
    height: 50%;
    border-color: rgba(255, 0, 85, 0.3);
    animation-duration: 10s;
}

.globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.4), rgba(112, 0, 255, 0.2));
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.5);
    animation: globe-core-pulse 3s ease-in-out infinite;
}

@keyframes globe-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes globe-core-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 40px rgba(0, 242, 255, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 0 60px rgba(0, 242, 255, 0.7);
    }
}

.globe-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00f2ff;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.8);
    animation: globe-particle-orbit 8s linear infinite;
}

.globe-particle.particle-1 {
    top: 20%;
    left: 50%;
    animation-delay: 0s;
}

.globe-particle.particle-2 {
    top: 50%;
    left: 80%;
    animation-delay: 1.3s;
    background: #7000ff;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.8);
}

.globe-particle.particle-3 {
    top: 80%;
    left: 50%;
    animation-delay: 2.6s;
    background: #ff0055;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.8);
}

.globe-particle.particle-4 {
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

.globe-particle.particle-5 {
    top: 35%;
    left: 70%;
    animation-delay: 5.3s;
    background: #7000ff;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.8);
}

.globe-particle.particle-6 {
    top: 65%;
    left: 30%;
    animation-delay: 6.6s;
    background: #ff0055;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.8);
}

@keyframes globe-particle-orbit {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

/* Right Side: Accordion */
.vision-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 255, 0.3);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f2ff, #7000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
}

.accordion-item:nth-child(2) .accordion-number {
    background: linear-gradient(135deg, #7000ff, #ff0055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accordion-item:nth-child(3) .accordion-number {
    background: linear-gradient(135deg, #ff0055, #00f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accordion-header h3 {
    flex: 1;
    font-size: 1.4rem;
    margin: 0;
    color: #fff;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: #00f2ff;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    opacity: 1;
    padding: 0 30px 30px 30px;
}

.accordion-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.accordion-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #c0c0c0;
    padding-left: 25px;
    position: relative;
}

.accordion-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00f2ff;
    font-weight: bold;
}

.accordion-item:nth-child(2) .accordion-features li::before {
    color: #7000ff;
}

.accordion-item:nth-child(3) .accordion-features li::before {
    color: #ff0055;
}

@media (max-width: 900px) {
    .vision-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vision-visual {
        height: 400px;
    }

    .vision-globe {
        width: 280px;
        height: 280px;
    }
}

/* Expertise Section (Side-by-Side) */
.expertise-container {
    display: flex;
    gap: 50px;
}

.expertise-header {
    flex: 1;
    position: sticky;
    top: 100px;
    height: fit-content;
    text-align: left;
}

.expertise-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 20px;
}

.one-stop-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.expertise-grid {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 300px;
}

.service-content {
    flex: 1;
    z-index: 2;
}

.service-visual {
    flex: 1;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Strategy Graphic - Rotating Circles */
.strategy-graphic {
    position: relative;
    width: 200px;
    height: 200px;
}

.strategy-circle {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: rotate-circle 10s linear infinite;
}

.strategy-circle.circle-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 242, 255, 0.4);
    animation-duration: 15s;
}

.strategy-circle.circle-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: rgba(112, 0, 255, 0.4);
    animation-duration: 10s;
    animation-direction: reverse;
}

.strategy-circle.circle-3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-color: rgba(255, 0, 85, 0.4);
    animation-duration: 8s;
}

.strategy-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00f2ff, #7000ff);
    border-radius: 50%;
    animation: pulse-center 2s ease-in-out infinite;
}

@keyframes rotate-circle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-center {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
}

/* Architecture Graphic - Network Nodes */
.architecture-graphic {
    position: relative;
    width: 200px;
    height: 200px;
}

.arch-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.arch-node {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.5), rgba(112, 0, 255, 0.5));
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    animation: pulse-node 2s ease-in-out infinite;
}

.arch-node.node-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.arch-node.node-2 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.arch-node.node-3 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.arch-node.node-4 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

@keyframes pulse-node {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
    }
}

/* Development Graphic - Code Window */
.development-graphic {
    width: 220px;
}

.code-window {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.window-header {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 242, 255, 0.05);
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
}

.window-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: rgba(255, 0, 85, 0.7); }
.dot.yellow { background: rgba(255, 165, 0, 0.7); }
.dot.green { background: rgba(0, 242, 255, 0.7); }

.code-lines {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.code-line {
    height: 8px;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.4), transparent);
    border-radius: 4px;
    animation: code-typing 3s ease-in-out infinite;
}

.code-line.line-1 { width: 90%; animation-delay: 0s; }
.code-line.line-2 { width: 70%; animation-delay: 0.3s; }
.code-line.line-3 { width: 85%; animation-delay: 0.6s; }
.code-line.line-4 { width: 60%; animation-delay: 0.9s; }
.code-line.line-5 { width: 80%; animation-delay: 1.2s; }

@keyframes code-typing {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* MVP Graphic - Rocket Launch */
.mvp-graphic {
    position: relative;
    width: 150px;
    height: 220px;
}

.rocket {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    animation: rocket-launch 3s ease-in-out infinite;
}

.rocket-body {
    width: 40px;
    height: 80px;
    background: linear-gradient(135deg, #00f2ff, #7000ff);
    border-radius: 20px 20px 5px 5px;
    position: relative;
}

.rocket-body::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid #00f2ff;
}

.rocket-window {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.rocket-fin {
    position: absolute;
    bottom: 5px;
    width: 15px;
    height: 25px;
    background: rgba(112, 0, 255, 0.8);
}

.rocket-fin.fin-left {
    left: -12px;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 100%);
}

.rocket-fin.fin-right {
    right: -12px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.launch-smoke {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.4), transparent);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: smoke-rise 2s ease-out infinite;
}

.launch-smoke.smoke-1 { animation-delay: 0s; }
.launch-smoke.smoke-2 { animation-delay: 0.4s; }
.launch-smoke.smoke-3 { animation-delay: 0.8s; }

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

@keyframes smoke-rise {
    0% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px) scale(1.5);
    }
}

/* Consulting Graphic - Lightbulb */
.consulting-graphic {
    position: relative;
    width: 150px;
    height: 200px;
}

.lightbulb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bulb {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(0, 242, 255, 0.3));
    border-radius: 50% 50% 45% 45%;
    position: relative;
    animation: bulb-glow 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

.bulb::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15px;
    width: 15px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.bulb-base {
    width: 30px;
    height: 20px;
    background: rgba(150, 150, 150, 0.5);
    margin: 0 auto;
    border-radius: 0 0 5px 5px;
}

.idea-spark {
    position: absolute;
    width: 3px;
    height: 15px;
    background: linear-gradient(to bottom, #00f2ff, transparent);
    animation: spark-shine 1.5s ease-in-out infinite;
}

.idea-spark.spark-1 {
    top: 30%;
    left: 10%;
    transform: rotate(-45deg);
    animation-delay: 0s;
}

.idea-spark.spark-2 {
    top: 30%;
    right: 10%;
    transform: rotate(45deg);
    animation-delay: 0.3s;
}

.idea-spark.spark-3 {
    top: 50%;
    left: 5%;
    transform: rotate(-90deg);
    animation-delay: 0.6s;
}

.idea-spark.spark-4 {
    top: 50%;
    right: 5%;
    transform: rotate(90deg);
    animation-delay: 0.9s;
}

@keyframes bulb-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
        background: linear-gradient(135deg, rgba(255, 165, 0, 0.3), rgba(0, 242, 255, 0.3));
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 242, 255, 0.6);
        background: linear-gradient(135deg, rgba(255, 165, 0, 0.5), rgba(0, 242, 255, 0.5));
    }
}

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

/* Team Graphic - Team Members */
.team-graphic {
    position: relative;
    width: 200px;
    height: 150px;
}

.team-member {
    position: absolute;
    animation: member-bounce 2s ease-in-out infinite;
}

.team-member .avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.4), rgba(112, 0, 255, 0.4));
    border-radius: 50%;
    border: 3px solid rgba(0, 242, 255, 0.6);
    position: relative;
}

.team-member .avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.team-member.member-1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.team-member.member-2 {
    bottom: 10%;
    left: 20%;
    animation-delay: 0.3s;
}

.team-member.member-3 {
    bottom: 10%;
    right: 20%;
    animation-delay: 0.6s;
}

.team-connector {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.3), rgba(112, 0, 255, 0.3));
    animation: connector-pulse 2s ease-in-out infinite;
}

.team-connector.connector-1 {
    top: 45%;
    left: 55%;
    width: 40px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.team-connector.connector-2 {
    top: 45%;
    right: 55%;
    width: 40px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

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

@keyframes connector-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: left;
    }

    .service-visual {
        width: 100%;
        min-height: 200px;
    }

    .strategy-graphic,
    .architecture-graphic {
        transform: scale(0.8);
    }

    .mvp-graphic,
    .consulting-graphic,
    .team-graphic {
        transform: scale(0.9);
    }
}



.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.service-item p {
    font-size: 0.95rem;
    color: #ccc;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--glass-border);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--bg-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.timeline-item:nth-child(odd) .step-number {
    right: 10px;
}

.timeline-item:nth-child(even) .step-number {
    left: 10px;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    margin-top: 30px;
}

.social-icon img {
    height: 30px;
    filter: invert(1);
    transition: transform 0.3s;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
    font-size: 1rem;
}

.contact-item svg {
    color: var(--primary-color);
}

.form-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    min-height: 400px;
}

.contact-form {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-form.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-icon {
    margin-bottom: 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.form-success p {
    color: #aaa;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

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

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #888;
    pointer-events: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:focus,
.form-group textarea:not(:placeholder-shown) {
    border-bottom-color: var(--primary-color);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 85, 0.01) 50%, transparent 100%);
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.why-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Alternating card styles with custom zig-zag pattern */
.why-card:nth-child(1),
.why-card:nth-child(3),
.why-card:nth-child(5) {
    background: rgba(0, 242, 255, 0.02);
    border: 1px solid rgba(0, 242, 255, 0.15);
}

.why-card:nth-child(2),
.why-card:nth-child(4),
.why-card:nth-child(6) {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Card number badge */
.why-card::before {
    content: attr(data-number);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.05;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
}

/* Hover effects with gradient glow */
.why-card:nth-child(1):hover,
.why-card:nth-child(3):hover,
.why-card:nth-child(5):hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
    background: rgba(0, 242, 255, 0.04);
}

.why-card:nth-child(2):hover,
.why-card:nth-child(4):hover,
.why-card:nth-child(6):hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

/* Icon colors based on checkerboard pattern */
.why-card:nth-child(1) .why-icon,
.why-card:nth-child(3) .why-icon,
.why-card:nth-child(5) .why-icon {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.15), rgba(0, 242, 255, 0.05));
    color: #00f2ff;
}

.why-card:nth-child(2) .why-icon,
.why-card:nth-child(4) .why-icon,
.why-card:nth-child(6) .why-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    color: #ffffff;
}

/* Icon animation on hover */
.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* CTA Banner */
.cta-banner {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(112, 0, 255, 0.05));
    border: 2px solid rgba(0, 242, 255, 0.2);
}

.cta-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 30px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #00f2ff;
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-company-name {
        font-size: 3.5rem;
    }

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

    .hero-supporting {
        font-size: 1.2rem;
    }

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

    .expertise-container {
        flex-direction: column;
    }

    .expertise-header {
        position: static;
        text-align: center;
        margin-bottom: 40px;
    }

    .title-underline.align-left {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Hide geometric background on mobile for performance */
    .geometric-background {
        display: none;
    }

    .cursor-glow {
        display: none;
    }

    .navbar {
        padding: 15px 20px;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .hero-company-name {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.8rem;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
        padding-left: 50px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 10px !important;
    }

    .contact-wrapper {
        padding: 30px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 40px 30px;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }
}
