/* ============================================
   PORTFOLIO WEBSITE STYLES
   Modern, Interactive Design
   ============================================ */

/* CSS Variables - Babson Green, Navy & Off-White Minimalist Theme */
:root {
    --primary: #006747;           /* Babson Green */
    --primary-dark: #004d35;      /* Darker green */
    --primary-light: #1a8a64;     /* Lighter green */
    --secondary: #2c4a6e;         /* Light navy */
    --navy: #1e3a5f;              /* Navy blue */
    --navy-light: #3d5a80;        /* Lighter navy */
    --accent: #006747;
    --dark: #1a1a2e;              /* Dark with slight blue tint */
    --dark-light: #2d2d3d;
    --gray-900: #1a1a2e;
    --gray-800: #333344;
    --gray-700: #4a4a5a;
    --gray-600: #666677;
    --gray-500: #888899;
    --gray-400: #aaaabb;
    --gray-300: #ccccdd;
    --gray-200: #e0e0e8;
    --gray-100: #f0f0f4;
    --gray-50: #f8f8fc;           /* Off-white with slight cool tint */
    --white: #ffffff;
    --off-white: #fafafa;
    --gradient-1: linear-gradient(135deg, #006747 0%, #1a8a64 100%);
    --gradient-2: #006747;        /* Solid green */
    --gradient-3: linear-gradient(135deg, #1e3a5f 0%, #2c4a6e 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.04);
    --shadow: 0 2px 4px -1px rgb(0 0 0 / 0.06);
    --shadow-md: 0 4px 8px -2px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 8px 16px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 12px 24px -6px rgb(0 0 0 / 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background - Hidden for minimalist look */
.bg-animation {
    display: none;
}

.gradient-sphere {
    display: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

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

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo .logo-img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-2);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 103, 71, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 60px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.profile-ring {
    position: relative;
    padding: 4px;
    background: var(--primary);
    border-radius: 50%;
}

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 103, 71, 0.3); }
    50% { box-shadow: 0 0 0 15px rgba(0, 103, 71, 0); }
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 20%; /* Adjust this: top, center, bottom, or specific like "50% 20%" */
    border: 4px solid var(--white);
    display: block;
}

.profile-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #059669;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

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

.hero-text {
    max-width: 600px;
}

.hero-greeting {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.hero-name {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-titles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.title-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
}

.title-divider {
    color: var(--gray-300);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.hero-description strong {
    color: var(--dark);
}

.hero-seeking {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 103, 71, 0.1), rgba(26, 138, 100, 0.1));
    border: 1px solid rgba(0, 103, 71, 0.2);
    border-radius: var(--radius);
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.hero-seeking i {
    color: var(--primary);
}

.hero-seeking strong {
    color: var(--primary-dark);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 103, 71, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 103, 71, 0.25);
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-200);
}

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

.hero-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(0, 103, 71, 0.1), rgba(26, 138, 100, 0.1));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.subsection-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subsection-title i {
    color: var(--primary);
}

/* ============================================
   TIMELINE / EXPERIENCE
   ============================================ */
.timeline {
    position: relative;
    padding-left: 40px;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 24px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-marker.featured {
    width: 20px;
    height: 20px;
    left: -42px;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 103, 71, 0.2);
}

.exp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: var(--transition);
}

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

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

.exp-card.featured {
    background: linear-gradient(135deg, rgba(0, 103, 71, 0.03), rgba(26, 138, 100, 0.03));
    border-color: rgba(0, 103, 71, 0.2);
}

.exp-card.featured::before {
    opacity: 1;
}

.exp-badge {
    position: absolute;
    top: 16px;
    right: 20px;
    padding: 6px 14px;
    background: var(--gradient-2);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 103, 71, 0.3);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.exp-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.exp-info h3 .acquired {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-500);
}

.exp-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.exp-location {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.exp-location i {
    margin-right: 4px;
}

.exp-date {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
    white-space: nowrap;
}

/* Push date down only when badge is present */
.exp-badge ~ .exp-header .exp-date {
    margin-top: 28px;
}

.exp-highlights {
    list-style: none;
    margin-bottom: 16px;
}

.exp-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
}

.exp-highlights li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
    min-width: 16px;
}

.exp-highlights li strong {
    color: var(--dark);
    font-size: inherit;
    font-weight: 600;
    word-break: break-word;
    display: inline;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary);
    color: var(--white);
}

/* Education */
.education-grid {
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.education-grid.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.edu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.edu-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.edu-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.edu-logo span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.edu-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.edu-degree {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.edu-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.gpa {
    color: var(--primary);
    font-weight: 600;
}

/* Skills */
.skills-container {
    margin-top: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.skills-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.skill-group {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.skill-group h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tags span {
    padding: 6px 14px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

.skill-tags span:hover {
    background: var(--gradient-2);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.leadership-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.leadership-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.leadership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    background: var(--white);
}

.leadership-card.featured {
    background: linear-gradient(135deg, rgba(0, 103, 71, 0.05), rgba(26, 138, 100, 0.05));
    border: 1px solid rgba(0, 103, 71, 0.2);
}

.leadership-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--white);
}

.leadership-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    background: var(--gradient-2);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.leadership-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.leadership-org {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.leadership-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.leadership-stats {
    list-style: none;
}

.leadership-stats li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.leadership-stats li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.leadership-stats li strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.project-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.project-card.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.project-visual {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-card.large .project-visual {
    height: 100%;
    min-height: 350px;
}

.project-visual.finance {
    background: var(--navy);
}

.project-visual.eventboost {
    background: var(--primary);
}

.project-visual.beatboi {
    background: var(--navy-light);
}

.project-visual > i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Finance chart animation */
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 80px;
}

.bar {
    width: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px 4px 0 0;
    animation: grow 2s ease-in-out infinite;
}

.bar-1 { height: 40px; animation-delay: 0s; }
.bar-2 { height: 60px; animation-delay: 0.2s; }
.bar-3 { height: 35px; animation-delay: 0.4s; }
.bar-4 { height: 75px; animation-delay: 0.6s; }
.bar-5 { height: 55px; animation-delay: 0.8s; }

@keyframes grow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.7); }
}

/* EventBoost platforms */
.platforms {
    display: flex;
    gap: 20px;
}

.platforms i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    animation: pop 1.5s ease-in-out infinite;
}

.platforms i:nth-child(2) { animation-delay: 0.3s; }
.platforms i:nth-child(3) { animation-delay: 0.6s; }

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

/* BeatBoi music notes */
.music-notes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.music-notes i {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: float-note 3s ease-in-out infinite;
}

.note-1 { top: 20%; left: 20%; animation-delay: 0s; }
.note-2 { top: 30%; right: 25%; animation-delay: 1s; }
.note-3 { bottom: 25%; left: 30%; animation-delay: 2s; }

@keyframes float-note {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(15deg); opacity: 1; }
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.overlay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 20px;
}

.overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.overlay-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.project-content {
    padding: 28px;
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tags span {
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(0, 103, 71, 0.1), rgba(26, 138, 100, 0.1));
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.project-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.project-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-features {
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.feature i {
    color: #10b981;
}

.project-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gradient-2);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 103, 71, 0.3);
}

.download-btn.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.download-btn.secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.project-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ============================================
   HOBBIES
   ============================================ */
.hobbies-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.hobbies-grid.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hobby-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 32px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
}

.hobby-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.hobby-item i {
    font-size: 2rem;
    color: var(--primary);
}

.hobby-item span {
    font-weight: 500;
    color: var(--dark);
}

.hobby-item small {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: invert(1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-info p {
    color: var(--gray-400);
    margin-bottom: 16px;
    max-width: 400px;
}

.footer-email {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-email:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-social {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 50%;
    color: var(--gray-400);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-container {
        order: -1;
    }

    .hero-text {
        max-width: 100%;
    }

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

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

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

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

    .project-card.large {
        grid-template-columns: 1fr;
    }

    .project-card.large .project-visual {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        gap: 24px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .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(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 5px;
    }

    .timeline-marker {
        left: -30px;
        width: 12px;
        height: 12px;
    }

    .timeline-marker.featured {
        width: 14px;
        height: 14px;
        left: -31px;
    }

    .exp-highlights li {
        font-size: 0.9rem;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 16px 60px;
        min-height: auto;
    }

    .hero-name {
        font-size: 2rem;
    }

    .hero-titles {
        flex-direction: column;
        gap: 8px;
    }

    .title-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .scroll-indicator {
        display: none;
    }

    .exp-card {
        padding: 20px;
    }

    .exp-highlights li {
        gap: 8px;
        font-size: 0.9rem;
    }

    .leadership-card {
        padding: 24px;
    }

    .project-downloads {
        flex-direction: column;
    }

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

/* Print styles */
@media print {
    .bg-animation,
    .navbar,
    .scroll-indicator {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }

    .project-overlay {
        display: none;
    }
}
