/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Zionee Light Theme Colors */
    --zionee-primary: #4A6FA5;
    --zionee-secondary: #FF6B6B;
    --zionee-accent: #6BCF7F;
    --zionee-comfort: #FFD166;
    --zionee-light: #F8F9FA;
    --zionee-dark: #212529;
    --zionee-gray: #6C757D;
    --zionee-light-gray: #E9ECEF;
    
    /* Zionee Dark Theme Colors */
    --zionee-night: #0F1B2D;
    --zionee-glow: #00D4FF;
    --zionee-comfort-dark: #FFB347;
    --zionee-dark-light: #1E293B;
    --zionee-dark-gray: #94A3B8;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 20px rgba(74, 111, 165, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;
    
    /* Current Theme Variables */
    --background-primary: var(--zionee-light);
    --background-secondary: #FFFFFF;
    --text-primary: var(--zionee-dark);
    --text-secondary: var(--zionee-gray);
    --border-color: var(--zionee-light-gray);
    --card-bg: #FFFFFF;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Dark Theme Variables */
body.dark-theme {
    --background-primary: var(--zionee-night);
    --background-secondary: var(--zionee-dark-light);
    --text-primary: #FFFFFF;
    --text-secondary: var(--zionee-dark-gray);
    --border-color: #334155;
    --card-bg: var(--zionee-dark-light);
    --nav-bg: rgba(15, 27, 45, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.3);
}

/* Comfort Mode Variables */
body.comfort-mode {
    --zionee-comfort: #FFB347;
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-md: 0 6px 20px rgba(255, 179, 71, 0.15);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-night));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Force hide loading screen after page load */
body.loaded .loading-screen {
    display: none;
}

.zionee-loader {
    text-align: center;
}

.loader-z {
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-secondary);
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-glow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

.loader-text {
    font-size: 1.5rem;
    color: white;
    margin-top: 1rem;
    opacity: 0.9;
    animation: fadeInOut 3s ease-in-out infinite;
}

.comfort-wave {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--zionee-comfort), transparent);
    margin: 2rem auto 0;
    animation: wave 1.5s ease-in-out infinite;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 20px var(--shadow-color);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px var(--shadow-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-z {
    color: var(--zionee-primary);
    background-clip: text;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 900;
}

.logo-text {
    font-family: var(--font-secondary);
    font-weight: 700;
}

.logo-badge {
    font-size: 0.7rem;
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--zionee-primary), var(--zionee-accent));
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle,
.comfort-mode-toggle,
.nav-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.theme-toggle {
    background: var(--background-secondary);
    box-shadow: var(--shadow-sm);
}

.theme-toggle:hover {
    transform: rotate(15deg);
    box-shadow: var(--shadow-md);
}

.sun-icon,
.moon-icon {
    position: absolute;
    transition: all var(--transition-normal);
}

.sun-icon {
    opacity: 1;
    transform: scale(1);
}

.moon-icon {
    opacity: 0;
    transform: scale(0);
}

body.dark-theme .sun-icon {
    opacity: 0;
    transform: scale(0);
}

body.dark-theme .moon-icon {
    opacity: 1;
    transform: scale(1);
}

.comfort-mode-toggle {
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    color: white;
}

.comfort-mode-toggle.active {
    animation: pulse 2s infinite;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

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

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

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

/* ===== PARTICLE BACKGROUND ===== */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    opacity: 0.3;
    animation: float 20s infinite linear;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 2rem;
    background-image: url('../images/award-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.70) 50%,
        rgba(248, 249, 250, 0.68) 100%
    );
    z-index: 0;
    pointer-events: none;
}

body.dark-theme .hero::before {
    background: linear-gradient(
        135deg,
        rgba(15, 27, 45, 0.75) 0%,
        rgba(15, 27, 45, 0.72) 50%,
        rgba(30, 41, 59, 0.70) 100%
    );
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    opacity: 0.08;
    filter: blur(60px);
    animation: float 15s infinite ease-in-out;
    mix-blend-mode: soft-light;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    background: linear-gradient(45deg, var(--zionee-secondary), var(--zionee-comfort));
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    background: linear-gradient(45deg, var(--zionee-accent), var(--zionee-primary));
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 15%;
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    animation-delay: -7s;
}

/* Hero Wrapper - Single Column Layout */
.hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-content-main {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Hero Title Section - Photo and Name on Same Line */
.hero-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Profile Photo Styles - Smaller for inline display */
.profile-photo-container {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    animation: fadeIn 1s ease;
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--card-bg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 
                0 0 0 15px rgba(74, 111, 165, 0.1),
                0 0 60px rgba(74, 111, 165, 0.3);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    z-index: 2;
}

.profile-photo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 0 0 20px rgba(74, 111, 165, 0.15),
                0 0 80px rgba(74, 111, 165, 0.4);
}

/* Profile Initials Fallback */
.profile-initials {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent), var(--zionee-comfort));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-secondary);
    border: 6px solid var(--card-bg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3), 
                0 0 0 15px rgba(74, 111, 165, 0.1),
                0 0 60px rgba(74, 111, 165, 0.3);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    z-index: 2;
    animation: fadeIn 0.5s ease;
}

.profile-initials:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 0 0 20px rgba(74, 111, 165, 0.15),
                0 0 80px rgba(74, 111, 165, 0.4);
}

.profile-initials span {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 3s infinite;
}

.photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    opacity: 0.3;
    filter: blur(30px);
    animation: pulse 3s infinite;
    z-index: 1;
}

/* Hero Title - Aligned with Photo */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0;
    color: var(--text-primary);
    font-weight: 800;
    text-align: left;
}

.title-line {
    display: block;
}

/* Achievement Tags Below Photo */
.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem auto;
    max-width: 800px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.1rem;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.08), rgba(107, 207, 127, 0.08));
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.tag-item:hover::before {
    left: 100%;
}

.tag-item:hover {
    transform: translateX(8px);
    border-color: var(--zionee-primary);
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.15), rgba(107, 207, 127, 0.15));
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.2);
}

.tag-item.featured {
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 20px rgba(74, 111, 165, 0.3);
}

.tag-item.featured:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 6px 25px rgba(74, 111, 165, 0.4);
}

.tag-item i {
    font-size: 1.1rem;
    color: var(--zionee-accent);
}

.tag-item.featured i {
    color: var(--zionee-comfort);
    animation: bounce 2s infinite;
}

body.dark-theme .tag-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 179, 71, 0.1));
    border-color: transparent;
}

body.dark-theme .tag-item:hover {
    border-color: var(--zionee-glow);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 179, 71, 0.2));
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

body.dark-theme .tag-item.featured {
    background: linear-gradient(135deg, var(--zionee-glow), var(--zionee-accent));
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

body.dark-theme .tag-item i {
    color: var(--zionee-glow);
}

/* Social Links - Below Content */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-link:nth-child(1):hover { background: #0077B5; color: white; }
.social-link:nth-child(2):hover { background: #333; color: white; }
.social-link:nth-child(3):hover { background: #1DA1F2; color: white; }
.social-link:nth-child(4):hover { background: var(--zionee-primary); color: white; }

/* Right Side - Content Removed, Now Single Column */
.hero-right {
    text-align: center;
}

.comfort-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
}

.title-line {
    display: block;
}

/* All Badges in Single Line */
.all-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.all-badges-container .role-badge,
.all-badges-container .tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.all-badges-container .role-badge.primary {
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
}

.all-badges-container .tag-item.featured {
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(74, 111, 165, 0.3);
}

.all-badges-container .tag-item {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(107, 207, 127, 0.1));
    border: 2px solid rgba(74, 111, 165, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.all-badges-container .role-badge:hover,
.all-badges-container .tag-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 111, 165, 0.4);
}

.all-badges-container .tag-item.featured i {
    color: var(--zionee-comfort);
}

.all-badges-container .tag-item i {
    color: var(--zionee-accent);
}

body.dark-theme .all-badges-container .role-badge.primary,
body.dark-theme .all-badges-container .tag-item.featured {
    background: linear-gradient(135deg, var(--zionee-glow), var(--zionee-accent));
}

body.dark-theme .all-badges-container .tag-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 179, 71, 0.1));
    border-color: rgba(0, 212, 255, 0.2);
}

body.dark-theme .all-badges-container .tag-item i {
    color: var(--zionee-glow);
}

/* Role Badges */
.role-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.role-badge.primary {
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
}

.role-badge.secondary {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(107, 207, 127, 0.1));
    color: var(--zionee-primary);
    border: 2px solid var(--zionee-primary);
}

.role-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 111, 165, 0.4);
}

/* Hero Tagline with Typing */
.hero-tagline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--zionee-accent);
    margin-bottom: 2rem;
}

.hero-tagline i {
    font-size: 1.5rem;
    color: var(--zionee-comfort);
}

.typing-text {
    color: var(--zionee-primary);
    font-weight: 600;
}

.cursor {
    color: var(--zionee-accent);
    animation: blink 1s infinite;
    font-weight: 300;
}

/* About Me Section */
.about-me-section,
.my-story-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.08), rgba(107, 207, 127, 0.08));
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--zionee-primary);
    backdrop-filter: blur(10px);
}

body.dark-theme .about-me-section,
body.dark-theme .my-story-section {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.15), rgba(107, 207, 127, 0.15));
}

.section-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.about-text,
.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    opacity: 0.9;
}

.highlight {
    color: var(--zionee-primary);
    font-weight: 600;
    opacity: 1;
}

.highlight-quote {
    display: inline-block;
    color: var(--zionee-accent);
    font-style: italic;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: rgba(107, 207, 127, 0.1);
    border-radius: 4px;
}

/* Learn More Button */
.learn-more-container {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0;
}

.btn-learn-more {
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 24px rgba(74, 111, 165, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.btn-learn-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(74, 111, 165, 0.4);
}

.learn-more-icon {
    transition: transform var(--transition-normal);
    animation: bounce 2s infinite;
}

.btn-learn-more:hover .learn-more-icon {
    transform: translateY(3px);
}

.btn-learn-more.active .learn-more-icon {
    transform: rotate(180deg);
}

/* Coding Stats Section */
.coding-stats-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease,
                margin 0.6s ease;
    margin: 0;
}

.coding-stats-section.expanded {
    max-height: 2000px;
    opacity: 1;
    margin: 2rem 0;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease;
}

.btn-hide {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.btn-hide:hover {
    background: var(--zionee-primary);
    color: white;
    border-color: var(--zionee-primary);
    transform: translateY(-2px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.stat-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    animation: scaleIn 0.6s ease backwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--zionee-primary);
}

.stat-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.stat-card-header i {
    font-size: 1.8rem;
    color: var(--zionee-primary);
}

.stat-card-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* LeetCode Stats */
.leetcode-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.leetcode-circle {
    position: relative;
    width: 180px;
    height: 180px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 12;
}

.progress-ring-progress {
    fill: none;
    stroke: url(#leetcodeGradient);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 471;
    stroke-dashoffset: 400;
    animation: progressAnimation 2s ease-out forwards;
}

.leetcode-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.solved-count {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--zionee-primary);
    margin-bottom: 0.3rem;
}

.solved-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.solved-label i {
    color: var(--zionee-accent);
    font-size: 0.8rem;
}

.attempting {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.leetcode-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.difficulty-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.difficulty-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.difficulty-dot.easy {
    background: #00b8a3;
}

.difficulty-dot.medium {
    background: #ffc01e;
}

.difficulty-dot.hard {
    background: #ef4743;
}

.difficulty-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 50px;
}

.difficulty-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* GitHub Stats */
.github-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.repo-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(107, 207, 127, 0.1));
    border-radius: var(--radius-md);
}

.count-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.count-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.github-heatmap {
    margin-top: 1rem;
}

.heatmap-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(53, 1fr);
    gap: 3px;
    margin-bottom: 0.8rem;
}

.heatmap-cell {
    aspect-ratio: 1;
    border-radius: 2px;
    background: var(--border-color);
    transition: all var(--transition-fast);
    animation: cellFadeIn 0.3s ease backwards;
}

.heatmap-cell:hover {
    transform: scale(1.3);
    z-index: 10;
}

.heatmap-cell.level-0 {
    background: var(--border-color);
}

.heatmap-cell.level-1 {
    background: #9be9a8;
}

.heatmap-cell.level-2 {
    background: #40c463;
}

.heatmap-cell.level-3 {
    background: #30a14e;
}

.heatmap-cell.level-4 {
    background: #216e39;
}

.heatmap-legend {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.legend-squares {
    display: flex;
    gap: 3px;
}

.legend-square {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-square.level-0 {
    background: var(--border-color);
}

.legend-square.level-1 {
    background: #9be9a8;
}

.legend-square.level-2 {
    background: #40c463;
}

.legend-square.level-3 {
    background: #30a14e;
}

.legend-square.level-4 {
    background: #216e39;
}

/* Contribution Stats */
.contribution-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.contribution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.08), rgba(107, 207, 127, 0.08));
    border-radius: var(--radius-md);
    border-left: 3px solid transparent;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contribution-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--zionee-primary), var(--zionee-accent));
    transition: all var(--transition-normal);
}

.contribution-item:hover {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.15), rgba(107, 207, 127, 0.15));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 111, 165, 0.15);
}

.contribution-item:hover::before {
    width: 5px;
}

.contribution-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent));
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(74, 111, 165, 0.2);
    transition: all var(--transition-normal);
}

.contribution-item:nth-child(1) .contribution-icon {
    background: linear-gradient(135deg, #4A6FA5, #5B8CC9);
}

.contribution-item:nth-child(2) .contribution-icon {
    background: linear-gradient(135deg, #6BCF7F, #4CAF50);
}

.contribution-item:nth-child(3) .contribution-icon {
    background: linear-gradient(135deg, #FFD166, #FFC107);
}

.contribution-item:nth-child(4) .contribution-icon {
    background: linear-gradient(135deg, #FF6B6B, #F44336);
}

.contribution-item:hover .contribution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(74, 111, 165, 0.3);
}

.contribution-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.2rem;
}

.contribution-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    font-family: var(--font-secondary);
}

.contribution-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Dark Theme Support for Contributions */
body.dark-theme .contribution-item {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.12), rgba(107, 207, 127, 0.12));
}

body.dark-theme .contribution-item:hover {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.2), rgba(107, 207, 127, 0.2));
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
}

body.dark-theme .contribution-icon {
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

body.dark-theme .contribution-item:hover .contribution-icon {
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.35);
}

/* Animations */
@keyframes progressAnimation {
    to {
        stroke-dashoffset: 71;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cellFadeIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

/* Profile Photo Styles */
.profile-photo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    animation: fadeIn 1s ease;
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--card-bg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 
                0 0 0 10px rgba(74, 111, 165, 0.1),
                0 0 40px rgba(74, 111, 165, 0.2);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    z-index: 2;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 
                0 0 0 15px rgba(74, 111, 165, 0.15),
                0 0 60px rgba(74, 111, 165, 0.3);
}

/* Profile Initials Fallback */
.profile-initials {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent), var(--zionee-comfort));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-secondary);
    border: 5px solid var(--card-bg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 
                0 0 0 10px rgba(74, 111, 165, 0.1),
                0 0 40px rgba(74, 111, 165, 0.2);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    z-index: 2;
    animation: fadeIn 0.5s ease;
}

.profile-initials:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 
                0 0 0 15px rgba(74, 111, 165, 0.15),
                0 0 60px rgba(74, 111, 165, 0.3);
}

.profile-initials span {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 3s infinite;
}

body.dark-theme .profile-initials {
    background: linear-gradient(135deg, var(--zionee-glow), var(--zionee-primary), var(--zionee-comfort-dark));
    border-color: var(--zionee-dark-light);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3), 
                0 0 0 10px rgba(0, 212, 255, 0.1),
                0 0 40px rgba(0, 212, 255, 0.2);
}

body.dark-theme .profile-initials:hover {
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4), 
                0 0 0 15px rgba(0, 212, 255, 0.15),
                0 0 60px rgba(0, 212, 255, 0.3);
}

.photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 3s infinite;
    z-index: 1;
}

.professional-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--zionee-primary);
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(107, 207, 127, 0.1));
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    border: 2px solid rgba(74, 111, 165, 0.2);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.professional-title:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 111, 165, 0.2);
    border-color: var(--zionee-primary);
}

.professional-title i {
    color: var(--zionee-accent);
    font-size: 1.1rem;
}

body.dark-theme .profile-photo {
    border-color: var(--zionee-dark-light);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3), 
                0 0 0 10px rgba(0, 212, 255, 0.1),
                0 0 40px rgba(0, 212, 255, 0.2);
}

body.dark-theme .profile-photo:hover {
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4), 
                0 0 0 15px rgba(0, 212, 255, 0.15),
                0 0 60px rgba(0, 212, 255, 0.3);
}

body.dark-theme .photo-glow {
    background: linear-gradient(45deg, var(--zionee-glow), var(--zionee-comfort-dark));
}

body.dark-theme .professional-title {
    color: var(--zionee-glow);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 179, 71, 0.1));
    border-color: rgba(0, 212, 255, 0.3);
}

body.dark-theme .professional-title:hover {
    border-color: var(--zionee-glow);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.comfort-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--zionee-primary);
    width: 0;
    overflow: hidden;
    animation: textReveal 1.5s ease forwards;
    animation-delay: 0.5s;
}

.title-line:nth-child(2)::before {
    animation-delay: 1s;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    min-height: 2.5rem;
}

.typing-text {
    display: inline-block;
    position: relative;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
}

.hero-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--zionee-gray);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    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::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    box-shadow: 0 4px 20px rgba(74, 111, 165, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 111, 165, 0.4);
}

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

.btn-secondary:hover {
    background: var(--zionee-primary);
    color: white;
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: var(--shadow-md);
}

.social-link:nth-child(1):hover { background: #0077B5; }
.social-link:nth-child(2):hover { background: #333; }
.social-link:nth-child(3):hover { background: #1DA1F2; }
.social-link:nth-child(4):hover { background: var(--zionee-primary); }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--zionee-primary);
    border-radius: 15px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--zionee-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.scroll-indicator p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--zionee-primary);
    background: rgba(74, 111, 165, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--zionee-primary), var(--zionee-accent));
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ===== EXPERIENCE TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--zionee-primary), var(--zionee-accent));
}

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

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--background-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 1;
    transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.comfort-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.timeline-content {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1rem;
    color: var(--zionee-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.comfort-tag {
    display: inline-block;
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.tech-tag {
    background: rgba(74, 111, 165, 0.1);
    color: var(--zionee-primary);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== EDUCATION ===== */
.education {
    padding: var(--section-padding);
    background: var(--background-primary);
}

.education-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.education-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--zionee-primary), var(--zionee-accent));
    transform: translateX(-50%);
}

.education-item {
    position: relative;
    margin-bottom: 4rem;
}

.education-year {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: var(--zionee-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
}

.education-card {
    width: calc(50% - 3rem);
    margin-top: 3rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    gap: 1.5rem;
}

.education-item:nth-child(odd) .education-card {
    margin-left: auto;
}

.education-item:nth-child(even) .education-card {
    margin-right: auto;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    width: 20px;
    height: 20px;
    background: var(--zionee-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 6px var(--background-primary);
}

.education-item:nth-child(odd) .education-card::before {
    left: -3rem;
}

.education-item:nth-child(even) .education-card::before {
    right: -3rem;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 111, 165, 0.2);
}

.education-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
}

.education-content {
    flex: 1;
}

.education-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.education-content h4 {
    font-size: 1.1rem;
    color: var(--zionee-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.education-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.detail-item i {
    color: var(--zionee-accent);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.detail-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.detail-item strong {
    color: var(--zionee-primary);
    font-weight: 700;
}

.education-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.education-badge.current {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    color: #FF9800;
    border: 2px solid #FF9800;
}

.education-badge.completed {
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.2), rgba(76, 175, 80, 0.2));
    color: var(--zionee-accent);
    border: 2px solid var(--zionee-accent);
}

/* Dark theme support for education */
body.dark-theme .education-timeline::before {
    background: linear-gradient(180deg, var(--zionee-glow), var(--zionee-accent));
}

body.dark-theme .education-card::before {
    box-shadow: 0 0 0 6px var(--background-primary);
}

/* ===== ACHIEVEMENTS ===== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.achievement-card.featured-achievement {
    grid-column: span 2;
}

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

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(74, 111, 165, 0.2);
}

.achievement-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(107, 207, 127, 0.1));
}

.achievement-card.featured-achievement .achievement-image {
    height: 350px;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.achievement-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
}

.achievement-badge.trophy {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.achievement-badge.medal {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.achievement-badge.certificate {
    background: linear-gradient(135deg, #4A6FA5, #6BCF7F);
}

.achievement-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.achievement-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: var(--font-secondary);
}

.achievement-card.featured-achievement .achievement-content h3 {
    font-size: 1.8rem;
}

.achievement-content h4 {
    font-size: 1.1rem;
    color: var(--zionee-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.achievement-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.achievement-year {
    display: inline-block;
    background: rgba(74, 111, 165, 0.1);
    color: var(--zionee-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.achievement-tag.winner {
    background: linear-gradient(135deg, #6BCF7F, #4CAF50);
    color: white;
}

.achievement-tag.first {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.achievement-tag.runner {
    background: linear-gradient(135deg, #FF6B6B, #F44336);
    color: white;
}

/* Dark theme support for achievements */
body.dark-theme .achievement-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-theme .achievement-card:hover {
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

/* ===== SKILLS ===== */
/* ===== SKILLS SECTION ===== */
.skills {
    padding: var(--section-padding);
    background: var(--background-primary);
}

.skill-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.skill-tab {
    padding: 0.8rem 2rem;
    background: var(--background-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.skill-tab:hover {
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(107, 207, 127, 0.1));
    border-color: var(--zionee-primary);
}

.skill-tab.active {
    background: linear-gradient(135deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(74, 111, 165, 0.3);
}

.skill-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.skill-tab-content.active {
    display: block;
}

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

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-card {
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--zionee-primary);
}

.skill-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.1), rgba(107, 207, 127, 0.1));
    border-radius: var(--radius-md);
    font-size: 2.5rem;
    transition: all var(--transition-normal);
}

.skill-card:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(74, 111, 165, 0.2), rgba(107, 207, 127, 0.2));
}

.skill-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Dark Theme for Skills */
body.dark-theme .skill-card {
    background: var(--card-bg);
    border-color: #334155;
}

body.dark-theme .skill-card:hover {
    border-color: var(--zionee-glow);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

body.dark-theme .skill-tab {
    background: var(--card-bg);
}

body.dark-theme .skill-tab:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(107, 207, 127, 0.1));
    border-color: var(--zionee-glow);
}

body.dark-theme .skill-tab.active {
    background: linear-gradient(135deg, var(--zionee-glow), var(--zionee-accent));
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* ===== FIELD VISITS ===== */
.visits-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.visit-card {
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.visit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.visit-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.visit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.visit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.comfort-insight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--zionee-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

.comfort-insight i {
    color: var(--zionee-comfort);
}

.visit-content {
    padding: 1.5rem;
}

.visit-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zionee-primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.visit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.visit-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.visit-date {
    display: inline-block;
    background: rgba(74, 111, 165, 0.1);
    color: var(--zionee-primary);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

.visit-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.15), rgba(74, 111, 165, 0.15));
    color: var(--zionee-accent);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border: 1px solid rgba(107, 207, 127, 0.3);
}

.visit-category i {
    font-size: 0.8rem;
}

body.dark-theme .visit-category {
    background: linear-gradient(135deg, rgba(107, 207, 127, 0.2), rgba(74, 111, 165, 0.2));
    border-color: rgba(107, 207, 127, 0.4);
}

/* ===== PROJECTS ===== */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--background-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.project-card.featured-project {
    grid-column: span 2;
}

.project-card.featured-project .project-image {
    height: 350px;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.project-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.badge-comfort {
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
}

.badge-innovation {
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
}

.badge-special {
    background: linear-gradient(45deg, var(--zionee-accent), var(--zionee-primary));
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.comfort-factor span {
    font-weight: 600;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: var(--zionee-comfort);
    font-size: 0.9rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-badge {
    background: rgba(74, 111, 165, 0.1);
    color: var(--zionee-primary);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

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

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zionee-primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.project-link:hover {
    color: var(--zionee-accent);
    transform: translateX(5px);
}

.project-link.disabled {
    color: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.6;
}

.project-link.disabled:hover {
    transform: none;
    color: var(--text-secondary);
}

/* ===== BLOG ===== */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-category {
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
}

.comfort-corner {
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    color: white;
}

.innovation {
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
}

.tutorial {
    background: linear-gradient(45deg, var(--zionee-accent), var(--zionee-primary));
    color: white;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zionee-primary);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.read-more:hover {
    gap: 1rem;
    color: var(--zionee-accent);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.reading-progress {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
}

.progress-ring {
    width: 100%;
    height: 100%;
    border: 3px solid var(--zionee-primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 2s linear infinite;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.tag {
    background: rgba(74, 111, 165, 0.1);
    color: var(--zionee-primary);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

/* ===== CONTACT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background: var(--background-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--zionee-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.info-card a:hover {
    color: var(--zionee-accent);
}

.comfort-quote-card {
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    margin-top: 1rem;
}

.comfort-quote-card i {
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.comfort-quote-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.comfort-quote-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--background-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--background-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--zionee-primary);
    box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zionee-primary);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    padding-top: 1rem;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
}

.form-success i {
    font-size: 4rem;
    color: var(--zionee-accent);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--background-secondary);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--zionee-comfort), var(--zionee-secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    width: fit-content;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--zionee-primary);
    padding-left: 0.5rem;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--background-primary);
    color: var(--text-primary);
}

.newsletter-form button {
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p i {
    color: var(--zionee-secondary);
    margin: 0 0.3rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--zionee-primary);
    color: white;
    transform: translateY(-3px);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--zionee-primary), var(--zionee-accent));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px var(--zionee-primary));
    }
    100% {
        filter: drop-shadow(0 0 20px var(--zionee-glow));
    }
}

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

@keyframes wave {
    0%, 100% {
        transform: scaleX(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes textReveal {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

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

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

@keyframes scroll {
    0% {
        transform: translateY(0) translateX(-50%);
        opacity: 1;
    }
    100% {
        transform: translateY(20px) translateX(-50%);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 111, 165, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(74, 111, 165, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Hero sections should be visible immediately */
.hero-left,
.hero-right {
    opacity: 1 !important;
    transform: none !important;
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-100deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Hero Title Section Responsive */
    .hero-title-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .profile-photo-container {
        width: 160px;
        height: 160px;
    }
    
    .photo-glow {
        width: 180px;
        height: 180px;
    }
    
    .achievement-tags {
        gap: 0.6rem;
    }
    
    .tag-item {
        font-size: 0.8rem;
    }
    
    /* Achievements responsive */
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .achievement-card.featured-achievement {
        grid-column: span 1;
    }
    
    .achievement-image {
        height: 220px;
    }
    
    .achievement-card.featured-achievement .achievement-image {
        height: 250px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        box-shadow: 0 10px 30px var(--shadow-color);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .contact-wrapper,
    .featured-post {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    /* Hero background adjustments for mobile */
    .hero {
        background-attachment: scroll;
        background-position: center 15%;
    }
    
    .hero::before {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.80) 0%,
            rgba(255, 255, 255, 0.78) 100%
        );
    }
    
    body.dark-theme .hero::before {
        background: linear-gradient(
            135deg,
            rgba(15, 27, 45, 0.78) 0%,
            rgba(15, 27, 45, 0.76) 100%
        );
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Profile photo responsive for tablets */
    .profile-photo-container {
        width: 150px;
        height: 150px;
    }
    
    .photo-glow {
        width: 170px;
        height: 170px;
    }
    
    .professional-title {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .profile-initials {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: 10px;
        width: 40px;
        height: 40px;
    }
    
    .comfort-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .skills-grid,
    .achievements-grid,
    .visits-gallery,
    .projects-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Achievement cards mobile */
    .achievement-image {
        height: 200px;
    }
    
    .achievement-card.featured-achievement .achievement-image {
        height: 220px;
    }
    
    .achievement-content h3 {
        font-size: 1.3rem;
    }
    
    .achievement-card.featured-achievement .achievement-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Coding Stats Responsive */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .leetcode-stats {
        flex-direction: column;
    }
    
    .contribution-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contribution-item {
        padding: 1rem 0.8rem;
    }
    
    .contribution-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .contribution-value {
        font-size: 1.7rem;
    }
    
    .contribution-label {
        font-size: 0.75rem;
    }
    
    .heatmap-grid {
        grid-template-columns: repeat(26, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    /* All badges responsive */
    .all-badges-container {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .all-badges-container .role-badge,
    .all-badges-container .tag-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    /* Skills Tabs Mobile */
    .skill-tabs {
        gap: 0.5rem;
    }
    
    .skill-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-card {
        padding: 1.5rem;
    }
    
    .skill-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    /* Learn More Button Mobile */
    .btn-learn-more {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    /* Stats Card Mobile */
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card-header h4 {
        font-size: 1.1rem;
    }
    
    .leetcode-circle {
        width: 150px;
        height: 150px;
    }
    
    .count-number {
        font-size: 2.5rem;
    }
    
    .contribution-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contribution-value {
        font-size: 1.5rem;
    }
    
    .heatmap-grid {
        grid-template-columns: repeat(20, 1fr);
        gap: 2px;
    }
    
    .all-badges-container .tag-item i,
    .all-badges-container .role-badge i {
        font-size: 0.9rem;
    }
    
    /* Profile photo mobile */
    .profile-photo-container {
        width: 140px;
        height: 140px;
    }
    
    .photo-glow {
        width: 160px;
        height: 160px;
    }
    
    .profile-initials {
        font-size: 2.5rem;
    }
    
    .achievement-tags {
        gap: 0.5rem;
    }
    
    .tag-item {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    .tag-item i {
        font-size: 0.9rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .about-text,
    .story-text {
        font-size: 0.95rem;
    }
    
    .role-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .role-badge {
        width: 100%;
        justify-content: center;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .project-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-to-top,
    .theme-toggle,
    .comfort-mode-toggle,
    .hero-cta,
    .social-links,
    .scroll-indicator,
    .project-links,
    .contact-form,
    .newsletter-form,
    .footer-social {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100%;
    }
    
    section {
        padding: 2rem 0 !important;
    }
    
    a {
        color: black !important;
        text-decoration: underline;
    }
}