/* Terminal Theme Variables */
     :root {
        /* Light Theme (Default in original) */
        --light-primary: #4361ee;
        --light-primary-light: #4895ef;
        --light-secondary: #3f37c9;
        --light-accent: #4cc9f0;
        --light-text: #1d1b1b;
        --light-background: #ffffff;
        --light-card-bg: #ffffff;
        --light-navbar: rgba(255, 255, 255, 0.95);
        --light-section-bg: #f8f9fa;
        --light-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
        
        /* Terminal Theme (New Default) */
        --dark-primary: #4cc9f0;
        --dark-primary-light: #4361ee;
        --dark-secondary: #3a0ca3;
        --dark-accent: #7209b7;
        --dark-text: #e0e0e0;
        --dark-background: #0a1929;
        --dark-card-bg: #151f28;
        --dark-navbar: rgba(10, 25, 41, 0.95);
        --dark-section-bg: #0f1923;
        --dark-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        
        /* Active Theme (Default to Terminal/Dark) */
        --primary: var(--dark-primary);
        --primary-light: var(--dark-primary-light);
        --secondary: var(--dark-secondary);
        --accent: var(--dark-accent);
        --text: var(--dark-text);
        --background: var(--dark-background);
        --card-bg: var(--dark-card-bg);
        --navbar-bg: var(--dark-navbar);
        --section-bg: var(--dark-section-bg);
        --shadow: var(--dark-shadow);
    }
    
    /* Theme overrides for the main elements */
    body {
        background-color: var(--background);
        color: var(--text);
    }
    
    .navbar {
        background: var(--navbar-bg) !important;
    }
    
    .hero {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        padding: 120px 0;
    }
    
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .grid-container {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: 
            linear-gradient(rgba(76, 201, 240, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(76, 201, 240, 0.1) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: gridMove 20s linear infinite;
        opacity: 0.5;
    }
    
    .particles-container {
        position: absolute;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(76, 201, 240, 0.1) 0%, transparent 70%);
    }
    
    .hero-content-wrapper {
        position: relative;
        z-index: 2;
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(76, 201, 240, 0.1);
        padding: 8px 16px;
        border-radius: 50px;
        margin-bottom: 24px;
    }
    
    .pulse {
        width: 10px;
        height: 10px;
        background: #4cc9f0;
        border-radius: 50%;
        margin-right: 12px;
        position: relative;
        animation: pulse 2s infinite;
    }
    
    .badge-text {
        color: #4cc9f0;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .hero-title {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 24px;
        color: var(--text);
    }
    
    .gradient-text {
        background: linear-gradient(135deg, #4cc9f0, #4361ee);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
    }
    
    .title-decoration {
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #4cc9f0, transparent);
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 32px;
        color: var(--text);
    }
    
    .typing-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        height: 30px;
    }
    
    .dynamic-text {
        color: #4cc9f0;
        font-weight: 600;
        min-width: 200px;
    }
    
    .cursor {
        width: 2px;
        height: 24px;
        background: #4cc9f0;
        animation: blink 1s infinite;
    }
    
    .hero-cta {
        display: flex;
        gap: 20px;
        margin-bottom: 48px;
    }
    
    .cta-primary, .cta-secondary {
        padding: 12px 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .cta-primary {
        background: linear-gradient(135deg, #4cc9f0, #4361ee);
        color: white;
    }
    
    .cta-secondary {
        background: rgba(76, 201, 240, 0.1);
        color: #4cc9f0;
        border: 1px solid rgba(76, 201, 240, 0.3);
    }
    
    .hero-stats {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: #4cc9f0;
        font-family: 'Orbitron', sans-serif;
    }
    
    .stat-label {
        color: var(--text);
        font-size: 0.9rem;
        opacity: 0.8;
    }
    
    .stat-divider {
        width: 1px;
        height: 40px;
        background: rgba(76, 201, 240, 0.2);
    }
    
    .code-terminal {
        background: rgba(18, 24, 32, 0.8);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(76, 201, 240, 0.2);
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .floating-techs {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    
    .tech-icon {
        position: absolute;
        width: 50px;
        height: 50px;
        background: rgba(18, 24, 32, 0.8);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #4cc9f0;
        animation: float 6s infinite ease-in-out;
        animation-delay: var(--delay);
    }
    
    @keyframes gridMove {
        0% { transform: translateY(0); }
        100% { transform: translateY(50px); }
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(76, 201, 240, 0); }
        100% { box-shadow: 0 0 0 0 rgba(76, 201, 240, 0); }
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(10px, -10px); }
    }

    .services, .contact {
        background: var(--section-bg);
        color: var(--text);
    }
    
    .portfolio {
        background: var(--section-bg);
        color: var(--text);
    }
    
    .service-card {
        background: var(--card-bg);
        color: var(--text);
    }
    
    .section-title h2 {
        color: var(--text);
    }
    
    .section-title p {
        color: var(--text);
        opacity: 0.7;
    }
    
    /* Theme Switcher Styles */
    .theme-switcher {
        position: relative;
        display: flex;
        align-items: center;
        margin-left: 20px;
    }
    
    .theme-toggle-btn {
        background: none;
        border: none;
        color: var(--primary);
        font-size: 1.2rem;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .theme-toggle-btn:hover {
        background: rgba(76, 201, 240, 0.15);
        transform: translateY(-2px);
    }
    
    .theme-toggle-btn i {
        transition: all 0.3s ease;
    }
    
    /* Fix contact form for dark theme */
    .contact-form {
        background: var(--card-bg);
    }
    
    .form-control {
        background-color: var(--background);
        color: var(--text);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    /* Portfolio item hover states */
    .portfolio-item {
        background-color: var(--card-bg);
    }

    /* Additional terminal-inspired styles */
    .terminal-style-section {
        border: 1px solid rgba(76, 201, 240, 0.3);
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 40px;
        background: var(--card-bg);
    }
    
    .section-header-terminal {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(76, 201, 240, 0.2);
        padding-bottom: 10px;
    }
    
    .section-header-terminal .section-title {
        margin-bottom: 0;
    }
    
    .section-header-terminal::before {
        content: '>>';
        color: var(--primary);
        font-family: 'Monaco', 'Consolas', monospace;
        margin-right: 10px;
        font-weight: bold;
    }
    
    :root {
        --primary: #4361ee;
        --primary-light: #4895ef;
        --secondary: #3f37c9;
        --accent: #4cc9f0;
        --light: #ffffff;
        --dark: #1d1b1b;
        --gray: #6c757d;
        --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        --shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body {
        background-color: var(--light);
        color: var(--dark);
    }

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

    /* Navbar Styles */
    .navbar {
        background: #0a1929 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        padding: 0;
        height: 70px;
        position: fixed;
        z-index: 1000;
        width: 100%;
        border-bottom: 1px solid rgba(76, 201, 240, 0.2);
    }

    .navbar .container {
        height: 100%;
    }

    .navbar-brand {
        font-family: 'Orbitron', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--light) !important;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        padding-left: 40px;
    }

    .navbar-brand::before {
        content: '<';
        position: absolute;
        left: 0;
        top: 0;
        color: #4cc9f0;
        font-size: 1.8rem;
        opacity: 0.8;
        font-weight: 400;
        -webkit-text-fill-color: #4cc9f0;
    }

    .navbar-brand::after {
        content: '/>';
        position: absolute;
        right: -20px;
        top: 0;
        color: #4cc9f0;
        font-size: 1.8rem;
        opacity: 0.8;
        font-weight: 400;
        -webkit-text-fill-color: #4cc9f0;
        animation: blink 1.5s infinite;
    }

    .nav-wrapper {
        display: flex;
        align-items: center;
        height: 100%;
        gap: 40px;
    }

    .navbar-links {
        display: flex;
        align-items: center;
        background: rgba(12, 33, 57, 0.5);
        border-radius: 30px;
        padding: 5px;
        margin-left: auto;
    }

    .navbar-links a {
        color: var(--light);
        padding: 8px 16px;
        margin: 0 3px;
        border-radius: 20px;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        font-weight: 600;
    }

    .navbar-links a:hover, 
    .navbar-links a.active {
        background: linear-gradient(90deg, rgba(67, 97, 238, 0.15), rgba(76, 201, 240, 0.15));
        color: #4cc9f0;
        box-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
    }

    .navbar-links a.active::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        background: #4cc9f0;
        border-radius: 50%;
        box-shadow: 0 0 10px #4cc9f0;
    }

    .cta-button {
        background: linear-gradient(45deg, #4361ee, #4cc9f0);
        border: none;
        color: white;
        padding: 10px 24px;
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
        box-shadow: 0 4px 20px rgba(76, 201, 240, 0.3);
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(76, 201, 240, 0.5);
    }

    /* Hero Section */
    .hero::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(rgba(76, 201, 240, 0.1) 2px, transparent 2px),
            radial-gradient(rgba(67, 97, 238, 0.1) 2px, transparent 2px);
        background-size: 40px 40px, 30px 30px;
        background-position: 0 0, 20px 20px;
        animation: moveBackground 20s linear infinite;
    }

    @keyframes moveBackground {
        0% { background-position: 0 0, 20px 20px; }
        100% { background-position: 100px 100px, 120px 120px; }
    }

    .hero-content-wrapper {
        position: relative;
        z-index: 2;
        width: 100%;
        padding-top: 100px;
    }

    .hero-row {
        display: flex;
        align-items: center;
    }

    .terminal-window {
        background: #151f28;
        border-radius: 10px;
        border: 1px solid rgba(76, 201, 240, 0.3);
        width: 100%;
        height: 360px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
    }

    .terminal-window.minimized {
        height: 40px;
        overflow: hidden;
    }

    .terminal-window.maximized {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80vh;
        z-index: 1000;
    }

    .terminal-header {
        background: #0f1923;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(76, 201, 240, 0.2);
    }

    .terminal-buttons {
        display: flex;
        gap: 8px;
    }

    .terminal-button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .terminal-button:hover {
        transform: scale(1.1);
    }

    .terminal-button.red { background: #ff5f57; }
    .terminal-button.yellow { background: #febc2e; }
    .terminal-button.green { background: #28c840; }

    .terminal-title {
        margin-left: auto;
        margin-right: auto;
        color: #7a8998;
        font-size: 0.8rem;
        font-family: monospace;
    }

    .terminal-body {
        padding: 15px;
        height: calc(100% - 40px);
        overflow: auto;
        font-family: 'Monaco', 'Consolas', monospace;
        font-size: 0.9rem;
        line-height: 1.6;
        color: #e0e0e0;
    }

    .command-line {
        display: flex;
        margin-bottom: 10px;
    }

    .command-prompt {
        color: #4cc9f0;
        margin-right: 10px;
    }

    .command-text {
        color: #b3e5fc;
    }

    .command-output {
        margin-left: 20px;
        margin-bottom: 15px;
        color: #a3a3a3;
    }

    .typing-cursor {
        display: inline-block;
        width: 2px;
        height: 1.2em;
        background: #4cc9f0;
        margin-left: 5px;
        vertical-align: middle;
        animation: blink 1s infinite;
    }

    .code-snippet {
        background: #1f2937;
        border-radius: 5px;
        padding: 10px;
        margin: 10px 0;
        border-left: 3px solid #4cc9f0;
        font-size: 0.85rem;
        overflow-x: auto;
    }

    .hero-left {
        padding-right: 50px;
    }

    .hero-left h1 {
        font-family: 'Orbitron', sans-serif;
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #fff;
        position: relative;
    }

    .highlight {
        color: #4cc9f0;
        position: relative;
        display: inline-block;
    }

    .highlight::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 10px;
        bottom: 5px;
        left: 0;
        background: rgba(76, 201, 240, 0.15);
        z-index: -1;
    }

    .hero-subtitle {
        color: #a3a3a3;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
    }

    .btn-main {
        background: linear-gradient(45deg, #4361ee, #4cc9f0);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 30px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .btn-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, #4cc9f0, #4361ee);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-main:hover::before {
        opacity: 1;
    }

    .btn-main:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(76, 201, 240, 0.4);
    }

    .btn-outline {
        background: transparent;
        color: #4cc9f0;
        border: 2px solid #4cc9f0;
        padding: 13px 28px;
        border-radius: 30px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .btn-outline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: rgba(76, 201, 240, 0.1);
        z-index: -1;
        transition: width 0.3s ease;
    }

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

    .btn-outline:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(76, 201, 240, 0.2);
    }

    .tech-badges {
        display: flex;
        gap: 15px;
        margin-top: 40px;
    }

    .tech-badge {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .tech-badge:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
    }

    .tech-badge img {
        width: 30px;
        height: auto;
    }

    .cyber-globe {
        position: relative;
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .globe-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: radial-gradient(circle, #1a3753 0%, #0a1929 70%);
        box-shadow: 0 0 50px rgba(76, 201, 240, 0.3);
    }

    .globe-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-image: 
            linear-gradient(rgba(76, 201, 240, 0.1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(76, 201, 240, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        animation: rotateGlobe 30s linear infinite;
    }

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

    .connection-points {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
    }

    .connection-point {
        position: absolute;
        width: 6px;
        height: 6px;
        background: #4cc9f0;
        border-radius: 50%;
        box-shadow: 0 0 10px #4cc9f0;
        animation: pulse 2s infinite;
    }

    .connection-line {
        position: absolute;
        height: 1px;
        background: linear-gradient(90deg, rgba(76, 201, 240, 0.7), transparent);
        transform-origin: left center;
    }

    .floating-badges {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .float-badge {
        position: absolute;
        width: 40px;
        height: 40px;
        background: rgba(26, 55, 83, 0.8);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        animation: floatBadge 6s ease-in-out infinite;
    }

    .float-badge img {
        width: 25px;
        height: 25px;
        object-fit: contain;
    }

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

    /* Flying code */
    .flying-code {
        position: absolute;
        font-family: 'Consolas', monospace;
        opacity: 0.4;
        font-size: 14px;
        white-space: nowrap;
        animation: flyCode 15s linear infinite;
        color: #ffeb3b; /* Yellow base color */
        text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
    }

    /* Add variation to flying code colors */
    .flying-code:nth-child(2n) {
        color: #ff5252; /* Red variation */
        text-shadow: 0 0 5px rgba(255, 82, 82, 0.5);
    }

    .flying-code:nth-child(3n) {
        color: #69f0ae; /* Green variation */
        text-shadow: 0 0 5px rgba(105, 240, 174, 0.5);
    }

    .glass-particle {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(45deg, rgba(255, 235, 59, 0.2), rgba(255, 82, 82, 0.2), rgba(105, 240, 174, 0.2));
        backdrop-filter: blur(5px);
        animation: float-around 20s infinite linear;
        opacity: 0.3;
    }

    @keyframes flyCode {
        0% { 
            transform: translateY(100vh) translateX(-100px); 
            opacity: 0;
        }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { 
            transform: translateY(-100px) translateX(100px); 
            opacity: 0;
        }
    }

    @keyframes float-around {
        0% { transform: translate(0, 0) rotate(0deg); }
        25% { transform: translate(100px, 50px) rotate(90deg); }
        50% { transform: translate(50px, 100px) rotate(180deg); }
        75% { transform: translate(-50px, 50px) rotate(270deg); }
        100% { transform: translate(0, 0) rotate(360deg); }
    }

    /* Make sticky header properly handle scroll */
    .navbar.sticky {
        background: rgba(10, 25, 41, 0.95) !important;
    }

    /* Services Cards */
    .service-card {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: var(--gradient);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        color: white;
        font-size: 1.8rem;
    }

    /* Portfolio Items */
    .portfolio-item {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .portfolio-overlay {
        background: var(--gradient);
    }

    /* Update existing sections with new color scheme */
    .logo {
        font-family: 'Orbitron', sans-serif;
        color: var(--primary);
    }

    /* White mode overrides for team and features sections */
    .team-section, .creative-features {
        background: #ffffff !important;
        color: #1d1b1b !important;
    }

    /* Team section white mode adjustments */
    .team-section .section-title h2,
    .creative-features .section-title h2 {
        color: #1d1b1b !important;
    }

    .team-section .section-title p,
    .creative-features .section-title p {
        color: #6c757d !important;
        opacity: 1;
    }

    /* Card adjustments for white mode */
    .team-section .card-front {
        background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
        border: 1px solid rgba(76, 201, 240, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .team-section .team-info h3 {
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .team-section .team-info p {
        color: #6c757d !important;
        opacity: 1;
    }

    /* Feature cards white mode */
    .creative-features .feature-card {
        background: #ffffff;
        border: 1px solid rgba(76, 201, 240, 0.3);
        backdrop-filter: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .creative-features .code-content {
        background: #f8f9fa;
        color: #4361ee;
    }

    /* Cube face adjustments for white mode */
    .creative-features .face {
        background: rgba(76, 201, 240, 0.1);
        border: 2px solid #4cc9f0;
        color: #4361ee;
    }

    /* Update existing sections with new color scheme */
    .logo {
        font-family: 'Orbitron', sans-serif;
        color: var(--primary);
    }

    .cyber-border {
        border: 2px solid var(--primary);
        box-shadow: var(--shadow);
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(
            transparent 0%,
            rgba(0, 255, 136, 0.1) 1px,
            transparent 2px
        );
        pointer-events: none;
    }

    .hero-title {
        font-family: 'Orbitron', sans-serif;
        font-size: 4rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .text-glitch {
        animation: glitch 1s infinite;
    }

    @keyframes glitch {
        0% { transform: translate(0); }
        20% { transform: translate(-2px, 2px); }
        40% { transform: translate(-2px, -2px); }
        60% { transform: translate(2px, 2px); }
        80% { transform: translate(2px, -2px); }
        100% { transform: translate(0); }
    }

    html {
        scroll-behavior: smooth;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        transition: 0.6s;
        background: rgba(255, 255, 255, 0.01);
        backdrop-filter: blur(10px);
    }
    
    .navbar.sticky {
        padding: 0.8rem 5%;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-links {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .navbar-links a {
        position: relative;
        margin: 0 15px;
        text-decoration: none;
        color: var(--light);
        letter-spacing: 1px;
        font-weight: 500;
        transition: 0.6s;
    }
    
    .navbar-links a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }
    
    .navbar-links a:hover:after {
        width: 100%;
    }
    
    .menu-toggle {
        display: none;
        cursor: pointer;
        font-size: 1.5rem;
    }
    
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 0 5%;
        overflow: hidden;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    
    .hero-content {
        width: 50%;
        z-index: 1;
    }
    
    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark);
    }
    
    .hero-title span {
        color: var(--primary);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        color: #555;
        line-height: 1.6;
    }
    
    .cta-btn {
        display: inline-block;
        padding: 0.8rem 2rem;
        background: var(--primary);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-right: 1rem;
        box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    }
    
    .cta-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
    }
    
    .cta-btn.secondary {
        background: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
    }
    
    .hero-image {
        position: absolute;
        right: 0;
        width: 50%;
        top: 50%;
        transform: translateY(-50%);
        animation: float 6s ease-in-out infinite;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
    }
    
    @keyframes float {
        0% {
            transform: translateY(-50%) translateX(0px);
        }
        50% {
            transform: translateY(-50%) translateX(-20px);
        }
        100% {
            transform: translateY(-50%) translateX(0px);
        }
    }
    
    .services {
        padding: 8rem 5%;
        background: white;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 5rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
    }
    
    .section-title p {
        color: #777;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transform-style: preserve-3d;
        perspective: 1000px;
    }
    
    .service-card:hover {
        transform: translateY(-10px) rotateX(5deg);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 5px;
        bottom: 0;
        left: 0;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        z-index: -1;
        transition: height 0.3s ease;
    }
    
    .service-card:hover::before {
        height: 100%;
        opacity: 0.05;
    }
    
    .service-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        transform: translateZ(20px);
    }
    
    .service-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .service-desc {
        color: #777;
        line-height: 1.6;
    }
    
    .portfolio {
        padding: 8rem 5%;
        background: #f8f9fa;
    }
    
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .portfolio-item {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .portfolio-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: all 0.5s ease;
    }
    
    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(67, 97, 238, 0.9);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.5s ease;
        padding: 2rem;
    }
    
    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }
    
    .portfolio-item:hover .portfolio-img {
        transform: scale(1.1);
    }
    
    .portfolio-title {
        color: white;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }
    
    .portfolio-desc {
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }
    
    .portfolio-item:hover .portfolio-title,
    .portfolio-item:hover .portfolio-desc {
        transform: translateY(0);
    }
    
    .ai-assistant {
        padding: 8rem 5%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .ai-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }
    
    .ai-text {
        width: 50%;
    }
    
    .ai-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    
    .ai-desc {
        line-height: 1.6;
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }
    
    .ai-features {
        list-style: none;
        margin-bottom: 2rem;
    }
    
    .ai-features li {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .ai-features li i {
        margin-right: 10px;
        color: var(--success);
    }
    
    .ai-demo {
        width: 45%;
        position: relative;
    }
    
    .ai-assistant-img {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    .particle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        animation: float-particle 8s infinite ease-in-out;
    }
    
    @keyframes float-particle {
        0%, 100% {
            transform: translateY(0) translateX(0);
        }
        50% {
            transform: translateY(-20px) translateX(20px);
        }
    }
    
    .contact {
        padding: 8rem 5%;
    }
    
    .contact-container {
        display: flex;
        justify-content: space-between;
        gap: 4rem;
    }
    
    .contact-info {
        flex: 1;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        font-weight: 600;
    }
    
    .contact-details {
        list-style: none;
    }
    
    .contact-details li {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-details i {
        margin-right: 15px;
        font-size: 1.5rem;
        color: var(--primary);
    }
    
    .contact-form {
        flex: 1;
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    }
    
    .form-control::placeholder {
        color: #aaa;
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    .submit-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    }
    
    .submit-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(67, 97, 238, 0.4);
    }
    
    .footer {
        background: var(--dark);
        padding: 4rem 5% 2rem;
        color: white;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
    }
    
    .footer-desc {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
    }
    
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: var(--primary);
        transform: translateY(-5px);
    }
    
    .footer-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        color: white;
        padding-left: 5px;
    }
    
    .copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
    }
    
    @media (max-width: 991px) {
        .hero-content, .ai-text {
            width: 100%;
            text-align: center;
        }
        
        .hero-image, .ai-demo {
            position: relative;
            width: 100%;
            margin-top: 3rem;
            right: auto;
            top: auto;
            transform: none;
            animation: none;
        }
        
        .ai-content {
            flex-direction: column;
        }
        
        .contact-container {
            flex-direction: column;
        }
    }
    
    @media (max-width: 768px) {
        .navbar-links {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 2rem 0;
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            transition: 0.5s ease;
        }
        
        .navbar-links.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-links a {
            margin: 1rem 0;
        }
        
        .menu-toggle {
            display: block;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
    }
    
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .fade-in.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Enhanced Loading Screen */
    .loader-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--background);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
        perspective: 1000px;
    }

    .loader {
        position: relative;
        width: 120px;
        height: 120px;
        transform-style: preserve-3d;
        animation: cubeRotate 2s infinite;
    }

    .loader-face {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 2px solid var(--primary);
        background: rgba(67, 97, 238, 0.1);
        backdrop-filter: blur(5px);
    }

    .loader-face:nth-child(1) { transform: translateZ(60px); }
    .loader-face:nth-child(2) { transform: rotateY(180deg) translateZ(60px); }
    .loader-face:nth-child(3) { transform: rotateY(90deg) translateZ(60px); }
    .loader-face:nth-child(4) { transform: rotateY(-90deg) translateZ(60px); }
    .loader-face:nth-child(5) { transform: rotateX(90deg) translateZ(60px); }
    .loader-face:nth-child(6) { transform: rotateX(-90deg) translateZ(60px); }

    .loader-text {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.2rem;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-family: 'Orbitron', sans-serif;
        animation: pulseText 1.5s infinite;
    }

    .loader-progress {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 2px;
        background: rgba(67, 97, 238, 0.2);
        overflow: hidden;
    }

    .loader-progress::after {
        content: '';
        position: absolute;
        left: -50%;
        width: 50%;
        height: 100%;
        background: var(--primary);
        animation: progressMove 1.5s linear infinite;
    }

    @keyframes cubeRotate {
        0% { transform: rotateX(0deg) rotateY(0deg); }
        25% { transform: rotateX(90deg) rotateY(90deg); }
        50% { transform: rotateX(180deg) rotateY(180deg); }
        75% { transform: rotateX(270deg) rotateY(270deg); }
        100% { transform: rotateX(360deg) rotateY(360deg); }
    }

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

    @keyframes progressMove {
        0% { left: -50%; }
        100% { left: 100%; }
    }

    /* Scroll to Top Button */
    .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--primary);
        border-radius: 50%;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    }

    .scroll-top.active {
        opacity: 1;
        bottom: 30px;
    }

    /* Typing Animation */
    .typing-text::after {
        content: '|';
        animation: blink 0.7s infinite;
    }

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

    /* Additional Terminal Styles for Interactivity */
    .terminal-window {
        transition: all 0.3s ease;
    }
    
    .terminal-window.minimized {
        height: 40px;
        overflow: hidden;
    }
    
    .terminal-window.maximized {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80vh;
        z-index: 1000;
    }
    
    .terminal-button {
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .terminal-button:hover {
        transform: scale(1.1);
    }
    
    .input-line {
        display: flex;
        margin-top: 10px;
    }
    
    .input-field {
        flex: 1;
        background: transparent;
        border: none;
        color: #b3e5fc;
        font-family: 'Monaco', 'Consolas', monospace;
        font-size: 0.9rem;
        outline: none;
        caret-color: #4cc9f0;
    }
    
    /* Command history styling */
    .command-history {
        max-height: 300px;
        overflow-y: auto;
        margin-bottom: 10px;
    }
    
    /* Terminal overlay for closed state */
    .terminal-closed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .terminal-closed.active {
        opacity: 1;
        pointer-events: all;
    }
    
    .reopen-btn {
        background: #4cc9f0;
        color: #0a1929;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .reopen-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(76, 201, 240, 0.3);
    }

    /* Team Section with 3D Cards */
    .team-section {
        padding: 100px 0;
        background: var(--section-bg);
        overflow: hidden;
        position: relative;
    }

    .team-card {
        perspective: 1000px;
        height: 350px;
        width: 100%;
        margin-bottom: 30px;
        cursor: pointer;
    }

    .card-3d-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

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

    .card-front, .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    .card-front {
        background: linear-gradient(145deg, var(--card-bg) 0%, rgba(21, 31, 40, 0.9) 100%);
        border: 1px solid rgba(76, 201, 240, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 30px 20px;
    }

    .card-back {
        background: linear-gradient(145deg, rgba(67, 97, 238, 0.9) 0%, rgba(76, 201, 240, 0.9) 100%);
        transform: rotateY(180deg);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 30px;
    }

    .team-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid var(--primary);
        margin-bottom: 15px;
        position: relative;
    }

    .team-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, rgba(76, 201, 240, 0.5), rgba(67, 97, 238, 0.5));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-card:hover .team-image::before {
        opacity: 1;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .team-card:hover .team-image img {
        transform: scale(1.1);
    }

    .team-info {
        text-align: center;
    }

    .team-info h3 {
        font-family: 'Orbitron', sans-serif;
        font-size: 1.3rem;
        margin-bottom: 5px;
        background: linear-gradient(90deg, #4361ee, #4cc9f0);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .team-info p {
        font-size: 0.9rem;
        color: var(--text);
        opacity: 0.8;
    }

    .team-bio {
        text-align: center;
        color: white;
    }

    .team-bio p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .team-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    .team-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .team-social a:hover {
        background: white;
        color: var(--primary);
        transform: translateY(-5px);
    }

    /* Testimonials Section with 3D Carousel */
    .testimonials {
        padding: 100px 0;
        background: var(--background);
        overflow: hidden;
        position: relative;
    }

    .scene {
        margin: 50px auto;
        position: relative;
        width: 100%;
        max-width: 1200px;
        perspective: 1000px;
        overflow: hidden;
    }

    .carousel {
        width: 100%;
        height: 400px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.8s;
    }

    .carousel-cell {
        position: absolute;
        width: 60%;
        height: 100%;
        left: 20%;
        top: 0;
        border-radius: 20px;
        color: white;
        text-align: center;
        transition: transform 0.8s, opacity 0.8s;
        backface-visibility: hidden;
        overflow: hidden;
    }

    .carousel-cell:nth-child(1) {
        transform: rotateY(0deg) translateZ(400px);
        opacity: 1;
        z-index: 4;
    }

    .carousel-cell:nth-child(2) {
        transform: rotateY(90deg) translateZ(400px);
        opacity: 0.7;
        z-index: 3;
    }

    .carousel-cell:nth-child(3) {
        transform: rotateY(180deg) translateZ(400px);
        opacity: 0.4;
        z-index: 2;
    }

    .carousel-cell:nth-child(4) {
        transform: rotateY(270deg) translateZ(400px);
        opacity: 0.7;
        z-index: 3;
    }

    .testimonial-card {
        width: 100%;
        height: 100%;
        background: var(--card-bg);
        border-radius: 20px;
        border: 1px solid rgba(76, 201, 240, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--primary-light));
    }

    .testimonial-content {
        padding: 40px 30px 20px;
        flex: 1;
        position: relative;
    }

    .quote-icon {
        position: absolute;
        top: 20px;
        left: 30px;
        font-size: 24px;
        color: var(--primary);
        opacity: 0.5;
    }

    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text);
        margin-bottom: 20px;
        font-style: italic;
        text-align: left;
    }

    .client-rating {
        text-align: left;
        color: var(--primary);
        font-size: 1rem;
    }

    .client-info {
        display: flex;
        align-items: center;
        padding: 20px 30px;
        background: rgba(21, 31, 40, 0.7);
        border-top: 1px solid rgba(76, 201, 240, 0.2);
    }

    .client-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid var(--primary);
        margin-right: 15px;
    }

    .client-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .client-details {
        text-align: left;
    }

    .client-details h4 {
        font-size: 1rem;
        margin-bottom: 3px;
        color: var(--text);
    }

    .client-details p {
        font-size: 0.8rem;
        color: var(--text);
        opacity: 0.7;
    }

    .carousel-nav {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 20px;
    }

    .prev-button, .next-button {
        background: rgba(76, 201, 240, 0.2);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .prev-button:hover, .next-button:hover {
        background: var(--primary);
        color: white;
    }

    @media (max-width: 992px) {
        .carousel-cell {
            width: 80%;
            left: 10%;
        }
    }

    @media (max-width: 768px) {
        .carousel-cell {
            width: 100%;
            left: 0;
        }
        
        .team-card {
            height: 400px;
        }
    }

    /* Creative Features Section */
    .creative-features {
        padding: 100px 0;
        background: var(--background);
        position: relative;
        overflow: hidden;
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        padding: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        height: 400px;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-10px);
    }

    /* Code Playground Styles */
    .code-playground {
        overflow: hidden;
    }

    .feature-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .editor-controls {
        display: flex;
        gap: 8px;
    }

    .control {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .control.red { background: #ff5f57; }
    .control.yellow { background: #febc2e; }
    .control.green { background: #28c840; }

    .code-content {
        padding: 20px;
        color: #e0e0e0 !important; /* Force white text in both modes */
        font-family: 'Fira Code', monospace;
        font-size: 0.85rem;
        line-height: 1.5;
        height: 300px;
        overflow: auto;
        background-color: rgba(18, 24, 32, 0.95) !important; /* Ensure dark background */
    }

    .light-theme .code-content {
        color: #e0e0e0 !important; /* Force white text in light mode */
        background-color: rgba(18, 24, 32, 0.95) !important; /* Keep dark background in light mode */
    }

    .light-theme .typing-line, 
    .light-theme .terminal-prompt,
    .light-theme .command-output,
    .light-theme #terminal-content {
        color: #e0e0e0 !important;
    }

    .light-theme .terminal-prompt {
        color: #4cc9f0 !important;
    }

    .light-theme .command-output {
        color: #a0a0a0 !important;
    }

    /* 3D Cube Styles */
    .cube-container {
        width: 100%;
        height: 100%;
        perspective: 1000px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cube {
        width: 200px;
        height: 200px;
        position: relative;
        transform-style: preserve-3d;
        animation: rotate 20s infinite linear;
    }

    .face {
        position: absolute;
        width: 200px;
        height: 200px;
        background: rgba(76, 201, 240, 0.1);
        border: 2px solid #4cc9f0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        color: #4cc9f0;
        text-transform: uppercase;
    }

    .front { transform: translateZ(100px); }
    .back { transform: translateZ(-100px) rotateY(180deg); }
    .right { transform: rotateY(90deg) translateZ(100px); }
    .left { transform: rotateY(-90deg) translateZ(100px); }
    .top { transform: rotateX(90deg) translateZ(100px); }
    .bottom { transform: rotateX(-90deg) translateZ(100px); }

    @keyframes rotate {
        from { transform: rotateX(0) rotateY(0); }
        to { transform: rotateX(360deg) rotateY(360deg); }
    }

    /* Stats Styles */
    .stats-container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
        padding: 40px 0;
    }

    .stat-item {
        text-align: center;
    }

    .stat-circle {
        position: relative;
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .circular-chart {
        width: 150px;
        height: 150px;
    }

    .circle-bg {
        fill: none;
        stroke: rgba(76, 201, 240, 0.1);
        stroke-width: 3;
    }

    .circle {
        fill: none;
        stroke: #4cc9f0;
        stroke-width: 3;
        stroke-linecap: round;
        animation: progress 1.5s ease-out forwards;
    }

    .stat-number {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        font-weight: bold;
        color: #4cc9f0;
    }

    @keyframes progress {
        0% { stroke-dasharray: 0, 100; }
    }

    /* Glass Effect and Enhanced Hero Section */
.glass-container {
    background: rgba(10, 25, 41, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(76, 201, 240, 0.18);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s ease;
    animation: glass-float 6s ease-in-out infinite;
}

.glass-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px 0 rgba(76, 201, 240, 0.2);
    border: 1px solid rgba(76, 201, 240, 0.5);
}

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

.glass-icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 201, 240, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 201, 240, 0.3);
}

.glass-icon i {
    color: #4cc9f0;
    font-size: 1.4rem;
}

/* Enhanced Dynamic Typing Animation */
.typing-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
    min-height: 40px;
}

.typing-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.dynamic-text {
    color: #4cc9f0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 8px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.typing-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
    min-height: 40px;
}

/* Particles for glass effect */
.glass-particle {
    position: absolute;
    background: rgba(76, 201, 240, 0.15);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    animation: float-around 15s linear infinite;
    opacity: 0.4;
}

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 50px) rotate(90deg); }
    50% { transform: translate(50px, 100px) rotate(180deg); }
    75% { transform: translate(-50px, 50px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.hero-content-highlight {
    position: relative;
    border-radius: 10px;
    padding: 5px 15px;
    background: rgba(76, 201, 240, 0.1);
    border-left: 3px solid #4cc9f0;
    margin: 10px 0;
    display: inline-block;
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Floating Islands Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-islands .island {
    position: absolute;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: floatIsland 20s infinite ease-in-out;
}

.island-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.island-2 {
    width: 300px;
    height: 300px;
    top: 40%;
    right: -50px;
    animation-delay: -5s;
}

.island-3 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 30%;
    animation-delay: -10s;
}

.constellation-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: constellationMove 60s linear infinite;
}

/* Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-wrapper {
    position: relative;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.tech-pill i {
    color: var(--primary);
    font-size: 0.9rem;
}

.tech-pill span {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--text);
}

.highlight-wrapper {
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(20px);
    opacity: 0.2;
    animation: shapeFloat 6s infinite ease-in-out;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(var(--background-rgb), 0.5);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 8px;
    color: var(--primary);
}

.feature-item span {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    height: 500px;
}

.code-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}

.sphere-core {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(var(--primary-rgb), 0.5);
    animation: pulse 2s infinite ease-in-out;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    animation: orbitRotate 20s infinite linear;
}

.orbit-1 { width: 200px; height: 200px; animation-duration: 15s; }
.orbit-2 { width: 300px; height: 300px; animation-duration: 20s; }
.orbit-3 { width: 400px; height: 400px; animation-duration: 25s; }

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--background);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.floating-elements .element {
    position: absolute;
    padding: 8px 16px;
    background: rgba(var(--background-rgb), 0.8);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 8px;
    color: var(--primary);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    animation: elementFloat 6s infinite ease-in-out;
}

/* Animations */
@keyframes floatIsland {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

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

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

@keyframes orbitRotate {
    0% { transform: rotateZ(0) rotateY(0); }
    100% { transform: rotateZ(360deg) rotateY(360deg); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Dark/Light Mode Compatibility */
:root {
    --primary-rgb: 76, 201, 240;
    --background-rgb: 10, 25, 41;
}

.light-theme {
    --primary-rgb: 0, 120, 212;
    --background-rgb: 245, 245, 245;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-visual {
        height: 400px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Perspective Section - New Design */
.hero-perspective {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background);
    padding: 120px 0 80px;
}

.perspective-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.grid-lines {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background-image: 
        linear-gradient(to right, rgba(var(--primary-rgb), 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(var(--primary-rgb), 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(60deg) rotateZ(0deg);
    transform-origin: center center;
    animation: gridRotate 40s linear infinite;
}

.perspective-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 2;
}

/* Hero Content Styles */
.hero-perspective-content {
    position: relative;
    z-index: 3;
    padding-right: 30px;
}

.hero-tagline {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.tag-marker {
    width: 30px;
    height: 4px;
    background: var(--primary);
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.tag-marker::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    animation: markerShine 3s ease-in-out infinite;
}

.hero-tagline span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text);
    position: relative;
    display: flex;
    flex-direction: column;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.text-stroke {
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
    font-weight: 800;
    opacity: 0.8;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text);
    opacity: 0.85;
    max-width: 540px;
}

.hero-action-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.primary-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.25);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.35);
    color: #fff;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: translateX(5px);
}

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

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
}

.hero-btn:hover .btn-ripple::after {
    transform: translate(-50%, -50%) scale(1);
}

.stats-counter {
    display: flex;
    gap: 30px;
}

.counter-item {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    font-family: 'Orbitron', sans-serif;
    position: relative;
}

.counter-number::after {
    content: '%';
    position: absolute;
    font-size: 1rem;
    right: -15px;
    top: 5px;
}

.counter-item:first-child .counter-number::after {
    content: '+';
}

.counter-label {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    margin-top: 5px;
}

/* Hero Visual with Layered Perspective */
.hero-perspective-visual {
    position: relative;
    z-index: 3;
    height: 500px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.perspective-layers {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateY(5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-perspective-visual:hover .perspective-layers {
    transform: rotateY(0deg) rotateX(0deg);
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.layer-1 {
    transform: translateZ(100px);
}

.layer-2 {
    transform: translateZ(50px);
}

.layer-3 {
    transform: translateZ(0px);
}

/* Code Block - Always Dark */
.code-block {
    background: rgba(18, 24, 32, 0.9);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    width: 460px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.code-header {
    background: rgba(16, 20, 25, 0.9);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
}

.file-name {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: var(--primary);
}

.code-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.7;
}

.control:nth-child(1) { background: #ff5f57; }
.control:nth-child(2) { background: #febc2e; }
.control:nth-child(3) { background: #28c840; }

.code-content {
    padding: 20px;
    color: #e0e0e0;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    height: 300px;
    overflow: auto;
}

.code-line {
    margin-bottom: 6px;
    display: block;
    min-height: 16px;
}

.typing-line {
    display: flex;
    align-items: center;
}

.terminal-prompt {
    color: #4cc9f0;
    margin-right: 8px;
}

.typing-text-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background-color: #4cc9f0;
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 2px;
}

.command-output {
    color: #a0a0a0;
    margin-left: 12px;
    font-style: italic;
}

.token.function {
    color: #4cc9f0;
}

.token.keyword {
    color: #ff79c6;
}

.token.class-name {
    color: #8be9fd;
}

.token.comment {
    color: #6c757d;
}

.token.string {
    color: #50fa7b;
}

.token.boolean {
    color: #ff5555;
}

/* Dragable Tech Circles */
.tech-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 20; /* Increased z-index to be above terminal */
    pointer-events: none;
}

.tech-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(18, 24, 32, 0.9);
    border: 2px solid rgba(var(--primary-rgb), 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 26px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    animation: floatCircle 6s ease-in-out infinite;
    cursor: grab;
    pointer-events: auto;
    user-select: none;
    z-index: 25; /* Increased z-index to be above terminal */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-circle:active {
    cursor: grabbing;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.circle-1 {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    top: 30%;
    right: 5%;
    animation-delay: 1s;
}

.circle-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.circle-4 {
    top: 15%;
    left: -10%;
    animation-delay: 3s;
}

.circle-5 {
    bottom: 10%;
    left: 5%;
    animation-delay: 1.5s;
}

.light-theme .tech-circle {
    background: rgba(18, 24, 32, 0.9);
    color: #4cc9f0;
}

/* Update responsive styles */
@media (max-width: 1200px) {
    .code-block {
        width: 400px;
    }
}

@media (max-width: 991px) {
    .hero-perspective-visual {
        height: 400px;
        margin-top: 50px;
    }
    
    .code-block {
        width: 100%;
        max-width: 400px;
        left: 0;
    }
    
    .tech-circle {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .perspective-layers {
        transform: none !important;
    }
    
    .layer-1 {
        transform: translateZ(0);
    }
    
    .layer-2, .layer-3 {
        display: none;
    }
    
    .tech-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Animation Keyframes */
@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

/* Terminal Background Fix */
.code-block {
    background: rgba(18, 24, 32, 0.95) !important;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    width: 460px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    top: 40px;
    left: 40px;
    z-index: 10;
}

/* Force dark terminal in light theme */
.light-theme .code-block,
.light-theme .code-header {
    background: rgba(18, 24, 32, 0.95) !important;
}

.light-theme .file-name {
    color: #4cc9f0 !important;
}