/* ============================================
   PREMIUM PORTFOLIO - BEST UI/UX DESIGN
   Modern, Clean, Professional Theme
   ============================================ */

/* CSS Variables - Premium Modern Color System */
:root {
    /* Primary Brand Colors - Modern Indigo/Blue */
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;
    --primary-200: #c7d2fe;
    
    /* Accent Colors - Vibrant Purple/Pink */
    --accent: #a855f7;
    --accent-light: #c084fc;
    --accent-dark: #9333ea;
    --accent-50: #faf5ff;
    
    /* Success & Info Colors */
    --success: #10b981;
    --success-light: #34d399;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Neutral Palette - Clean & Modern */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Background System */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-dark: #0f172a;
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Border & Effects */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.4);
    --shadow-primary: 0 10px 40px -10px rgba(79, 70, 229, 0.3);
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-hero: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    --gradient-card: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition-all: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
}

/* ============================================
   NAVIGATION - Premium Glass Effect
   ============================================ */

.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    padding: 1.25rem 0;
    transition: var(--transition-all);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border-color);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 60px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    transition: var(--transition-all);
}

.navbar.scrolled .navbar-logo {
    height: 55px;
    max-width: 240px;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem !important;
    margin: 0 0.125rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-all);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-all);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-50);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ============================================
   HERO SECTION - Premium Design
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    top: -350px;
    right: -350px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    bottom: -300px;
    left: -300px;
    animation-delay: 7s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.15);
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 70px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

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

.hero-buttons .btn {
    border-radius: var(--radius-xl);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    transition: var(--transition-all);
    box-shadow: var(--shadow-md);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 400px;
    height: 400px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    color: white;
}

.btn-outline-light {
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline-light:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-size: 1.125rem;
    transition: var(--transition-all);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    height: 550px;
}

.hero-avatar {
    width: 340px;
    height: 340px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 6px solid var(--white);
    overflow: hidden;
}

.avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.15;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.25;
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover {
    transform: scale(1.08);
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.avatar-fallback i {
    font-size: 7rem;
    color: white;
    opacity: 0.9;
}

.floating-card {
    position: absolute;
    width: 75px;
    height: 75px;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    animation: floatCard 7s ease-in-out infinite;
}

.card-1 {
    top: 8%;
    right: 8%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 18%;
    right: 3%;
    animation-delay: 2.5s;
}

.card-3 {
    top: 48%;
    left: 3%;
    animation-delay: 5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    animation: bounce 2.5s infinite;
}

.scroll-down span {
    width: 3px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.scroll-down span:nth-child(2) {
    height: 25px;
    opacity: 0.7;
}

.scroll-down span:nth-child(3) {
    height: 15px;
    opacity: 0.5;
}

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

/* ============================================
   SECTIONS
   ============================================ */

.section-padding {
    padding: var(--space-24) 0;
    position: relative;
}

.bg-alt {
    background: var(--bg-secondary);
}

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

.section-label {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px 0 rgba(79, 70, 229, 0.1);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 550px;
    background: var(--gradient-primary);
    border-radius: var(--radius-3xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: var(--radius-3xl);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .about-profile-image {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    z-index: 2;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    padding: 1rem 1.75rem;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--text-primary);
    font-weight: 700;
    box-shadow: var(--shadow-xl);
    z-index: 3;
    animation: floatBadge 5s ease-in-out infinite;
}

.badge-1 {
    top: 18%;
    right: -25px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 18%;
    left: -25px;
    animation-delay: 2.5s;
}

.floating-badge i {
    color: var(--primary);
    font-size: 1.625rem;
}

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

.about-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.about-text {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: var(--radius-2xl);
    transition: var(--transition-all);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2), 0 10px 10px -5px rgba(79, 70, 229, 0.1);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.625rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* ============================================
   SKILLS SECTION
   ============================================ */

.skill-card {
    padding: 2.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: var(--radius-2xl);
    transition: var(--transition-all);
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.skill-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2), 0 10px 10px -5px rgba(79, 70, 229, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 1) 100%);
}

.skill-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.skill-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.125rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.skill-description {
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    font-size: 1rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    padding: 0.625rem 1.25rem;
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-all);
}

.skill-tag:hover {
    background: var(--primary-50);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.timeline {
    position: relative;
    padding: 2.5rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 3.5rem;
}

.timeline-marker {
    position: absolute;
    left: 22px;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--gradient-primary);
    border: 5px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md), 0 0 0 4px var(--primary-50);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: var(--transition-all);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: translateX(12px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2), 0 10px 10px -5px rgba(79, 70, 229, 0.1);
}

.timeline-date {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.timeline-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.timeline-company {
    color: var(--primary);
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.timeline-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

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

.timeline-list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-size: 1rem;
}

.timeline-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.125rem;
}

/* ============================================
   EDUCATION SECTION
   ============================================ */

.education-card {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: var(--radius-2xl);
    transition: var(--transition-all);
    height: 100%;
    display: flex;
    gap: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.education-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2), 0 10px 10px -5px rgba(79, 70, 229, 0.1);
}

.education-icon {
    width: 88px;
    height: 88px;
    min-width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    font-size: 2.75rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.education-content {
    flex: 1;
}

.education-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.875rem;
}

.education-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.education-institution {
    color: var(--primary);
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.education-date {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
    font-weight: 500;
}

.education-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.education-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.achievement-tag {
    padding: 0.375rem 0.875rem;
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   PROJECTS SECTION - Premium Cards
   ============================================ */

.project-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: var(--transition-all);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25), 0 10px 20px -5px rgba(79, 70, 229, 0.15);
}

.project-image {
    width: 100%;
    height: 280px;
    background: var(--gradient-card);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.project-image-content i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: floatIcon 4s ease-in-out infinite;
}

.project-image-content i:nth-child(1) {
    animation-delay: 0s;
}

.project-image-content i:nth-child(2) {
    animation-delay: 1.3s;
    font-size: 3.5rem;
}

.project-image-content i:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.95;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
}

/* Project-specific gradient backgrounds */
.project-image-events {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
}

.project-image-recipe {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f472b6 100%);
}

.project-image-gym {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
}

.project-image-amsvalue {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
}

/* Add decorative elements */
.project-image-events::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.project-image-recipe::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 25s linear infinite reverse;
}

.project-image-gym::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.project-image-amsvalue::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -25%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 18s linear infinite;
}

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.12;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-all);
}

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

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

.project-link {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition-all);
    box-shadow: var(--shadow-lg);
}

.project-link:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.project-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.625rem 1.25rem;
    background: var(--accent);
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.project-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.project-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.125rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    flex: 1;
    font-size: 1.0625rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.project-tech span {
    padding: 0.375rem 0.875rem;
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ============================================
   CERTIFICATES SECTION
   ============================================ */

.certificate-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: var(--transition-all);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.certificate-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2), 0 10px 10px -5px rgba(79, 70, 229, 0.1);
}

.certificate-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    font-size: 2.75rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.certificate-category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--primary-50);
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.certificate-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-issuer {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.certificate-card p {
    color: var(--text-secondary);
    margin-bottom: 0.625rem;
    font-size: 1rem;
}

.cert-date {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION - ULTRA MODERN DESIGN
   ============================================ */

.contact-section-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Contact Sidebar */
.contact-sidebar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    height: 100%;
    position: sticky;
    top: 100px;
    backdrop-filter: blur(10px);
}

.contact-sidebar-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.contact-sidebar-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-methods {
    margin-bottom: 2.5rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(243, 244, 246, 0.8) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: var(--transition-all);
    margin-bottom: 1rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.contact-method-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.2), 0 4px 6px -2px rgba(79, 70, 229, 0.1);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-all);
}

.email-icon {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.3);
}

.phone-icon {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    box-shadow: 0 4px 14px 0 rgba(168, 85, 247, 0.3);
}

.location-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.contact-method-item:hover .contact-method-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.contact-method-content {
    flex: 1;
}

.contact-method-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-method-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-method-arrow {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition-all);
}

.contact-method-item:hover .contact-method-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.social-link-new {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition-all);
}

.social-link-new:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Contact Form Container */
.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: var(--radius-2xl);
    padding: 3.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-light);
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.contact-form-new {
    margin-top: 1rem;
}

.input-group-new {
    margin-bottom: 1.5rem;
}

.input-group-new label {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    letter-spacing: 0.01em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--primary);
    font-size: 1.125rem;
    z-index: 2;
    pointer-events: none;
    transition: var(--transition-all);
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 1.125rem 1.5rem 1.125rem 3.75rem;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-all);
    outline: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.input-wrapper textarea {
    padding-top: 1.25rem;
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.textarea-wrapper .textarea-icon {
    top: 1.25rem;
    transform: translateY(0);
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1), 0 4px 6px -1px rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.btn-send-message {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-xl);
    color: white;
    font-weight: 700;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: var(--transition-all);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4), 0 4px 6px -2px rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-send-message::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-send-message:hover::before {
    width: 500px;
    height: 500px;
}

.btn-send-message:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-send-message:active {
    transform: translateY(-1px);
}

.btn-icon {
    transition: transform var(--transition-all);
}

.btn-send-message:hover .btn-icon {
    transform: translateX(4px) translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-sidebar {
        padding: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
        top: 0;
    }
    
    .contact-method-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .contact-method-item:hover {
        transform: translateY(-4px);
    }
    
    .contact-method-arrow {
        display: none;
    }
    
    .contact-social-links {
        justify-content: center;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-header {
        text-align: center;
    }
    
    .btn-send-message {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FOOTER - Professional Design
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--primary-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-all);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.125rem;
    min-width: 20px;
}

.footer-contact a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-all);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-contact span {
    color: var(--gray-400);
}

.footer-social-text {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

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

.social-link-footer {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--gray-400);
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition-all);
    backdrop-filter: blur(10px);
}

.social-link-footer:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin: 0;
}

.footer-copyright strong {
    color: var(--white);
    font-weight: 600;
}

.footer-made {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin: 0;
}

.footer-made strong {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-made .fa-heart {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-top {
        padding-bottom: 2rem;
    }
    
    .footer-brand-name {
        font-size: 1.5rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-copyright,
    .footer-made {
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-xl);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-all);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    border-radius: var(--radius-xl);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    transition: var(--transition-all);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

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

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.btn-outline-light {
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline-light:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .hero-image-wrapper {
        margin-top: 4rem;
    }
    
    .hero-avatar {
        width: 320px;
        height: 320px;
    }
    
    .timeline::before {
        left: 22px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-marker {
        left: 12px;
    }
    
    .education-card {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        height: 500px;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .floating-card {
        width: 65px;
        height: 65px;
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    :root {
        --space-24: 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
        min-height: 65px;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1.0625rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .hero-avatar {
        width: 300px;
        height: 300px;
    }
    
    .floating-card {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-image-wrapper {
        height: 450px;
    }
    
    .about-image {
        height: 450px;
    }
    
    .navbar-toggler {
        padding: 0.375rem 0.625rem;
    }
    
    .stat-card {
        padding: 2.25rem 1.75rem;
    }
    
    .skill-card {
        padding: 2.25rem;
    }
    
    .project-content {
        padding: 2.25rem;
    }
    
    .timeline-content {
        padding: 2.25rem;
    }
    
    .education-card {
        padding: 2.5rem;
    }
    
    .contact-sidebar-header h3 {
        font-size: 1.75rem;
    }
    
    .form-header h3 {
        font-size: 1.75rem;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        min-height: 60px;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .skill-card,
    .project-card,
    .certificate-card {
        padding: 1.75rem;
    }
    
    .about-title {
        font-size: 1.875rem;
    }
    
    .about-text {
        font-size: 1.0625rem;
    }
    
    .hero-avatar {
        width: 280px;
        height: 280px;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-image-wrapper {
        height: 400px;
    }
    
    .about-image {
        height: 400px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .navbar {
        padding: 0.875rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline::before {
        left: 18px;
    }
    
    .timeline-marker {
        left: 8px;
        width: 20px;
        height: 20px;
    }
    
    .timeline-content {
        padding: 1.75rem;
    }
    
    .education-card {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .education-icon {
        width: 72px;
        height: 72px;
        min-width: 72px;
        font-size: 2.25rem;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-content {
        padding: 2rem;
    }
    
    .certificate-icon {
        width: 72px;
        height: 72px;
        font-size: 2.25rem;
    }
    
    .contact-sidebar {
        padding: 1.75rem;
    }
    
    .contact-form-container {
        padding: 1.75rem 1.25rem;
    }
    
    .form-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.75rem;
    }
    
    .input-wrapper input,
    .input-wrapper textarea {
        padding: 1rem 1.25rem 1rem 3.25rem;
        font-size: 0.9375rem;
    }
    
    .input-icon {
        left: 1.25rem;
        font-size: 1rem;
    }
    
    .btn-send-message {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-method-item {
        padding: 1.25rem;
    }
    
    .contact-method-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.25rem;
    }
    
    .social-link,
    .social-link-new {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-label {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .skill-icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }
    
    .skill-title {
        font-size: 1.5rem;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .timeline-title {
        font-size: 1.5rem;
    }
    
    .education-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.min-vh-100 {
    min-height: 100vh;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 6px;
    border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4338ca 0%, #6d28d9 100%);
}

/* ============================================
   MOBILE-SPECIFIC UI/UX DESIGN
   Completely Different Design for Mobile
   ============================================ */

@media (max-width: 768px) {
    /* ============================================
       DISABLE ALL ANIMATIONS & HOVER EFFECTS ON MOBILE
       ============================================ */
    
    /* Disable all CSS animations */
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    
    /* Disable all hover effects on mobile */
    *:hover,
    *:focus,
    *:active {
        transform: none !important;
        transition: none !important;
    }
    
    /* Disable specific hover effects */
    .nav-link:hover,
    .nav-link:hover::before,
    .btn:hover,
    .btn:hover::before,
    .social-link:hover,
    .social-link-new:hover,
    .skill-card:hover,
    .project-card:hover,
    .certificate-card:hover,
    .timeline-content:hover,
    .education-card:hover,
    .stat-card:hover,
    .contact-method-item:hover,
    .project-link:hover,
    .profile-image:hover,
    .about-image:hover .about-profile-image,
    .hero-buttons .btn:hover,
    .hero-buttons .btn:hover::before,
    .scroll-indicator:hover,
    .back-to-top:hover,
    .social-link-footer:hover {
        transform: none !important;
        transition: none !important;
        box-shadow: none !important;
    }
    
    /* Disable AOS animations */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Disable floating animations */
    .gradient-orb,
    .floating-card,
    .floating-badge,
    .avatar-glow {
        animation: none !important;
    }
    
    /* Disable smooth scroll behavior on mobile for better performance */
    html {
        scroll-behavior: auto !important;
    }
    
    /* Mobile Body & Base Styles */
    body {
        -webkit-overflow-scrolling: touch;
        font-size: 15px;
        padding-bottom: 0;
    }
    
    /* Hide desktop-specific elements on mobile */
    .hero-background .gradient-orb {
        display: none;
    }
    
    /* Mobile Container Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Prevent text size adjustment on iOS */
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Mobile Navigation - Simple Top Bar */
    .navbar {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
        position: fixed;
        top: 0 !important;
        bottom: auto !important;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .navbar.scrolled {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar .container {
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-brand {
        display: block !important;
        font-size: 1.5rem;
    }
    
    .navbar-logo {
        height: 48px !important;
        width: auto;
        max-width: 200px !important;
    }
    
    .navbar-toggler {
        display: block !important;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        padding: 0.5rem;
        background: transparent;
        color: var(--text-primary);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Simple mobile menu */
    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid var(--border-color);
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        padding: 0.875rem 1rem !important;
        color: var(--text-secondary) !important;
        font-size: 0.9375rem !important;
        font-weight: 400;
        border-radius: 0;
        margin: 0;
        border: none !important;
        border-bottom: none !important;
        text-decoration: none;
    }
    
    .nav-link:hover {
        background: var(--gray-50);
        color: var(--text-primary) !important;
    }
    
    .nav-link i {
        display: none;
    }
    
    .nav-link span {
        display: inline;
    }
    
    .nav-link.active {
        color: var(--primary) !important;
        background: transparent;
        font-weight: 600;
        border: none !important;
        border-left: 3px solid var(--primary) !important;
        padding-left: calc(1rem - 3px) !important;
    }
    
    .nav-link.active::before {
        display: none !important;
    }
    
    .nav-link.active::after {
        display: none !important;
    }
    
    .nav-link::before {
        display: none !important;
    }
    
    .nav-link::after {
        display: none !important;
    }
    
    /* Mobile Hero Section - Compact Design */
    .hero-section {
        min-height: calc(100vh - 80px);
        padding: 2rem 0 3rem;
        padding-top: 100px;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
        min-height: 50px;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9375rem !important;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: var(--radius-xl);
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
        height: auto;
        padding: 0 1rem;
    }
    
    .hero-avatar {
        width: 200px !important;
        height: 200px !important;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Mobile About Section */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .about-image {
        height: 300px !important;
        border-radius: var(--radius-2xl);
    }
    
    .floating-badge {
        display: none;
    }
    
    .about-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-title {
        font-size: 1.75rem !important;
        margin-bottom: 1.5rem;
    }
    
    .about-text {
        font-size: 0.9375rem !important;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile Stats - Grid Layout */
    .stat-card {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1rem;
        border-radius: var(--radius-xl);
    }
    
    .stat-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Mobile Skills - Card Stack */
    .skill-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
        border-radius: var(--radius-xl);
    }
    
    .skill-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .skill-title {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem;
    }
    
    .skill-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .skill-tags {
        gap: 0.5rem;
    }
    
    .skill-tag {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    /* Mobile Experience - Vertical Cards */
    .timeline {
        padding: 1.5rem 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0 !important;
        margin-bottom: 1.5rem;
    }
    
    .timeline-marker {
        display: none;
    }
    
    .timeline-content {
        padding: 1.5rem !important;
        border-radius: var(--radius-xl);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .timeline-date {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .timeline-title {
        font-size: 1.25rem !important;
    }
    
    .timeline-company {
        font-size: 1rem;
    }
    
    .timeline-description {
        font-size: 0.9375rem;
    }
    
    .timeline-list {
        font-size: 0.875rem;
    }
    
    /* Mobile Education - Stacked Cards */
    .education-card {
        padding: 1.5rem !important;
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .education-icon {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px;
        font-size: 2rem !important;
        margin: 0 auto;
    }
    
    .education-title {
        font-size: 1.25rem !important;
    }
    
    .education-institution {
        font-size: 1rem;
    }
    
    .education-description {
        font-size: 0.875rem;
    }
    
    /* Mobile Projects - Full Width Cards */
    .project-card {
        margin-bottom: 1.5rem;
        border-radius: var(--radius-xl);
    }
    
    .project-image {
        height: 200px !important;
    }
    
    .project-content {
        padding: 1.5rem !important;
    }
    
    .project-title {
        font-size: 1.25rem !important;
    }
    
    .project-description {
        font-size: 0.875rem;
    }
    
    .project-tech span {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    /* Mobile Certificates - Grid */
    .certificate-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
    }
    
    .certificate-icon {
        width: 64px !important;
        height: 64px !important;
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .certificate-card h3 {
        font-size: 1.125rem !important;
        min-height: auto;
    }
    
    /* Mobile Contact - Stacked Layout */
    .contact-section-new {
        padding: 3rem 0;
    }
    
    .contact-sidebar {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
        position: relative;
        top: 0;
    }
    
    .contact-sidebar-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-sidebar-header h3 {
        font-size: 1.5rem !important;
    }
    
    .contact-method-item {
        padding: 1.25rem !important;
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-method-item:hover {
        transform: translateY(-4px) !important;
    }
    
    .contact-method-icon {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px;
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem;
    }
    
    .contact-method-arrow {
        display: none;
    }
    
    .contact-form-container {
        padding: 1.5rem !important;
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem !important;
    }
    
    .input-wrapper input,
    .input-wrapper textarea {
        padding: 1rem 1.25rem 1rem 3rem;
        font-size: 0.9375rem;
    }
    
    .input-icon {
        left: 1.125rem;
        font-size: 1rem;
    }
    
    .btn-send-message {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Mobile Section Headers */
    .section-header {
        margin-bottom: 2.5rem !important;
        padding: 0 1rem;
    }
    
    .section-label {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.9375rem !important;
        padding: 0 0.5rem;
    }
    
    .section-padding {
        padding: 3rem 0 !important;
    }
    
    /* Mobile Footer - Compact */
    .footer {
        padding: 2.5rem 0 6rem !important;
        margin-top: 3rem;
    }
    
    .footer-top {
        padding-bottom: 2rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-heading {
        font-size: 1rem !important;
        margin-bottom: 1rem;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
    }
    
    /* Mobile Back to Top - Smaller */
    .back-to-top {
        bottom: 30px !important;
        right: 20px;
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem !important;
    }
    
    /* Mobile Spacing Adjustments */
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Better touch targets */
    .btn,
    .nav-link,
    .social-link,
    .social-link-new,
    .contact-method-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* All hover effects already disabled above with universal selector */
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.375rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-avatar {
        width: 240px;
        height: 240px;
    }
    
    .hero-image-wrapper {
        height: 350px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .skill-card,
    .project-card,
    .certificate-card,
    .timeline-content,
    .education-card {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-sidebar,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .project-image {
        height: 200px;
    }
}
