@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    /* Modern Color Palette */
    --primary-bg: #0A0F1C;
    --secondary-bg: #111827;
    --surface-bg: #1F2937;
    --surface-hover: #374151;
    --accent-primary: #3B82F6;
    --accent-secondary: #10B981;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-orange: #F59E0B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A0F1C 0%, #111827 50%, #1F2937 100%);
    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    --gradient-purple: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    
    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
    
    /* Text Colors */
    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;
    --text-accent: var(--accent-primary);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.2);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background: var(--gradient-primary);
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-hover);
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

.sidebar {
    width: 280px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
    padding: 0;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
    transform: translateX(0);
    z-index: 1001;
}

.sidebar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: var(--space-2xl) var(--space-lg);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: var(--space-lg);
}

.side-head {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin: 0;
    text-align: center;
    text-decoration: none;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-normal);
    position: relative;
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
}

.side-head::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-normal);
    border-radius: var(--radius-sm);
}

.side-head:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.3));
}

.side-head:hover::after {
    width: 80%;
}

/* Navigation Container */
.sidebar nav {
    flex: 1;
    padding: 0 var(--space-lg);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

nav ul li {
    padding: 0;
    width: 100%;
}

/* Modern nav link styles */
.sidebar nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    position: relative;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xs);
    backdrop-filter: blur(10px);
}

/* Navigation icons */
.sidebar nav ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    margin-right: var(--space-md);
    transition: all var(--transition-fast);
}

/* Hover state */
.sidebar nav ul li a:hover {
    color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-primary);
    transform: translateX(4px);
    box-shadow: var(--shadow-glow);
}

.sidebar nav ul li a:hover::before {
    background: var(--accent-primary);
    transform: scale(1.3);
}

/* Active state */
.sidebar nav ul li a.active {
    color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.sidebar nav ul li a.active::before {
    background: var(--accent-primary);
    transform: scale(1.3);
}
    background: rgba(56, 189, 248, 0.05);
    font-weight: 600;
    padding-left: 1.8rem;
}

/* Left border indicator for hover */
.sidebar nav ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    width: 3px;
    background: var(--neon-accent);
    transition: height 0.3s ease;
    opacity: 0;
}

/* Hover indicator animation */
.sidebar nav ul li a:hover::before {
    height: 70%;
    opacity: 0.5;
}

/* Active indicator */
.sidebar nav ul li a.active::before {
    height: 70%;
    opacity: 1;
}

/* Add subtle glow on hover and active */
.sidebar nav ul li a:hover,
.sidebar nav ul li a.active {
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

/* First and last items */
nav ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

nav ul li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 80%;
    margin: 1rem auto; /* Reduced from 1.5rem */
}

/* Sidebar bottom section */
.sidebar-bottom {
    margin-top: auto;
    padding: var(--space-lg);
    border-top: 1px solid var(--glass-border);
}

/* Visitor Counter */
.visitor-counter {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.counter-container {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.counter-container:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
}

.counter-icon {
    font-size: 1.5rem;
    color: var(--accent-secondary);
    animation: pulse 2s infinite;
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.counter-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-secondary);
    font-family: 'JetBrains Mono', monospace;
}

/* Social Links */
.socials {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin: 0;
    padding: 0;
}

.socials a {
    width: 48px;
    height: 48px;
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.socials a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.socials a:hover {
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-primary);
}

.socials a:hover::before {
    opacity: 1;
}

/* Animation keyframes */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    min-height: 100vh;
    padding: var(--space-2xl);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto;
    border-radius: var(--radius-sm);
}

/* Welcome Section */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.welcome-container {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.welcome-text {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    margin-bottom: var(--space-2xl);
    letter-spacing: -0.02em;
}

/* About Section */
#about {
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    animation: slideInLeft 0.8s ease-out;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-text-container {
    padding: var(--space-xl);
}

.greeting {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

/* Skills Section */
#skills {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

/* Experience Section */
#experience {
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
}

/* Achievements Section */
#achievements {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

/* Responsive Typography */
@media (max-width: 768px) {
    section {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .welcome-text {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Card Components */
.card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: var(--glass-blur);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-primary);
}

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

/* Floating Icons Enhancement */
.floating-icons {
    position: relative;
    padding: var(--space-2xl);
    margin-top: var(--space-xl);
}

.floating-icons i {
    font-size: 2.5rem;
    color: var(--text-muted);
    margin: var(--space-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(odd) {
    animation-delay: 0.5s;
}

.floating-icons i:nth-child(even) {
    animation-delay: 1s;
}

.floating-icons i:hover {
    color: var(--accent-primary);
    transform: scale(1.2) translateY(-8px);
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.4));
}

/* Skill icons specific colors */
.floating-icons .fa-aws:hover { color: #FF9900; }
.floating-icons .fa-google:hover { color: #4285F4; }
.floating-icons .fa-docker:hover { color: #2496ED; }
.floating-icons .fa-python:hover { color: #3776AB; }
.floating-icons .fa-github:hover { color: #181717; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

/* Enhanced scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Keyframes for animations */
@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

/* Media Queries */
@media (max-width: 768px) {
    .socials {
        gap: 1.5rem;
    }
    
    .socials a {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .socials {
        gap: 1.2rem;
    }
    
    .socials a {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1002;
    padding: 10px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hamburger span {
    height: 3px;
    border-radius: 2px;
    width: 24px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Hide mobile close button on desktop */
.mobile-close {
    display: none;
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .sidebar {
        width: 100vw;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        background: var(--gradient-primary);
        backdrop-filter: var(--glass-blur);
        box-shadow: none;
        display: flex;
        flex-direction: column;
        padding: 0;
        overflow: hidden;
    }

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

    .sidebar-header {
        flex-shrink: 0;
        padding: var(--space-2xl) var(--space-lg) var(--space-lg);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--glass-border);
        margin-bottom: 0;
    }

    .sidebar-header h1 {
        margin: 0;
    }

    .side-head {
        font-size: 2rem;
        font-weight: 700;
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Close button */
    .mobile-close {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-close:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(90deg);
    }

    /* Navigation */
    .sidebar nav {
        flex: 1;
        display: flex;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        overflow-y: auto;
    }

    .sidebar nav ul {
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar nav ul li {
        margin: 0 0 0.75rem 0;
    }

    .sidebar nav ul li a {
        display: block;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .sidebar nav ul li a:hover,
    .sidebar nav ul li a.active {
        background: rgba(56, 189, 248, 0.1);
        border-color: var(--neon-accent);
        color: var(--neon-accent);
        transform: translateX(8px);
        box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2);
    }

    /* Bottom section */
    .sidebar-bottom {
        flex-shrink: 0;
        padding: 1rem 1.5rem 1.5rem;
        border-top: 1px solid var(--glass-border);
        background: var(--gradient-card);
        backdrop-filter: var(--glass-blur);
    }

    /* Visitor counter in mobile - Simple styling to match other sidebar items */
    .visitor-counter {
        margin-bottom: 1rem;
        text-align: center;
    }

    .counter-container {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 0.875rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
    }

    .counter-container:hover {
        background: rgba(56, 189, 248, 0.1);
        border-color: var(--neon-accent);
        transform: translateX(8px);
        box-shadow: 0 4px 20px rgba(56, 189, 248, 0.2);
    }

    .counter-icon {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .counter-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .counter-label {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin-bottom: 0.25rem;
    }

    .counter-value {
        font-size: 1rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        font-family: 'Inter', sans-serif;
    }

    /* Social links in mobile */
    .socials {
        display: flex;
        justify-content: center;
        gap: var(--space-md);
        margin: 0;
        padding: 0;
    }

    .socials a {
        width: 50px;
        height: 50px;
        background: var(--gradient-card);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 1.3rem;
        transition: all var(--transition-normal);
        position: relative;
        overflow: hidden;
    }

    .socials a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-accent);
        opacity: 0;
        transition: opacity var(--transition-normal);
        z-index: -1;
    }

    .socials a:hover {
        color: var(--text-primary);
        transform: translateY(-3px);
        box-shadow: var(--shadow-glow);
        border-color: var(--accent-primary);
    }

    .socials a:hover::before {
        opacity: 1;
    }

    .content {
        margin-left: 0;
        width: 100%;
    }

    /* Hide overlay on mobile since we're using full screen */
    .mobile-overlay {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 100vw !important;
    }
    
    .sidebar-header {
        padding: 1.5rem 1rem 0.75rem;
    }
    
    .side-head {
        font-size: 1.75rem;
    }
    
    .sidebar nav ul li a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .sidebar-bottom {
        padding: 0.75rem 1rem 1rem;
    }
    
    .sidebar nav {
        padding: 0.75rem 1rem;
    }
    
    .counter-container {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .counter-value {
        font-size: 0.9rem;
    }
    
    .counter-label {
        font-size: 0.6rem;
    }
    
    .socials a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    section {
        padding: 1.5rem 0.75rem;
    }
}

@media (max-width: 375px) {
    .hamburger {
        top: 1rem;
        right: 1rem;
        padding: 8px;
    }
    
    .sidebar-header {
        padding: 1.25rem 0.75rem 0.5rem;
    }
    
    .side-head {
        font-size: 1.5rem;
    }
    
    .mobile-close {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .sidebar nav ul li a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .counter-container {
        padding: 0.6rem;
        gap: 0.5rem;
    }
    
    .counter-value {
        font-size: 1.2rem;
    }
    
    .socials a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}


.content {
    margin-left: 280px; /* Match new sidebar width */
    width: calc(100% - 280px);
    min-height: 100vh;
    position: relative;
}

@media (max-width: 768px) {
    .content {
        margin-left: 0;
        width: 100%;
    }
    
    section {
        min-height: auto;
        padding: 2rem 1rem;
        align-items: flex-start;
    }
    
    #home {
        min-height: 100vh;
        align-items: center;
    }
}

@media (max-width: 435px) {
    .content {
        margin-left: 0;
        width: 100%;
    }
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

section h2 {
    font-size: 1.5em;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
}

#home {
    text-align: center;
    padding-top: 0;
    animation: subtleFadeInUp 1.2s ease-out both;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animated Background */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pattern background removed for better performance */
    opacity: 0.1;
    animation: pan 60s linear infinite;
    z-index: 1;
}

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

/* Layered Content Container */
.home-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

/* Welcome Text */
.welcome-text {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px var(--text-glow);
    animation: pulseGlow 2s infinite, fadeIn 1s ease-out;
    margin: 0;
    padding: 0;
}

/* Subtitle */
.home-subtitle {
    font-size: 1.5rem;
    color: var(--neon-accent);
    margin-top: 1rem;
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

/* Interactive Buttons */
.home-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.home-button {
    padding: 1rem 2rem;
    border: 2px solid var(--neon-accent);
    background: transparent;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.home-button:hover {
    background: var(--neon-accent);
    color: #1E293B;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-icons i {
    position: absolute;
    color: var(--neon-accent);
    opacity: 0.4;
    animation: float 8s infinite;
    filter: drop-shadow(0 0 8px var(--text-glow));
    transition: all 0.3s ease;
}

/* Keyframes */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, -50px) rotate(-5deg) scale(1);
    }
    75% {
        transform: translate(30px, -20px) rotate(8deg) scale(1.1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px var(--text-glow);
    }
    50% {
        text-shadow: 0 0 40px var(--text-glow),
                     0 0 60px var(--text-glow);
    }
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 3rem;
    }

    .home-subtitle {
        font-size: 1.2rem;
    }

    .home-buttons {
        flex-direction: column;
        align-items: center;
    }

    .home-button {
        width: 80%;
    }

    .floating-icons i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .welcome-text {
        font-size: 2.5rem;
    }

    .home-subtitle {
        font-size: 1rem;
    }

    .home-button {
        font-size: 1rem;
        width: 100%;
    }
}

.welcome-container {
    position: relative;
    z-index: 2;
    background: rgba(26, 28, 44, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.floating-icons i {
    position: absolute;
    color: var(--neon-accent);
    opacity: 0.4;
    animation: float 8s infinite;
    filter: drop-shadow(0 0 8px var(--text-glow));
    transition: all 0.3s ease;
}

/* Update floating icons positioning */
.floating-icons i:nth-child(1) { left: 15vw; top: 10vh; font-size: 3rem; animation-delay: 0s; }
.floating-icons i:nth-child(2) { left: 75vw; top: 80vh; font-size: 4rem; animation-delay: -1s; }
.floating-icons i:nth-child(3) { left: 40vw; top: 20vh; font-size: 3.5rem; animation-delay: -2s; }
.floating-icons i:nth-child(4) { left: 85vw; top: 40vh; font-size: 3rem; animation-delay: -3s; }
.floating-icons i:nth-child(5) { left: 25vw; top: 70vh; font-size: 4rem; animation-delay: -4s; }
.floating-icons i:nth-child(6) { left: 60vw; top: 30vh; font-size: 3.5rem; animation-delay: -5s; }
.floating-icons i:nth-child(7) { left: 10vw; top: 50vh; font-size: 3rem; animation-delay: -6s; }
.floating-icons i:nth-child(8) { left: 70vw; top: 15vh; font-size: 4rem; animation-delay: -7s; }
.floating-icons i:nth-child(9) { left: 45vw; top: 60vh; font-size: 3.5rem; animation-delay: -8s; }
.floating-icons i:nth-child(10) { left: 30vw; top: 25vh; font-size: 3rem; animation-delay: -9s; }
.floating-icons i:nth-child(11) { left: 80vw; top: 65vh; font-size: 4rem; animation-delay: -10s; }
.floating-icons i:nth-child(12) { left: 20vw; top: 45vh; font-size: 3.5rem; animation-delay: -11s; }
.floating-icons i:nth-child(13) { left: 65vw; top: 85vh; font-size: 3rem; animation-delay: -12s; }
.floating-icons i:nth-child(14) { left: 35vw; top: 35vh; font-size: 4rem; animation-delay: -13s; }
.floating-icons i:nth-child(15) { left: 90vw; top: 75vh; font-size: 3.5rem; animation-delay: -14s; }
.floating-icons i:nth-child(16) { left: 50vw; top: 90vh; font-size: 3rem; animation-delay: -15s; }
.floating-icons i:nth-child(17) { left: 5vw; top: 85vh; font-size: 4rem; animation-delay: -16s; }
.floating-icons i:nth-child(18) { left: 55vw; top: 5vh; font-size: 3.5rem; animation-delay: -17s; }

/* Custom icon colors */
.floating-icons .k8s-icon { color: #326CE5; }
.floating-icons .terraform-icon { color: #7B42BC; }
.floating-icons .python-icon { color: #FFD43B; }
.floating-icons .sql-icon { color: #F29111; }
.floating-icons .newrelic-icon { color: #1CE783; }
.floating-icons .grafana-icon { color: #F46800; }
.floating-icons .jenkins-icon { color: #D24939; }
.floating-icons .argocd-icon { color: #EE0000; }
.floating-icons .cloud-icon { color: #4285F4; }

/* Update animation for smoother movement */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, -50px) rotate(-5deg) scale(1);
    }
    75% {
        transform: translate(30px, -20px) rotate(8deg) scale(1.1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px var(--text-glow);
    }
    50% {
        text-shadow: 0 0 40px var(--text-glow),
                     0 0 60px var(--text-glow);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 3rem;
    }
    
    .floating-icons i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .welcome-text {
        font-size: 2.5rem;
    }
}

.home-img img {
    height: 34.72vh;
    width: 22.29vw;
    margin-bottom: 2.5vh;
}

.home-name h2 {
    font-size: 48px;
    color: #ffffff;
    text-shadow: 0 0 20px var(--text-glow);
    margin: 20px 0;
}

.static-text {
    font-size: 24px;
    color: #ffffff;
}

.text-effects {
    color: var(--neon-accent);
    text-shadow: 0 0 10px var(--text-glow);
}

.text-effects ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    animation: slide 8s infinite;
    vertical-align: middle;
}

.text-effects li {
    height: 4.58vh;
    line-height: 4.58vh;
}

.page-views {
    font-family: 'Inter', sans-serif;
    font-size: 2.7vh;
    font-weight: normal;
    margin-top: 1.2vh;
    color: #ffffff;
}

.page-views:hover {
    transform: scale(1.24);
}

@keyframes slide {

    0%, 20% {
        top: 0;
    }

    25%, 45% {
        top: -4.58vh;
    }

    50%, 70% {
        top: -9.16vh;
    }

    75%, 95% {
        top: -13.74vh;
    }

    100% {
        top: 0;
    }
}

@media (max-width: 768px) {
    .home-img img {
        height: 30vh;
        width: 50vw;
        margin-bottom: 2vh;
    }

    .home-name h2 {
        font-size: 4vh;
    }

    .static-text {
        font-size: 2.8vh;
    }

    .text-effects {
        font-size: 3vh;
        height: 4vh;
        line-height: 4vh;
        position: relative;
        overflow: hidden;
    }

    .text-effects ul {
        animation: slide 8s infinite;
    }

    .text-effects li {
        height: 4vh;
        line-height: 4vh;
    }

    .page-views {
        font-size: 2.8vh;
    }
}

/* For smaller devices like phones (max-width: 425px) */
@media (max-width: 435px) {
    .home-img img {
        height: 25vh;
        width: 60vw;
        margin-bottom: 1.5vh;
    }

    .home-name h2 {
        font-size: 3.5vh;
    }

    .static-text {
        font-size: 2.5vh;
    }

    .text-effects {
        font-size: 2.8vh;
        height: 3.5vh;
        line-height: 3.5vh;
        position: relative;
        overflow: hidden;
    }
    .text-effects ul {
        animation: slidePhone 7s infinite;
    }
    .text-effects li {
        height: 3.5vh;
        line-height: 3.5vh;
    }
    .page-views {
        font-size: 2.5vh;
    }
}


@keyframes slidePhone {
    0%, 15% {
        top: 0;
    }
    25%, 40% {
        top: -3.5vh;
    }
    50%, 65% {
        top: -7vh;
    }
    75%, 90% {
        top: -10.5vh;
    }
    100% {
        top: 0;
    }
}

@keyframes slideTablet {
    0%, 20% {
        top: 0;
    }
    30%, 45% {
        top: -4vh;
    }
    55%, 70% {
        top: -8vh;
    }
    80%, 95% {
        top: -12vh;
    }
    100% {
        top: 0;
    }
}


#about {
    padding: 7vh 2.6vw;
    background: var(--gradient-primary);
   /* position: relative; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.section-header h2 {
    font-size: 2.8rem; /* Larger for better visibility */
    font-weight: 700;
    text-transform: uppercase;
    /* color: var(--neon-accent); */
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem; /* Add spacing below */
    letter-spacing: 1.5px; /* Improve spacing between letters */
}

.header-underline {
    width: 100px; /* Slightly wider underline */
    height: 4px;
    background: var(--neon-accent);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.about-text-container {
    max-width: 800px;
}

.greeting h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.wave {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
}

.about-description {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: var(--neon-accent);
    font-weight: 600;
}

.focus-areas {
    list-style: none;
    padding: 1rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.focus-areas li {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.focus-areas li:hover {
    transform: translateX(10px);
    background: rgba(56, 189, 248, 0.1);
}

.closing-text {
    margin-top: 2rem;
    font-style: italic;
}

.download-button {
    margin-top: 2rem;
}

.download-button a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem; /* Increased gap for better icon spacing */
    padding: 1rem 2.25rem; /* Adjusted padding for balanced look */
    background: transparent; /* Remove solid background */
    color: var(--neon-accent); /* Use neon accent color for text */
    text-decoration: none;
    border: 2px solid var(--neon-accent); /* Add a neon border */
    border-radius: 50px; /* More rounded corners */
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3); /* Subtle glow effect */
}

.download-button a:hover {
    background: var(--neon-accent); /* Invert colors on hover */
    color: #1a1c2c; /* Dark text color on hover */
    transform: translateY(-3px); /* Slightly lift on hover */
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5); /* Enhanced glow on hover */
}

/* Style the icon */
.download-button a i {
    font-size: 1.25rem; /* Adjust icon size */
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

@media (max-width: 768px) {
    .about-container {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .greeting h3 {
        font-size: 1.75rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .focus-areas {
        grid-template-columns: 1fr;
    }

    .download-button a {
        font-size: 2vh;
        padding: 1vh 2.5vw;
    }
}

@media (max-width: 435px) {
    #about {
        padding: 3vh 3vw;
        /* Do not override background */
    }

    .about-container h2 {
        font-size: 3.8vh;
        left: 1.5vh;
        top: 1.5vh;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        margin-bottom: 8vh;
    }

    .about-img img {
        width: 80vw;
        height: auto;
        margin: 0 0 3vh 0;
        margin-top: 4vh;
    }

    .about-text h3 {
        font-size: 3.2vh;
    }

    .about-text p {
        font-size: 2vh;
        text-align: center;
    }

    .download-button a {
        font-size: 1.8vh;
        padding: 0.8vh 2vw;
    }
}



#skills {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.myskills h2 {
    font-size: 4.2vh;
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: 2.78vh;
    left: 1vh;
    margin: 0;
    margin-bottom: 11.11vh;
    text-transform: uppercase;
    color: #ffffff;
}

.myskills h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2vh;
    text-transform: capitalize;
    position: absolute;
    top: 8.33vh;
    left: 1vh;
    margin: 0;
    color: #ffffff;
}

.skill-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4.17vh;
}

.skill-list li {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.skill-list li img {
    width: 11.11vh;
    height: 11.11vh;
    border-radius: 60%;
    transition: background-color 0.7s ease;
}

.skill-list li span {
    margin-top: 1.39vh;
    font-family: 'Inter', sans-serif;
    font-size: 2vh;
    color: #ffffff;
}

.skill-list li:hover img {
    background-color: #283e59;
    box-shadow: 0 0 2.08vh rgba(0, 0, 0, 0.3);
    transform: scale(1.15);
}

.skill-list li:hover span {
    background-color: #283e593c;
}

.skills-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* Changed to always show 2 columns */
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
}

.skill-category {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    background: var(--hover-bg);
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.1);
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0.5rem;
    margin-top: auto;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: var(--hover-bg);
    transform: translateY(-3px);
}

.skill-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.skill-item span {
    font-size: 0.9rem;
    color: #ffffff;
}

@media (max-width: 768px) {
    #skills {
        padding: 2rem 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;  /* Stack vertically on smaller screens */
        gap: 1.5rem;
    }

    .skill-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #achievements {
        padding: 1.5rem 1rem;
    }
}

/* Update skill category icons colors */
.skill-category h3 .fa-code {
    color: #FFD43B; /* Python yellow */
}

.skill-category h3 .fa-database {
    color: #4DB33D; /* MongoDB green */
}

.skill-category h3 .fas.fa-wrench {
    color: #A8A9AD; 
}
.skill-category h3 .fa-cloud {
    color: #FFFFFF; /* Python yellow */
}
/* Add hover effects for programming and database items */
.skill-items .skill-item:hover {
    background: rgba(56, 189, 248, 0.15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
}

/* Specific colors for database items on hover */
.skill-category:nth-child(4) .skill-item:hover {
    background: rgba(77, 179, 61, 0.15);
    box-shadow: 0 4px 15px rgba(77, 179, 61, 0.2);
}

/* Adjust grid for better spacing with new categories */
.skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

#achievements {
    position: relative;
    padding: 4rem 2rem;
    text-align: left;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
}

#achievements h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 4vh;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2vh;
    color: #ffffff;
}

#achievements h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5vh;
    text-transform: capitalize;
    margin-bottom: 2vh;
    color: #ffffff;
}



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

.sidebar,
.content,
section {
    animation: fadeIn 1s ease-in-out;
}

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

/* Skills Section Styles */
.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* Changed to always show 2 columns */
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
}

.skill-category {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    color: var(--neon-accent);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0.5rem;
    margin-top: auto;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-3px);
}

.skill-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.skill-item span {
    font-size: 0.9rem;
    color: #ffffff;
}

/* Certifications Section Styles */
.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.certifications-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.certification-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateX(10px);
    background: var(--hover-bg);
}

.cert-icon {
    flex-shrink: 0;
}

.cert-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.cert-details {
    flex-grow: 1;
}

.cert-details h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cert-details p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cert-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.cert-meta span {
    color: var(--neon-accent);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    background: var(--gradient-accent);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 1px solid var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

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

.verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-secondary);
}

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

.verify-btn i {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.verify-btn:hover i {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .certification-card {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }
    
    .verify-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.2rem;
    }
    
    .verify-btn i {
        font-size: 0.65rem;
    }
    
    .cert-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Common section styles */
section {
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
}

/* Container styles for all sections */
.about-container,
.skills-container,
.certifications-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Common header styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff; /* Use neon accent color for all section headers */
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.header-underline {
    width: 100px; /* Slightly wider underline */
    height: 4px;
    background: var(--neon-accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Section transitions */
section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(56, 189, 248, 0.1),
        transparent
    );
}

/* Skills section specific */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Certifications section specific */
.certifications-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

/* Hover effects */
.skill-category:hover,
.certification-card:hover,
.about-container:hover {
    transform: translateY(-5px);
}

/* Animation for section entrance */
@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: sectionFadeIn 0.8s ease-out forwards;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Media queries */
@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .about-container,
    .skills-container,
    .certifications-container {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Smooth section transitions */
.content {
    perspective: 1000px;
}

section {
    transform-style: preserve-3d;
    transition: transform 0.6s ease-out;
}

/* Add consistent spacing between sections */
section:not(:last-child) {
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-description p {
        font-size: 1rem;
    }

    .skill-category h3 {
        font-size: 1.3rem;
    }

    .certification-card {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .about-description p {
        font-size: 0.9rem;
    }

    .skill-category h3 {
        font-size: 1.2rem;
    }

    .certification-card {
        padding: 0.8rem;
}
}

/* Visitor Counter Styles */
.visitor-counter {
    margin: auto 0;
    padding: 1rem 0; /* Reduced from 1.5rem */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.8rem 1rem; /* Reduced from 1rem 1.5rem */
    background: var(--card-bg);
    border-radius: 12px;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.counter-container:hover {
    background: var(--hover-bg);
    transform: translateY(-2px);
}

.counter-icon {
    color: var(--neon-accent);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px var(--text-glow));
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.counter-label {
    font-size: 0.7rem; /* Reduced from 0.8rem */
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-value {
    font-size: 1rem; /* Reduced from 1.2rem */
    font-weight: 600;
    color: var(--neon-accent);
    text-shadow: 0 0 10px var(--text-glow);
}

/* Add this to your existing media queries */
@media (max-width: 768px) {
    .counter-container {
        padding: 0.8rem 1rem;
    }
    
    .counter-icon {
        font-size: 1rem;
    }
    
    .counter-value {
        font-size: 1rem;
    }
}

/* Experience Section Styles */
.experience-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem; /* Match padding with other sections */
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for full width cards */
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem;
    width: 100%;
}

.experience-card {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Media queries for consistent responsive behavior */
@media (max-width: 768px) {
    .experience-container {
        padding: 2rem;
    }

    .experience-grid {
        padding: 0.5rem;
        gap: 1.5rem;
    }

    .experience-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .experience-container {
        padding: 1.5rem;
    }

    .experience-grid {
        padding: 0;
        gap: 1rem;
    }

    .experience-card {
        padding: 1rem;
    }
}

.experience-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-card:hover {
    transform: translateY(-5px);
    background: var(--hover-bg);
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.1);
}

.exp-header {
    margin-bottom: 1.5rem;
}

.exp-company {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.exp-company h3 {
    color: var(--neon-accent);
    font-size: 1.3rem;
    font-weight: 600;
}

.exp-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.exp-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.exp-brief {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 5px 0;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.experience-details {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);  /* semi-transparent background */
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;  /* white text color */
}

.experience-details ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.experience-details li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.experience-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;  /* bullet point color */
}

/* Animation for smooth appearance */
.experience-details.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Portfolio Section Styles */
.portfolio-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem;
    justify-items: center;
}

/* Ensure consistent card sizing for 3 projects */
@media (min-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Enhanced Project Cards */
.project-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: var(--accent-primary);
}

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

/* Project Card Variants */
.featured-project {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.showcase-project {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.development-project {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
}

/* Project Icon */
.project-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 20px;
    margin: 2rem 2rem 0 2rem;
    align-self: flex-start;
}

.project-icon i {
    font-size: 2rem;
    color: var(--text-primary);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Project Content */
.project-content {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.project-header h3 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Status Badges */
.project-status {
    margin-left: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-secondary);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.live {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-primary);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-badge.in-progress {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Project Description */
.project-description {
    margin-bottom: 1.5rem;
}

.project-description p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Project Highlights */
.project-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.highlight-item i {
    font-size: 0.9rem;
    color: var(--accent-primary);
}

.highlight-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Enhanced Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
}

.tech-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Specific tech tag colors */
.tech-tag.python { background: rgba(255, 212, 59, 0.15); color: #FFD43B; border: 1px solid rgba(255, 212, 59, 0.3); }
.tech-tag.aws { background: rgba(255, 153, 0, 0.15); color: #FF9900; border: 1px solid rgba(255, 153, 0, 0.3); }
.tech-tag.terraform { background: rgba(123, 66, 188, 0.15); color: #7B42BC; border: 1px solid rgba(123, 66, 188, 0.3); }
.tech-tag.lambda { background: rgba(255, 153, 0, 0.15); color: #FF9900; border: 1px solid rgba(255, 153, 0, 0.3); }
.tech-tag.dynamodb { background: rgba(55, 119, 188, 0.15); color: #3777BC; border: 1px solid rgba(55, 119, 188, 0.3); }
.tech-tag.cloudfront { background: rgba(255, 153, 0, 0.15); color: #FF9900; border: 1px solid rgba(255, 153, 0, 0.3); }
.tech-tag.javascript { background: rgba(247, 223, 30, 0.15); color: #F7DF1E; border: 1px solid rgba(247, 223, 30, 0.3); }
.tech-tag.data { background: rgba(16, 185, 129, 0.15); color: var(--accent-secondary); border: 1px solid rgba(16, 185, 129, 0.3); }
.tech-tag.monitoring { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); border: 1px solid rgba(139, 92, 246, 0.3); }
.tech-tag.logs { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); border: 1px solid rgba(236, 72, 153, 0.3); }
.tech-tag.react { background: rgba(97, 218, 251, 0.15); color: #61DAFB; border: 1px solid rgba(97, 218, 251, 0.3); }
.tech-tag.nextjs { background: rgba(255, 255, 255, 0.15); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); }
.tech-tag.typescript { background: rgba(49, 120, 198, 0.15); color: #3178C6; border: 1px solid rgba(49, 120, 198, 0.3); }
.tech-tag.tailwind { background: rgba(56, 178, 172, 0.15); color: #38B2AC; border: 1px solid rgba(56, 178, 172, 0.3); }
.tech-tag.vercel { background: rgba(255, 255, 255, 0.15); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); }
.tech-tag.claude-code { background: rgba(216, 126, 68, 0.15); color: #D87E44; border: 1px solid rgba(216, 126, 68, 0.3); }
.tech-tag.vite { background: rgba(100, 108, 255, 0.15); color: #646CFF; border: 1px solid rgba(100, 108, 255, 0.3); }
.tech-tag.shadcn { background: rgba(255, 255, 255, 0.15); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); }

.tech-tag:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* Project Footer */
.project-footer {
    padding: 1.5rem 2rem 2rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    justify-content: center;
}

.project-link.primary {
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: 2px solid transparent;
}

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

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

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.project-link.secondary:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
}

.project-link:hover::before {
    left: 100%;
}

.project-link i {
    font-size: 1rem;
}

/* Portfolio section background */
#portfolio {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(59, 130, 246, 0.02) 50%, rgba(16, 185, 129, 0.02) 100%);
    position: relative;
}

#portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Media queries for portfolio */
@media (max-width: 768px) {
    .portfolio-container {
        padding: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0.5rem;
    }
    
    .project-icon {
        width: 60px;
        height: 60px;
        margin: 1.5rem 1.5rem 0 1.5rem;
    }
    
    .project-icon i {
        font-size: 1.5rem;
    }
    
    .project-content {
        padding: 1rem 1.5rem;
    }
    
    .project-header h3 {
        font-size: 1.3rem;
    }
    
    .project-highlights {
        gap: 0.5rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .project-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .project-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .project-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .portfolio-container {
        padding: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-footer {
        padding: 1rem;
    }
    
    .project-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .project-status {
        margin-left: 0;
    }
    
    .project-header h3 {
        font-size: 1.2rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}

