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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow: hidden;
    background: #0a0a0a;
}

/* ==================== */
/* GLOBE PAGE STYLES    */
/* ==================== */

/* Main Navigation Bar */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
}

.nav-hint {
    display: none;
}

/* Globe Container */
#globe-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#globe-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Navigation Points - Minimal Design */
.nav-point {
    position: absolute;
    cursor: pointer;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-point:hover {
    transform: scale(1.05);
}

.nav-point-inner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-point:hover .nav-point-inner {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-point-inner i {
    display: none;
}

.nav-label {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-point:hover .nav-label {
    color: #fff;
}

/* Navigation Point Positions - U-shape layout */
/* Top center: Get Started */
#nav-funnel {
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 220px));
    text-decoration: none;
    flex-direction: column;
    align-items: center;
}

#nav-funnel .nav-label {
    order: -1;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

/* Left side: About */
#nav-about {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 280px), -50%);
    flex-direction: row-reverse;
}

/* Left bottom: Services */
#nav-services {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 180px), calc(-50% + 200px));
    flex-direction: row-reverse;
}

/* Right side: Solutions */
#nav-solutions {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 280px), -50%);
}

/* Right bottom: Projects */
#nav-projects {
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 180px), calc(-50% + 200px));
}

/* Bottom center: Contact */
#nav-contact {
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 280px));
    flex-direction: column;
}

#nav-contact .nav-label {
    margin-top: 0.5rem;
}

/* CTA Nav Point - Highlighted */
.nav-point-cta .nav-point-inner.cta {
    width: 24px;
    height: 24px;
    border-color: #00f5ff;
    background: rgba(0, 245, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.nav-point-cta .nav-point-inner.cta i {
    display: block;
    font-size: 0.7rem;
    color: #00f5ff;
}

.nav-point-cta:hover .nav-point-inner.cta {
    background: rgba(0, 245, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
    transform: scale(1.1);
}

.nav-point-cta .nav-label {
    color: #00f5ff;
}

/* Navigation Tooltips - Hidden for minimal design */
.nav-tooltip {
    display: none;
}

/* Content Panels - Glass Card Style */
#content-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    pointer-events: none;
}

.content-panel {
    position: fixed;
    top: 10%;
    width: 45%;
    height: 80%;
    background: rgba(10, 12, 18, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 60px rgba(0, 245, 255, 0.03);
}

/* Left side panel */
.content-panel.panel-left {
    left: 3%;
    right: auto;
    transform: translateX(-50px);
}

/* Right side panel */
.content-panel.panel-right {
    right: 3%;
    left: auto;
    transform: translateX(50px);
}

.content-panel.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

.content-panel .panel-content {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Thin glowing edge on panel */
.content-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.3), transparent);
}

.content-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.15), transparent);
}

/* Connection Line */
.connection-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 199;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.connection-line.active {
    opacity: 1;
}

.connection-line svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.connection-line path {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.6));
}

.connection-line.active path {
    animation: drawLine 0.5s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Data pulse along line */
.connection-line .data-pulse {
    fill: #00f5ff;
    filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.8));
    opacity: 0;
}

.connection-line.active .data-pulse {
    animation: pulseLine 1.5s ease-in-out 0.3s infinite;
}

@keyframes pulseLine {
    0% { opacity: 0; offset-distance: 0%; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; offset-distance: 100%; }
}

.panel-content {
    padding: 2.5rem;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.panel-content h2 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 40px;
}

.close-panel {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-panel:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.4);
    transform: rotate(90deg) scale(1.1);
}

/* Panel Content Styles - High Tech Glossy */
.panel-body {
    color: rgba(255, 255, 255, 0.8);
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-left: 2px solid #00f5ff;
    border-radius: 0 10px 10px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

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

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

.stat-item:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3), inset 0 0 30px rgba(0, 245, 255, 0.05);
    transform: translateY(-5px);
}

.stat-item .stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00f5ff 0%, #00a8b5 50%, #00f5ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    display: block;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tech-showcase {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 245, 255, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.tech-showcase h3 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tag {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 25px;
    font-size: 0.85rem;
    color: #00f5ff;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tech-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 245, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.tech-tag:hover::before {
    width: 200%;
    height: 200%;
}

.tech-tag:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
    color: #fff;
}

/* Services Grid in Panel - High Tech */
.panel-body .services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-item {
    padding: 1.8rem;
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00f5ff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-item:hover {
    border-color: rgba(0, 245, 255, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 245, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: #00f5ff;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover .service-icon {
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.5);
    border-color: #00f5ff;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 600;
}

.service-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-item .service-features {
    list-style: none;
    padding: 1rem 0 0 0;
    margin: 0;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.service-item .service-features li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.service-item .service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: #00f5ff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    flex-shrink: 0;
}

.service-item:hover .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

/* Solutions Triangle Flow Layout */
.solution-demo .triangle-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.input-nodes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.input-node {
    flex: 1;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.input-node:hover {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(0, 245, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 245, 255, 0.15);
}

.input-node .node-icon,
.output-node .node-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 2px solid rgba(0, 245, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: all 0.3s ease;
}

.input-node:hover .node-icon {
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.6);
    border-color: #00f5ff;
}

.input-node .node-icon i,
.output-node .node-icon i {
    font-size: 1.2rem;
    color: #00f5ff;
}

.output-node .node-icon.large {
    width: 70px;
    height: 70px;
}

.output-node .node-icon.large i {
    font-size: 1.8rem;
}

.input-node h3,
.output-node h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.input-node p,
.output-node p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Connector arrows */
.connector-arrow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.5), #00f5ff);
}

.connector-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #00f5ff;
}

/* Output node */
.output-node {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    text-align: center;
    margin-top: 1rem;
    transition: all 0.4s ease;
}

.output-node:hover {
    border-color: #00f5ff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 245, 255, 0.25);
}

.output-node:hover .node-icon {
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.7);
    border-color: #00f5ff;
}

/* Projects Grid in Panel - High Tech */
.projects-grid {
    display: grid;
    gap: 1.5rem;
}

.project-card {
    padding: 1.8rem;
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00f5ff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    border-color: rgba(0, 245, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 245, 255, 0.15);
}

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

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.project-tag {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.15) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #00f5ff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-card > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-metrics {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

.project-metrics .metric {
    text-align: center;
    flex: 1;
    padding: 0.8rem;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-card:hover .project-metrics .metric {
    background: rgba(0, 245, 255, 0.1);
}

.project-metrics .metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00f5ff 0%, #00a8b5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-metrics .metric-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

/* Contact Panel Styles - High Tech */
.panel-body .contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.panel-body .contact-form {
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.03) 0%, rgba(0, 0, 0, 0.2) 100%);
    padding: 2rem;
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 20px;
}

.panel-body .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.panel-body .form-group input,
.panel-body .form-group textarea {
    width: 100%;
    padding: 1.2rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.panel-body .form-group input:focus,
.panel-body .form-group textarea:focus {
    outline: none;
    border-color: #00f5ff;
    background: rgba(0, 245, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2), inset 0 0 20px rgba(0, 245, 255, 0.05);
}

.panel-body .form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.95rem;
}

.panel-body .form-group input:focus + label,
.panel-body .form-group input:valid + label,
.panel-body .form-group textarea:focus + label,
.panel-body .form-group textarea:valid + label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: #00f5ff;
    background: linear-gradient(180deg, #0a0a0a 50%, transparent 50%);
    padding: 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.panel-body .submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #00f5ff 0%, #00a8b5 100%);
    border: none;
    border-radius: 12px;
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.panel-body .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.panel-body .submit-btn:hover::before {
    left: 100%;
}

.panel-body .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4), 0 0 20px rgba(0, 245, 255, 0.3);
}

.panel-body .contact-info {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(0, 245, 255, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 20px;
}

.panel-body .contact-info .contact-item {
    flex: 1;
}

.panel-body .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.panel-body .contact-item:hover {
    background: rgba(0, 245, 255, 0.05);
}

.panel-body .contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2) 0%, rgba(0, 245, 255, 0.05) 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f5ff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.panel-body .contact-item:hover i {
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.panel-body .contact-item h4 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.panel-body .contact-item p {
    color: #fff;
    font-size: 0.95rem;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-content .logo h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.loading-content .logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.loading-animation {
    margin-top: 3rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.loading-dots .dot {
    width: 8px;
    height: 8px;
    background: #00f5ff;
    border-radius: 50%;
    animation: loadingPulse 1.4s ease-in-out infinite;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes loadingPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1200px) {
    #nav-funnel { transform: translate(-50%, calc(-50% - 170px)); }
    #nav-about { transform: translate(calc(-50% - 200px), -50%); }
    #nav-services { transform: translate(calc(-50% - 130px), calc(-50% + 150px)); }
    #nav-solutions { transform: translate(calc(-50% + 200px), -50%); }
    #nav-projects { transform: translate(calc(-50% + 130px), calc(-50% + 150px)); }
    #nav-contact { transform: translate(-50%, calc(-50% + 220px)); }

    .content-panel {
        width: 420px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem 1.5rem;
    }

    .nav-brand h1 {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    .nav-point-inner {
        width: 14px;
        height: 14px;
    }

    .nav-label {
        font-size: 0.7rem;
    }

    .content-panel {
        width: 95vw;
        max-height: 70vh;
    }

    #nav-funnel { transform: translate(-50%, calc(-50% - 130px)); }
    #nav-about { transform: translate(calc(-50% - 130px), -50%); }
    #nav-services { transform: translate(calc(-50% - 90px), calc(-50% + 120px)); }
    #nav-solutions { transform: translate(calc(-50% + 130px), -50%); }
    #nav-projects { transform: translate(calc(-50% + 90px), calc(-50% + 120px)); }
    #nav-contact { transform: translate(-50%, calc(-50% + 180px)); }

    .panel-content {
        padding: 1.5rem;
    }
}

/* ==================== */
/* END GLOBE STYLES     */
/* ==================== */

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Custom Cursor */
#cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00f5ff, #ff4081, #9c27b0, #3f51b5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    opacity: 0;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    animation: cursorPulse 2s ease-in-out infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h1 {
    color: #00d4ff;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #ff4081, #9c27b0, #3f51b5);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00d4ff;
}

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

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.8) 25%, rgba(240, 147, 251, 0.9) 50%, rgba(245, 87, 108, 0.8) 75%, rgba(79, 172, 254, 0.9) 100%);
    backdrop-filter: blur(10px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 245, 255, 0.6), rgba(255, 64, 129, 0.6), rgba(156, 39, 176, 0.6));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
    filter: blur(1px);
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

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

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

.title-line.highlight {
    background: linear-gradient(45deg, #00f5ff, #ff4081, #9c27b0, #3f51b5, #00e676);
    background-size: 400% 400%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s ease infinite, slideInUp 0.8s ease 0.6s forwards;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

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

.cta-primary {
    background: linear-gradient(45deg, #00f5ff, #ff4081, #9c27b0);
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5), 0 0 30px rgba(255, 64, 129, 0.3);
    background: linear-gradient(45deg, #ff4081, #9c27b0, #00f5ff);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #00f5ff;
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.3);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visualization {
    width: 400px;
    height: 400px;
    position: relative;
}

.neural-network {
    width: 100%;
    height: 100%;
    position: relative;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00f5ff, #ff4081, #9c27b0, #3f51b5);
    border-radius: 50%;
    opacity: 0.9;
    animation: aiPulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes aiPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 245, 255, 0.6), 0 0 60px rgba(255, 64, 129, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 50px rgba(0, 245, 255, 0.8), 0 0 80px rgba(255, 64, 129, 0.6);
    }
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: flow 3s linear infinite;
}

.node-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node-2 { top: 30%; left: 20%; animation-delay: 0.4s; }
.node-3 { top: 30%; right: 20%; animation-delay: 0.8s; }
.node-4 { bottom: 30%; left: 20%; animation-delay: 1.2s; }
.node-5 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1.6s; }

/* Enhanced Neural Network Connections */
.connection-1 { top: 15%; left: 45%; width: 100px; transform: rotate(45deg); }
.connection-2 { top: 15%; left: 55%; width: 100px; transform: rotate(-45deg); }
.connection-3 { bottom: 35%; left: 35%; width: 120px; transform: rotate(-30deg); }
.connection-4 { bottom: 35%; right: 35%; width: 120px; transform: rotate(30deg); }
.connection-5 { bottom: 15%; left: 45%; width: 100px; transform: rotate(0deg); }

/* Data Particles */
.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00f5ff, #ff4081);
    border-radius: 50%;
    animation: particleFlow 4s linear infinite;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.particle:nth-child(1) { 
    top: 20%; left: 20%; 
    animation-delay: 0s;
    animation-duration: 3s;
}
.particle:nth-child(2) { 
    top: 40%; right: 20%; 
    animation-delay: 0.8s;
    animation-duration: 3.5s;
}
.particle:nth-child(3) { 
    bottom: 30%; left: 30%; 
    animation-delay: 1.6s;
    animation-duration: 4s;
}
.particle:nth-child(4) { 
    bottom: 40%; right: 30%; 
    animation-delay: 2.4s;
    animation-duration: 2.8s;
}
.particle:nth-child(5) { 
    top: 60%; left: 50%; 
    animation-delay: 3.2s;
    animation-duration: 3.2s;
}

@keyframes particleFlow {
    0% { 
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translate(200px, -100px) scale(0);
        opacity: 0;
    }
}

/* AI Stats */
.ai-stats {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.ai-metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #ff4081);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Node Tooltips */
.node[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.connection {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f5ff, #ff4081, #9c27b0, transparent);
    animation: energyFlow 2s linear infinite;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.7);
}

@keyframes energyFlow {
    0% { 
        opacity: 0;
        background: linear-gradient(90deg, transparent, #00f5ff, transparent);
    }
    25% {
        opacity: 1;
        background: linear-gradient(90deg, transparent, #ff4081, transparent);
    }
    50% { 
        opacity: 1;
        background: linear-gradient(90deg, transparent, #9c27b0, transparent);
    }
    75% {
        opacity: 1;
        background: linear-gradient(90deg, transparent, #3f51b5, transparent);
    }
    100% { 
        opacity: 0;
        background: linear-gradient(90deg, transparent, #00f5ff, transparent);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #00f5ff, #ff4081);
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ff4081;
    border-bottom: 2px solid #ff4081;
    transform: rotate(45deg);
    filter: drop-shadow(0 0 5px rgba(255, 64, 129, 0.7));
}

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

/* Services Section */
.services {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 245, 255, 0.3), 0 0 40px rgba(255, 64, 129, 0.2);
    border-color: rgba(0, 245, 255, 0.5);
}

/* Removed conflicting service-icon rule that was hiding Font Awesome icons */

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature {
    background: rgba(0, 245, 255, 0.3);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 245, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 245, 255, 0.2);
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.solutions-interactive {
    margin-top: 3rem;
}

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

.process-step {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

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

.step-number {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #ff4081);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.step-visual {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-flow, .brain-animation, .automation-gears {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00f5ff, #ff4081, #9c27b0, #3f51b5);
    border-radius: 50%;
    animation: aiRotate 3s linear infinite;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes aiRotate {
    0% { 
        transform: rotate(0deg) scale(1);
        box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 0 30px rgba(255, 64, 129, 0.6);
    }
    50% {
        transform: rotate(180deg) scale(1);
        box-shadow: 0 0 30px rgba(156, 39, 176, 0.6);
    }
    75% {
        transform: rotate(270deg) scale(1.1);
        box-shadow: 0 0 30px rgba(63, 81, 181, 0.6);
    }
    100% { 
        transform: rotate(360deg) scale(1);
        box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00f5ff, #ff4081, #9c27b0, #3f51b5);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s ease infinite;
}

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

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00f5ff, #ff4081);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tech-item {
    background: rgba(0, 245, 255, 0.2);
    border: 2px solid rgba(0, 245, 255, 0.5);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 245, 255, 0.2);
}

.tech-item:hover {
    background: linear-gradient(45deg, #00f5ff, #ff4081);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 245, 255, 0.4), 0 0 30px rgba(255, 64, 129, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00f5ff;
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.4), 0 0 50px rgba(255, 64, 129, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #00d4ff;
    background: #0a0a0a;
    padding: 0 0.5rem;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #ff6b6b);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #00d4ff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: #00d4ff;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

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

.link-group h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #00d4ff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
    }
}

/* ==================== */
/* LEGAL FOOTER TOGGLE  */
/* ==================== */

.legal-toggle {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.legal-toggle:hover {
    opacity: 0.8;
}

.legal-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: all 0.3s ease;
}

.legal-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.legal-toggle.active span:nth-child(2) {
    opacity: 0;
}

.legal-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.legal-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    max-height: 70vh;
    overflow-y: auto;
}

.legal-panel.active {
    transform: translateY(0);
}

.legal-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-panel-header h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.legal-close:hover {
    color: #fff;
}

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

.legal-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #00f5ff;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-section p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.legal-section p strong {
    color: #fff;
}

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

.legal-panel-footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .legal-panel-content {
        grid-template-columns: 1fr;
    }
}