/* Base Styles & Variables */
:root {
    --bg-color: #050510;
    --text-main: #ffffff;
    --text-muted: #a0a0c0;
    --primary: #00f0ff;
    --secondary: #7000ff;
    --accent: #ff0055;
    --card-bg: rgba(20, 20, 35, 0.6);
    --nav-bg: rgba(5, 5, 16, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* For custom cursor */
}

html {
    scroll-behavior: smooth;
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, .logo, .counter {
    font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    transition: width 0.1s;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 999999; /* Highest priority */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

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

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cyber-loader {
    width: 100px;
    height: 100px;
    position: relative;
}

.cyber-loader svg {
    width: 100%;
    height: 100%;
    animation: rotate 4s linear infinite;
}

.cyber-loader circle {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transform-origin: center;
}

.cyber-loader circle:nth-child(1) {
    stroke: var(--primary);
    stroke-dasharray: 100 200;
    animation: spin 2s ease-in-out infinite;
}

.cyber-loader circle:nth-child(2) {
    stroke: var(--secondary);
    stroke-dasharray: 150 150;
    animation: spin 3s ease-in-out infinite reverse;
}

.cyber-loader circle:nth-child(3) {
    stroke: var(--accent);
    stroke-dasharray: 50 100;
    animation: spin 1.5s ease-in-out infinite;
}

@keyframes spin {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 300; }
}

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

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

.loading-text .glitch {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
    letter-spacing: 5px;
}

.loading-text .glitch::before,
.loading-text .glitch::after {
    background: transparent;
}

.loading-bar {
    width: 250px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary);
    animation: loadProgress 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    20% { width: 30%; }
    50% { width: 60%; }
    80% { width: 90%; }
    100% { width: 100%; }
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s;
}

.cursor.hover {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent);
    background: rgba(255, 0, 85, 0.1);
}

/* Typography & Effects */
.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-padding {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
}

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

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.glow-btn:hover::before {
    left: 100%;
}

.glow-btn:hover {
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--secondary);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 15px 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px; /* Adjust height as needed based on the actual logo image */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 60px; /* Increased gap from 30px to 60px */
}

.nav-links li a {
    font-size: 1.1rem; /* Slightly larger text to balance the wider gap */
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--primary);
}

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

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

/* Holographic Floating Menu - Fan Style */
.nav-links {
    display: flex;
    gap: 60px; /* Make sure this matches the previous declaration */
    align-items: center; /* Ensure alignment for pseudo elements */
}

.nav-links > li {
    position: relative;
    /* Removed perspective as we are doing a 2D fan out */
}

/* The invisible bridge to prevent mouseout */
.nav-links > li::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -400px;
    width: 900px;
    height: 200px; /* Big enough to cover the gap to the arc */
    background: transparent;
    z-index: 99;
    display: none;
}

.nav-links > li:hover::before {
    display: block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 30px); /* Increased gap for arc effect */
    left: 50%;
    /* We handle translation on individual items now, container just holds them */
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    transition: visibility 0.8s step-end; /* Keep visible while children animate out */
}

.nav-links > li:hover .dropdown-menu {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s step-start; /* Show instantly */
}

.dropdown-menu li {
    list-style: none;
    position: absolute; /* Absolute positioning for fan layout */
    top: 0;
    left: 50%;
    /* Start state: collapsed at the center apex (below the text) */
    transform: translate(-50%, -10px) rotate(0deg) scale(0.2);
    transform-origin: center center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappier spring effect */
}

/* End state: fanned out in an arc (smile shape) centered perfectly */
.nav-links > li:hover .dropdown-menu li:nth-child(1) {
    transform: translate(calc(-50% - 410px), 15px) rotate(25deg) scale(1);
    opacity: 1;
    transition-delay: 0.1s;
}

.nav-links > li:hover .dropdown-menu li:nth-child(2) {
    transform: translate(calc(-50% - 250px), 75px) rotate(15deg) scale(1);
    opacity: 1;
    transition-delay: 0.15s;
}

.nav-links > li:hover .dropdown-menu li:nth-child(3) {
    transform: translate(calc(-50% - 85px), 110px) rotate(5deg) scale(1);
    opacity: 1;
    transition-delay: 0.2s;
}

.nav-links > li:hover .dropdown-menu li:nth-child(4) {
    transform: translate(calc(-50% + 85px), 110px) rotate(-5deg) scale(1);
    opacity: 1;
    transition-delay: 0.25s;
}

.nav-links > li:hover .dropdown-menu li:nth-child(5) {
    transform: translate(calc(-50% + 250px), 75px) rotate(-15deg) scale(1);
    opacity: 1;
    transition-delay: 0.3s;
}

.nav-links > li:hover .dropdown-menu li:nth-child(6) {
    transform: translate(calc(-50% + 410px), 15px) rotate(-25deg) scale(1);
    opacity: 1;
    transition-delay: 0.35s;
}

/* Reverse transition logic (when hovering off) */
/* The base `.dropdown-menu li` defines the state it returns to */
.dropdown-menu li:nth-child(6) { transition-delay: 0.0s; }
.dropdown-menu li:nth-child(5) { transition-delay: 0.05s; }
.dropdown-menu li:nth-child(4) { transition-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { transition-delay: 0.15s; }
.dropdown-menu li:nth-child(2) { transition-delay: 0.2s; }
.dropdown-menu li:nth-child(1) { transition-delay: 0.25s; }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--text-muted) !important;
    font-size: 0.95rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px !important;
    position: relative;
    background: rgba(5, 5, 16, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 30px; /* Pill shape for tech feel */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a i {
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: #fff !important;
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: translateY(-5px);
}

.dropdown-menu li a:hover i {
    opacity: 1;
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary);
    transform: scale(1.2);
}

/* Hover target line (cool tech line connecting to menu) */
.nav-links > li:has(.dropdown-menu) > a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary), transparent);
    transition: height 0.3s ease;
    opacity: 0;
}

.nav-links > li:has(.dropdown-menu):hover > a::before {
    height: 40px;
    opacity: 1;
}

/* We removed the glowing dot indicator as it conflicts with pill shape */

.nav-links li > a > i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 6px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: rgba(255, 255, 255, 0.5);
}

.nav-links li:hover > a > i.fa-chevron-down {
    transform: rotate(180deg) scale(1.2);
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

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

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Glitch Effect */
.glitch {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    color: white;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 44px, 0); }
    20% { clip: rect(66px, 9999px, 88px, 0); }
    40% { clip: rect(22px, 9999px, 11px, 0); }
    60% { clip: rect(77px, 9999px, 33px, 0); }
    80% { clip: rect(44px, 9999px, 55px, 0); }
    100% { clip: rect(99px, 9999px, 22px, 0); }
}

.typing-text {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    height: 30px;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--primary);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
    z-index: 1;
}

.bounce {
    animation: bounce 2s infinite;
}

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

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

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(112,0,255,0.4) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.5s;
}

.service-card:hover .card-glow {
    transform: scale(2);
    background: radial-gradient(circle, rgba(0,240,255,0.3) 0%, transparent 70%);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transform: translateZ(30px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transform: translateZ(20px);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
}

.service-features li {
    margin-bottom: 10px;
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateZ(5px);
}

.service-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Stats */
.stats {
    position: relative;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') center/cover fixed;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.85);
}

.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--primary));
}

.stat-item .counter {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item .counter-plus::after {
    content: '+';
}

.stat-item .counter-percent::after {
    content: '%';
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-box {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    z-index: -1;
    border-radius: 22px;
    background-size: 400%;
    animation: border-glow 10s infinite;
    opacity: 0.3;
}

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

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

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: none;
    color: #fff;
    padding: 15px;
    font-size: 1rem;
    outline: none;
    border-radius: 8px;
    font-family: inherit;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.4s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    cursor: none; /* override custom cursor issue over button */
}

/* Footer */
footer {
    background: #020205;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-logo-img {
    height: 35px; /* Slightly larger for stacked layout */
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-info p:last-child {
    margin-bottom: 0;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-5px);
    filter: drop-shadow(0 0 10px var(--primary));
}

.footer-copyright p {
    color: rgba(160, 160, 192, 0.5);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* Business Showcase */
.biz-showcase {
    position: relative;
    background: #050510;
    overflow: hidden;
}

.biz-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 60px;
}

/* Individual Panel */
.biz-panel {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 450px;
}
.biz-panel.reverse {
    flex-direction: row-reverse;
}

.biz-image {
    width: 65%;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}
.biz-panel.reverse .biz-image {
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
}

.biz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
}
.biz-panel:hover .biz-image img {
    transform: scale(1.08);
    opacity: 1;
}

/* Sci-fi Overlay */
.hologram-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,240,255,0.2) 0%, rgba(112,0,255,0.2) 100%);
    mix-blend-mode: overlay;
    transition: opacity 0.5s;
}
.biz-panel:hover .hologram-overlay {
    opacity: 0;
}

.scanner-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary);
    opacity: 0.6;
    animation: scan 4s linear infinite;
    z-index: 5;
}
@keyframes scan {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 110%; opacity: 0; }
}

/* Content Box (Glassmorphism Overlapping) */
.biz-content {
    width: 45%;
    background: rgba(10, 10, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: absolute;
    right: 0;
    z-index: 10;
    transition: all 0.4s ease;
}
.biz-panel.reverse .biz-content {
    right: auto;
    left: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 4px solid var(--secondary);
}

.biz-panel:hover .biz-content {
    box-shadow: 0 25px 50px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}
.biz-panel.reverse:hover .biz-content {
    border-color: rgba(112, 0, 255, 0.3);
}

.biz-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    position: absolute;
    top: -30px;
    right: 30px;
    z-index: -1;
    transition: all 0.4s ease;
}
.biz-panel.reverse .biz-num {
    right: auto;
    left: 30px;
}
.biz-panel:hover .biz-num {
    color: rgba(0, 240, 255, 0.05);
    -webkit-text-stroke: 1px rgba(0, 240, 255, 0.5);
    transform: scale(1.1) translateY(-10px);
}
.biz-panel.reverse:hover .biz-num {
    color: rgba(112, 0, 255, 0.05);
    -webkit-text-stroke: 1px rgba(112, 0, 255, 0.5);
}

.biz-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    position: relative;
    display: inline-block;
}
.biz-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.5s ease;
}
.biz-panel:hover .biz-content h3::after {
    width: 100%;
}
.biz-panel.reverse .biz-content h3 {
    text-shadow: 0 0 10px rgba(112, 0, 255, 0.2);
}
.biz-panel.reverse .biz-content h3::after {
    background: var(--secondary);
}

.biz-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
    min-height: 80px; /* Prevent layout shift during typing */
}

/* Typing Cursor for Business Desc */
.biz-typing-cursor {
    display: inline-block;
    width: 8px;
    height: 1.1rem;
    background-color: var(--primary);
    color: transparent;
    vertical-align: middle;
    margin-left: 2px;
    animation: blinkCursor 0.8s step-end infinite;
}
.biz-panel.reverse .biz-typing-cursor {
    background-color: var(--secondary);
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.biz-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.biz-tags li {
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.biz-tags li:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}
.biz-panel.reverse .biz-tags li:hover {
    background: rgba(112, 0, 255, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 15px rgba(112, 0, 255, 0.2);
}

/* Combo Block for the remaining 3 */
.biz-panel-combo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.combo-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}
.combo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.5s, transform 3s ease;
}
.biz-panel-combo:hover .combo-bg img {
    opacity: 0.6;
    transform: scale(1.05);
}
.combo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(5,5,16,1) 10%, rgba(5,5,16,0.6) 50%, transparent 100%);
    z-index: 1;
}
.cyber-grid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    opacity: 0.4;
    transform: perspective(600px) rotateX(60deg);
    transform-origin: bottom;
    animation: gridMove 10s linear infinite;
}
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

.combo-content-wrap {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
}

.combo-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.combo-num {
    top: -50px;
    right: 50%;
    transform: translateX(50%);
    font-size: 6rem;
    opacity: 0.5;
}
.combo-header h3 {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.combo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.c-card {
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 4px solid transparent;
    text-align: center;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}
.c-card i {
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
    transition: all 0.4s;
    transform: translateZ(30px);
}
.c-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    transform: translateZ(20px);
}
.c-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transform: translateZ(10px);
}

.c-card:nth-child(1):hover { border-top-color: var(--primary); }
.c-card:nth-child(2):hover { border-top-color: #00ff88; }
.c-card:nth-child(3):hover { border-top-color: var(--secondary); }

.c-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}
.c-card:nth-child(1):hover { box-shadow: 0 15px 35px rgba(0, 240, 255, 0.1); }
.c-card:nth-child(2):hover { box-shadow: 0 15px 35px rgba(0, 255, 136, 0.1); }
.c-card:nth-child(3):hover { box-shadow: 0 15px 35px rgba(112, 0, 255, 0.1); }

.c-card:hover i {
    color: #fff;
}
.c-card:nth-child(1):hover i { color: var(--primary); text-shadow: 0 0 15px var(--primary); }
.c-card:nth-child(2):hover i { color: #00ff88; text-shadow: 0 0 15px #00ff88; }
.c-card:nth-child(3):hover i { color: var(--secondary); text-shadow: 0 0 15px var(--secondary); }

/* Responsive */
@media (max-width: 992px) {
    .biz-panel, .biz-panel.reverse {
        flex-direction: column;
    }
    .biz-image {
        width: 100%;
        height: 300px;
        clip-path: none;
    }
    .biz-panel.reverse .biz-image {
        clip-path: none;
    }
    .biz-content, .biz-panel.reverse .biz-content {
        width: 90%;
        position: relative;
        transform: translateY(-50px);
    }
    .combo-cards {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .glitch {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-box {
        padding: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Custom AOS Animations for larger fly-in effect */
[data-aos="fade-right-large"] {
    transform: translate3d(-100vw, 0, 0);
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="fade-right-large"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

[data-aos="fade-left-large"] {
    transform: translate3d(100vw, 0, 0);
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="fade-left-large"].aos-animate {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}