:root {
    --bg-dark: #0a0f1c;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-cyan: #00f2ff;
    --accent-purple: #bd00ff;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --primary-color: #00f2ff;
    --secondary-color: #bd00ff;
    --background-color: #0a0f1c;
    --text-color: #ffffff;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Neural Network Background Canvas */
#cyber-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-dark);
    pointer-events: none;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, width 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar.minimized {
    width: 80px;
}

.sidebar.minimized .nav-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar.minimized .logo {
    display: none;
}

.sidebar.minimized .sidebar-avatar {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.sidebar.minimized .sidebar-avatar:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.sidebar.minimized .sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar.minimized .sidebar-header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0.5rem;
    gap: 0.5rem;
}

.sidebar.minimized .sidebar-toggle {
    margin: 0;
    width: 100%;
}

.sidebar.minimized .sidebar-toggle i {
    transform: rotate(180deg);
}

.sidebar.minimized .nav-link {
    justify-content: center;
    padding: 1rem 0.5rem;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 80px;
    transition: all 0.3s ease;
}

.sidebar-avatar {
    display: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.logo a {
    text-decoration: none;
    color: var(--text-color);
    background: linear-gradient(270deg, var(--primary-color), var(--secondary-color), #ff00cc, #00ffcc, #ff9900, #00bfff, #ff0066, #39ff14, #ffd700, var(--primary-color));
    background-size: 900% 900%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease, font-size 0.3s ease;
    animation: gradientMove 8s ease-in-out infinite;
}

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

.logo a:hover {
    opacity: 0.8;
}

.sidebar-toggle {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-toggle i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1;
    gap: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.nav-text {
    transition: opacity 0.3s ease, width 0.3s ease;
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 242, 255, 0.1);
    border-left: 3px solid var(--accent-cyan);
}

.nav-link:hover {
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.1), transparent);
}

.nav-link.active {
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.15), transparent);
    border-left: 3px solid var(--accent-cyan);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Update all sections to account for sidebar */
.about,
.expertise,
.experience,
.tech,
.startups,
.apps,
.contact {
    padding-left: calc(280px + 5%) !important;
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .about,
body.sidebar-minimized .expertise,
body.sidebar-minimized .experience,
body.sidebar-minimized .tech,
body.sidebar-minimized .startups,
body.sidebar-minimized .apps,
body.sidebar-minimized .contact {
    padding-left: calc(80px + 5%) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.active {
        display: block;
    }

    .sidebar.minimized {
        width: 280px;
    }

    .sidebar.minimized .nav-text {
        opacity: 1;
        width: auto;
    }

    .hero,
    .about,
    .expertise,
    .experience,
    .tech,
    .startups,
    .apps,
    .contact {
        padding-left: 5% !important;
    }

    body.sidebar-minimized .hero,
    body.sidebar-minimized .about,
    body.sidebar-minimized .expertise,
    body.sidebar-minimized .experience,
    body.sidebar-minimized .tech,
    body.sidebar-minimized .startups,
    body.sidebar-minimized .apps,
    body.sidebar-minimized .contact {
        padding-left: 5% !important;
    }

}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 5% 2rem;
    padding-left: calc(280px + 5%);
    background-color: var(--background-color);
    position: relative;
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .hero {
    padding-left: calc(80px + 5%);
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
}

.hero-text {
    flex: 1;
    max-width: 800px;
}

.hero-image {
    flex: 0 0 400px;
    height: 400px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    background: var(--accent-cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(0px);
    opacity: 1;
}

.hero-image-bg img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-image:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.hero-image:hover img {
    transform: scale(1.05);
}

.role-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-greeting {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
}

.hero-description p {
    margin: 0;
}

.hero-role {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.static-text {
    color: var(--text-color);
    font-weight: 500;
}

/* Typing Animation */
.typing-text {
    color: var(--accent-cyan);
    font-weight: 600;
    min-width: 2px;
}

.typing-cursor {
    color: var(--accent-cyan);
    font-weight: 600;
    animation: blink 1s infinite;
}

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

.hero-tags-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
}

.btn.secondary {
    background: var(--glass-bg);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn.secondary i {
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 242, 255, 0.3);
}

.btn.primary {
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 242, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 242, 255, 0.6);
    }
}

.hero-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--glass-bg);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.social-link:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    color: var(--accent-cyan);
    box-shadow: 0 4px 12px rgba(0, 242, 255, 0.2);
}

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

/* Update responsive styles */
@media (max-width: 1200px) {
    .hero-main {
        gap: 3rem;
    }

    .hero-image {
        flex: 0 0 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero-main {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        flex: 0 0 300px;
        height: 300px;
        margin: 0 auto;
    }

    .hero-description {
        text-align: center;
    }
    
    .hero-role {
        justify-content: center;
    }

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

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

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

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
    }

    .hero-image {
        flex: 0 0 250px;
        height: 250px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-role {
        font-size: 1.4rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }
}


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

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    border-radius: 4px;
    animation: float-shape 20s linear infinite;
}

.shape:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { top: 60%; left: 80%; animation-delay: -5s; }
.shape:nth-child(3) { top: 40%; left: 40%; animation-delay: -10s; }
.shape:nth-child(4) { top: 80%; left: 20%; animation-delay: -15s; }
.shape:nth-child(5) { top: 10%; left: 70%; animation-delay: -20s; }

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

@keyframes float-shape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(400px, 400px) rotate(360deg);
    }
}

/* Expertise Section */
.expertise {
    padding: 6rem 5% 6rem calc(280px + 5%);
    background-color: var(--background-color);
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .expertise {
    padding-left: calc(80px + 5%);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Glass Card Base Style */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
}

.expertise-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    opacity: 0.05;
    z-index: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.expertise-card:nth-child(1)::after {
    content: '🛡️';
    font-size: 8rem;
}

.expertise-card:nth-child(2)::after {
    content: '🌐';
    font-size: 8rem;
}

.expertise-card:nth-child(3)::after {
    content: '☁️';
    font-size: 8rem;
}

.expertise-card:nth-child(4)::after {
    content: '📋';
    font-size: 8rem;
}

.expertise-card:nth-child(5)::after {
    content: '💻';
    font-size: 8rem;
}

.expertise-card:nth-child(6)::after {
    content: '📱';
    font-size: 8rem;
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.expertise-card:hover::after {
    transform: translate(-50%, -50%) rotate(10deg) scale(1.1);
    opacity: 0.08;
}

.expertise-card i,
.expertise-card h3,
.expertise-card .expertise-description,
.expertise-card ul {
    position: relative;
    z-index: 1;
}

.expertise-card i {
    color: var(--accent-cyan);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.expertise-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.expertise-card ul {
    list-style: none;
    padding: 0;
}

.expertise-card li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.expertise-card li:before {
    content: "→";
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Tech Section */
.tech {
    padding: 6rem 5% 6rem calc(280px + 5%);
    background-color: var(--background-color);
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .tech {
    padding-left: calc(80px + 5%);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tech-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-card-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-card-header h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    font-family: 'JetBrains Mono', monospace;
}

.tech-chip:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 242, 255, 0.2);
    color: var(--accent-cyan);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.skill-category h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    margin: 0.3rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .skill-category {
        padding: 1.25rem;
    }

    .skills-container {
        margin: 3rem auto 1.5rem;
    }

    .skills-title {
        font-size: 1.75rem;
    }
}

/* Experience Section */
.experience {
    padding: 6rem 5% 6rem calc(280px + 5%);
    background-color: var(--background-color);
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .experience {
    padding-left: calc(80px + 5%);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.experience-grid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
    z-index: 0;
}

.experience-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.experience-card::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-cyan), 0 0 30px rgba(0, 242, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.experience-card:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--accent-cyan), 0 0 40px rgba(0, 242, 255, 0.5);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
    border-color: var(--accent-cyan);
}

.experience-card.expanded {
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.3);
}

.experience-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.experience-card-basic {
    flex: 1;
}

.experience-card-basic h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.experience-card-basic .company {
    display: block;
    font-size: 1rem;
    color: var(--accent-cyan);
    margin-bottom: 0.25rem;
}

.experience-card-basic .duration {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.expand-icon {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.experience-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.experience-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.experience-card.expanded .experience-card-details {
    max-height: 2000px;
    padding: 0 1.5rem 1.5rem;
}

.responsibilities {
    list-style: none;
    padding: 0;
}

.responsibilities li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    position: relative;
}

.responsibilities li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .tech {
        padding: 4rem 1rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-card {
        padding: 1.5rem;
    }

    .tech-card-header h3 {
        font-size: 1.1rem;
    }

    .tech-chip {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .experience {
        padding: 4rem 1rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .experience-card-header {
        padding: 1.25rem;
    }

    .experience-card-basic h3 {
        font-size: 1.1rem;
    }

    .experience-card-basic .company {
        font-size: 0.9rem;
    }

    .experience-card-basic .duration {
        font-size: 0.85rem;
    }
}

/* Apps Section */
.apps {
    padding: 6rem 5% 6rem calc(280px + 5%);
    background-color: var(--background-color);
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .apps {
    padding-left: calc(80px + 5%);
}

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

.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
}

.project-content {
    padding: 2rem;
}

.project-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.project-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0;
    flex-grow: 1;
}

.project-link {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--primary-color);
}

.project-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: var(--accent-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 4px 12px rgba(0, 242, 255, 0.2);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .apps {
        padding: 4rem 1rem;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-card {
        padding: 1rem;
    }

    .project-content {
        padding: 1rem;
    }

    .project-header h3 {
        font-size: 1.1rem;
    }

    .project-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .project-tech {
        gap: 0.3rem;
    }

    .tech-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 5% 6rem calc(280px + 5%);
    background: var(--bg-secondary);
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .contact {
    padding-left: calc(80px + 5%);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
}

.contact-item i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: var(--accent-cyan);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(0, 242, 255, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.contact-details span {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
        gap: 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details span {
        font-size: 0.9rem;
    }
}

/* Business Ventures Section */
.business,
.startups {
    padding: 6rem 5% 6rem calc(280px + 5%);
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    margin-top: -2rem;
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .business,
body.sidebar-minimized .startups {
    padding-left: calc(80px + 5%);
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.business-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    padding: 2rem;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 242, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
}

.business-content {
    padding: 2.5rem;
}

.business-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.business-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.business-card:hover .business-logo {
    transform: scale(1.05);
}

.business-title {
    flex-grow: 1;
}

.business-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--text-color);
}

.business-header .company-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
    display: block;
}

.business-header .business-link {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.business-header .business-link:hover {
    color: var(--primary-color);
}

.business-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.business-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.business-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 1rem;
}

.business-social-link {
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    position: relative;
}

.business-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.business-social-link::after {
    content: attr(title);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-color);
    font-size: 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.business-social-link:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

/* Responsive adjustments for social icons */
@media (max-width: 768px) {
    .business-social {
        justify-content: center;
    }

    .business-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .business-social-link::after {
        display: none;
    }
}

/* Update Apps section to differentiate from Business section - padding already set above */

/* Responsive Design for Business Section */
@media (max-width: 768px) {
    .business {
        padding: 4rem 1rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-content {
        padding: 1.5rem;
    }

    .business-header h3 {
        font-size: 1.5rem;
    }

    .business-description {
        font-size: 1rem;
    }
}

/* Mouse Effect */
.cursor-effect {
    display: none; /* Disable custom cursor effect */
}

/* Reset cursor styles for interactive elements */
a, button, .btn, .project-card, .business-card, .expertise-card, .contact-link, input, textarea {
    cursor: pointer;
}

.skill-tag {
    cursor: default;
}

/* Hide cursor effect on mobile */
@media (max-width: 768px) {
    a, button, .btn, .project-card, .business-card, .expertise-card, .contact-link, input, textarea {
        cursor: pointer;
    }
}

/* Card hover effects */
.business-card:hover,
.expertise-card:hover,
.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.business-card:hover .business-logo {
    transform: scale(1.05);
}

.business-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.project-link:hover,
.business-header .business-link:hover {
    color: var(--accent-cyan);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}


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

/* Responsive Design */
@media (max-width: 768px) {
    .business-card:hover,
    .expertise-card:hover,
    .project-card:hover {
        transform: translateY(-3px);
    }
}

/* About Section */
.about {
    padding: 6rem 5% 6rem calc(280px + 5%);
    background-color: var(--background-color);
    position: relative;
    transition: padding-left 0.3s ease;
}

body.sidebar-minimized .about {
    padding-left: calc(80px + 5%);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.about-text p:nth-child(1) {
    animation-delay: 0.1s;
}

.about-text p:nth-child(2) {
    animation-delay: 0.3s;
}

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

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Highlight class for key metrics in text */
.highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about-main {
        gap: 3rem;
    }

    .about-image {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }

    .about-content {
        gap: 3rem;
    }

    .about-main {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .highlight-item {
        padding: 1.5rem;
    }

    .highlight-number {
        font-size: 2rem;
    }

    .highlight-label {
        font-size: 0.9rem;
    }
}


.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    overflow: hidden;
}

.marquee-line {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
}

.marquee-content {
    display: inline-flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding: 0;
    min-width: 100%;
}

.marquee-content[data-direction="right"] {
    animation: marquee-reverse 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Remove the duplicate content styles since we're handling it in JS */
.marquee-content::after {
    display: none;
}

/* Technical Proficiencies Section */
.technical-proficiencies {
    padding: 6rem 5%;
    background-color: var(--background-color);
    position: relative;
}

.technical-proficiencies .container {
    max-width: 1200px;
    margin: 0 auto;
}

.technical-proficiencies .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.technical-proficiencies .skills-container {
    margin: 0 auto;
}

.technical-proficiencies .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.technical-proficiencies .skill-category {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technical-proficiencies .skill-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.technical-proficiencies .skill-category h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.technical-proficiencies .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.technical-proficiencies .skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.technical-proficiencies .skill-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .technical-proficiencies {
        padding: 4rem 1rem;
    }

    .technical-proficiencies .skills-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .technical-proficiencies .skill-category {
        padding: 1.5rem;
    }

    .technical-proficiencies .skill-category h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .technical-proficiencies .skill-tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Accessibility Features */
a, button, .btn, .project-card, .business-card, .expertise-card, .contact-link, input, textarea {
    outline: none;
}

a:focus, button:focus, .btn:focus, .project-card:focus, .business-card:focus, .expertise-card:focus, .contact-link:focus, input:focus, textarea:focus {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    #cyber-canvas {
        display: none;
    }
    
    .glass-card, .expertise-card, .project-card, .tech-card, .experience-card, .business-card {
        transition: none;
    }
    
    .btn, .tag, .tech-chip, .tech-tag {
        transition: none;
    }
    
    * {
        animation: none !important;
    }
}

/* Text Color Updates */
.about-text p, .project-description, .business-description {
    color: var(--text-secondary);
}


/* Update section titles gradient */
.section-title {
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Update hero title gradient */
.hero-title {
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Update tag colors */
.tag {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.tag:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Update tech card header icon */
.tech-card-header i {
    color: var(--accent-cyan);
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Update expertise card icon */
.expertise-card i {
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Update project icon */
.project-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
}
