.theme-toggle-wrapper {
    display: flex;
    align-items: center;
}

.theme-toggle-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    transform: scale(1.2) rotate(20deg);
}

.theme-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.theme-toggle-btn:active .theme-icon {
    transform: rotate(180deg);
}

/* Light Mode */
body.light-theme {
    --dark: #ffffff;
    --dark-light: #f5f5f5;
    --text: #1a1a1a;
    --text-muted: #666666;
    --glass: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --card-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .nav-links a {
    color: #333;
}

body.light-theme .nav-links a:hover {
    color: #667eea;
}

body.light-theme .hero-bg {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

body.light-theme .float-icon {
    opacity: 0.15;
}

body.light-theme .glass-card,
body.light-theme .service-card,
body.light-theme .feature-card,
body.light-theme .industry-card,
body.light-theme .leader-card,
body.light-theme .process-step,
body.light-theme .stat-card,
body.light-theme .engagement-card,
body.light-theme .contact-item,
body.light-theme .contact-form,
body.light-theme .tech-logo {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .contact-form input,
body.light-theme .contact-form textarea {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

body.light-theme .footer {
    background: #f5f5f5;
    border-top-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .footer-col a {
    color: #666;
}

body.light-theme .footer-col a:hover {
    color: #667eea;
}

body.light-theme .social-icon {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #666;
}

/* Dark Mode (Default) */
body.dark-theme {
    --dark: #0f0f23;
    --dark-light: #1a1a2e;
    --text: #e4e4e7;
    --text-muted: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

body.dark-theme {
    background: var(--dark);
    color: var(--text);
}
