/* ============================================================
   DIGITAL RESUME & PORTFOLIO – SAMPAT SANTOSH HOLE
   Agri-Business & Export Sourcing Modern Dark Theme
   ============================================================ */

:root {
    --bg-primary: #08120d;
    --bg-secondary: #0d1b14;
    --bg-card: rgba(16, 32, 24, 0.65);
    --bg-glass: rgba(22, 44, 33, 0.55);
    --text-primary: #f0fdf4;
    --text-secondary: #a7f3d0;
    --text-muted: #6ee7b7;
    
    --accent: #10b981;
    --accent-dark: #059669;
    --accent-light: #34d399;
    --accent-glow: rgba(16, 185, 129, 0.25);
    
    --gold: #fbbf24;
    --gold-glow: rgba(251, 191, 36, 0.25);
    
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #34d399 50%, #059669 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-card: linear-gradient(145deg, rgba(20, 42, 31, 0.7), rgba(10, 22, 16, 0.9));
    
    --border-color: rgba(52, 211, 153, 0.15);
    --border-hover: rgba(52, 211, 153, 0.4);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --nav-height: 76px;
    --container-max: 1240px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); font-size: 16px; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #04120a; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

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

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    width: 6px; height: 6px; background: var(--accent-light); border-radius: 50%;
    position: fixed; top: 0; left: 0; z-index: 99999; pointer-events: none;
    transform: translate(-50%, -50%); transition: width .15s, height .15s;
}
.cursor-ring {
    width: 36px; height: 36px; border: 1.5px solid var(--accent);
    border-radius: 50%; position: fixed; top: 0; left: 0; z-index: 99998;
    pointer-events: none; transform: translate(-50%, -50%);
    transition: width .2s, height .2s, border-color .2s, background .2s;
}
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--accent-light); background: rgba(16, 185, 129, 0.1); }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center;
    background: var(--bg-primary);
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { font-size: 3.5rem; color: var(--accent-light); margin-bottom: 12px; animation: pulse 1.5s infinite; }
.preloader-text { display: flex; gap: 8px; justify-content: center; margin-bottom: 8px; }
.preloader-text span {
    font-size: 2.2rem; font-weight: 800; color: var(--accent);
    display: inline-block; animation: preloaderJump .6s ease infinite alternate;
}
.preloader-text span:nth-child(2) { animation-delay: .1s; }
.preloader-text span:nth-child(3) { animation-delay: .2s; }
.preloader-text span:nth-child(4) { animation-delay: .3s; }
.preloader-text span:nth-child(5) { animation-delay: .4s; }
.preloader-text span:nth-child(6) { animation-delay: .5s; }
@keyframes preloaderJump { to { transform: translateY(-10px); color: var(--gold); } }

.preloader-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; font-weight: 500; }
.preloader-bar { width: 220px; height: 4px; background: rgba(52, 211, 153, 0.15); border-radius: 4px; overflow: hidden; margin: 0 auto; }
.preloader-bar-inner { height: 100%; width: 0; background: var(--gradient-accent); border-radius: 4px; animation: preloaderFill 1.6s ease forwards; }
@keyframes preloaderFill { to { width: 100%; } }

/* ===== BACKGROUND ORBS ===== */
.bg-orb {
    position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: -1; opacity: 0.35;
}
.orb-1 { width: 500px; height: 500px; background: #059669; top: -100px; left: -100px; }
.orb-2 { width: 600px; height: 600px; background: #10b981; bottom: -150px; right: -150px; }
.orb-3 { width: 400px; height: 400px; background: #d97706; top: 40%; left: 50%; transform: translate(-50%, -50%); opacity: 0.15; }

/* ===== HEADER & NAVBAR ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); z-index: 1000;
    transition: var(--transition); background: rgba(8, 18, 13, 0.7); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(52, 211, 153, 0.1);
}
.header.scrolled {
    background: rgba(6, 14, 10, 0.92); border-bottom-color: rgba(52, 211, 153, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.35rem; }
.logo-badge {
    width: 38px; height: 38px; background: var(--gradient-accent); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: #04120a; font-size: 1.1rem;
    box-shadow: 0 0 15px var(--accent-glow);
}
.logo-accent { color: var(--accent-light); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-weight: 500; font-size: 0.95rem; color: #d1fae5; position: relative; padding: 6px 0; }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--accent-light); transition: var(--transition); border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: #ffffff; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; font-size: 1.4rem; color: var(--text-primary); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: var(--radius-md);
    font-weight: 600; font-size: 0.95rem; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.btn-primary {
    background: var(--gradient-accent); color: #03170e; border: 1px solid transparent;
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 8px 25px var(--accent-glow); background: linear-gradient(135deg, #34d399, #10b981);
}
.btn-whatsapp {
    background: #25d366; color: #ffffff; border: 1px solid transparent;
}
.btn-whatsapp:hover {
    transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35); background: #20bd5a;
}
.btn-outline {
    background: rgba(16, 185, 129, 0.08); border: 1px solid var(--border-color); color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--accent-light); background: rgba(16, 185, 129, 0.18); transform: translateY(-2px);
}
.btn-ghost {
    background: transparent; color: var(--text-secondary); border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-ghost:hover {
    border-color: var(--accent-light); color: var(--text-primary); background: rgba(255, 255, 255, 0.05);
}
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh; padding-top: calc(var(--nav-height) + 40px); padding-bottom: 60px;
    display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(52, 211, 153, 0.12) 1px, transparent 1px);
    background-size: 32px 32px; opacity: 0.6; pointer-events: none;
}
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; position: relative; z-index: 1; }

.badge-status {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 30px;
    background: rgba(16, 185, 129, 0.12); border: 1px solid var(--border-color); font-size: 0.85rem;
    color: var(--accent-light); margin-bottom: 20px; font-weight: 500;
}
.pulse-dot {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%;
    box-shadow: 0 0 10px #10b981; animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }

.hero-name { font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.accent-text {
    background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-typing-wrap {
    font-size: 1.25rem; font-weight: 600; color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}
.typing-prefix { color: var(--text-secondary); font-weight: 400; }
.typing-text { color: var(--gold); min-height: 30px; }
.typing-cursor { animation: blink 0.8s infinite; color: var(--accent-light); }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-desc { font-size: 1.05rem; color: #d1fae5; max-width: 600px; margin-bottom: 30px; line-height: 1.7; }
.hero-desc strong { color: #ffffff; font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

/* Hero Stats Grid */
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 20px; }
.stat-card {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 16px 20px;
    border-radius: var(--radius-md); display: flex; align-items: center; gap: 16px;
    transition: var(--transition);
}
.stat-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-icon {
    width: 44px; height: 44px; background: rgba(16, 185, 129, 0.15); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent-light);
}
.stat-info h3 { font-size: 1.4rem; font-weight: 800; color: #ffffff; line-height: 1.1; }
.stat-info p { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* Hero Portrait Frame */
.hero-portrait-wrap { position: relative; display: flex; justify-content: center; width: fit-content; margin: 0 auto; overflow: visible; }
.portrait-card {
    position: relative; width: 340px; height: 430px; border-radius: var(--radius-lg); overflow: hidden;
    border: 2px solid var(--border-hover); box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.portrait-glow {
    position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(6, 14, 10, 0.9) 100%);
    z-index: 2; pointer-events: none;
}
.portrait-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portrait-card:hover .portrait-img { transform: scale(1.05); }

/* Floating Badges */
.float-badge {
    position: absolute; z-index: 10; background: rgba(6, 20, 14, 0.95); backdrop-filter: blur(12px);
    border: 1px solid var(--border-hover); padding: 10px 16px; border-radius: var(--radius-md);
    display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    white-space: nowrap; transition: var(--transition);
}
.float-badge:hover { transform: translateY(-3px); border-color: var(--accent-light); }
.badge-top-right { top: -12px; right: -15px; }
.badge-bottom-left { bottom: -12px; left: -15px; }
.float-badge i { font-size: 1.3rem; color: var(--gold); }
.float-badge strong { display: block; font-size: 0.82rem; color: #ffffff; line-height: 1.2; }
.float-badge span { font-size: 0.72rem; color: var(--text-muted); }

/* ===== SECTION COMMON STYLES ===== */
.section { padding: 90px 0; position: relative; }
.section-header { margin-bottom: 50px; }
.section-header.text-center { text-align: center; }
.section-kicker {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-light); margin-bottom: 10px;
}
.section-title { font-size: 2.4rem; font-weight: 800; line-height: 1.2; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 650px; margin: 12px auto 0; }
.section-line { width: 60px; height: 3px; background: var(--gradient-accent); margin: 16px auto 0; border-radius: 2px; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-card {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 32px 26px;
    border-radius: var(--radius-lg); transition: var(--transition); position: relative; overflow: hidden;
}
.about-card:hover { border-color: var(--accent-light); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon {
    width: 54px; height: 54px; background: rgba(16, 185, 129, 0.12); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent-light);
    margin-bottom: 20px;
}
.about-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: #ffffff; }
.about-card p { font-size: 0.95rem; color: #d1fae5; line-height: 1.7; }
.about-card p strong { color: #ffffff; }

/* ===== EXPERIENCE TIMELINE ===== */
.experience-section { background: var(--bg-secondary); }
.timeline { position: relative; max-width: 1000px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 14px; width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(16, 185, 129, 0.15) 100%);
}

.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-marker {
    position: absolute; left: -30px; top: 0; width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg-primary); border: 2px solid var(--accent); display: flex; align-items: center;
    justify-content: center; font-size: 0.85rem; color: var(--accent-light); box-shadow: 0 0 12px var(--accent-glow);
}

.timeline-content {
    background: var(--gradient-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    padding: 30px; transition: var(--transition);
}
.timeline-content:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }

.role-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.role-period { font-size: 0.85rem; font-weight: 600; color: var(--gold); }
.role-title { font-size: 1.35rem; font-weight: 800; color: #ffffff; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fruit-tag { font-size: 0.75rem; background: rgba(251, 191, 36, 0.15); color: var(--gold); border: 1px solid rgba(251, 191, 36, 0.3); padding: 2px 10px; border-radius: 12px; }
.company-name { font-size: 1.05rem; color: var(--accent-light); font-weight: 700; margin-top: 2px; }

.role-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.meta-badge { font-size: 0.8rem; background: rgba(255, 255, 255, 0.06); padding: 4px 12px; border-radius: 20px; color: var(--text-secondary); }
.meta-badge.ctc { background: rgba(16, 185, 129, 0.15); color: var(--accent-light); border: 1px solid var(--border-color); }

.role-description { font-size: 0.95rem; color: #d1fae5; margin-bottom: 20px; line-height: 1.6; }

/* Season breakdown cards inside experience */
.season-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin-bottom: 20px; }
.season-card {
    background: rgba(10, 24, 17, 0.6); border: 1px solid var(--border-color); border-radius: var(--radius-md);
    padding: 16px; position: relative;
}
.season-card.highlight { border-color: var(--accent-light); background: rgba(16, 185, 129, 0.12); }
.season-badge { font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.season-vol { font-size: 1.25rem; font-weight: 800; color: #ffffff; margin-bottom: 6px; }
.season-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.season-card p strong { color: #ffffff; }

.achievement-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.bullet-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #d1fae5; }
.bullet-item i { color: var(--accent-light); font-size: 1rem; margin-top: 3px; }

.role-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.role-tags span { font-size: 0.75rem; background: rgba(255, 255, 255, 0.05); padding: 4px 10px; border-radius: 6px; color: var(--text-muted); }

/* ===== METRICS & ANALYTICS TABBED SECTION ===== */
.analytics-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.tab-btn {
    padding: 10px 24px; border-radius: 30px; font-size: 0.9rem; font-weight: 600; color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--gradient-accent); color: #04120a; border-color: transparent; box-shadow: 0 4px 15px var(--accent-glow); }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Company metrics grid */
.company-metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.comp-card {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 26px; border-radius: var(--radius-lg);
    position: relative; transition: var(--transition);
}
.comp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.comp-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 12px; margin-bottom: 12px; background: rgba(16, 185, 129, 0.15); color: var(--accent-light); }
.comp-card h3 { font-size: 1.2rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.comp-vol { font-size: 1.8rem; font-weight: 800; color: var(--accent-light); }
.comp-sub { font-size: 0.8rem; color: var(--text-muted); display: block; margin-bottom: 14px; }
.comp-bar-wrap { height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: 4px; overflow: hidden; margin-bottom: 16px; }
.comp-bar { height: 100%; background: var(--gradient-accent); border-radius: 4px; }
.comp-details { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; color: var(--text-secondary); }
.comp-details span { color: var(--text-muted); }

/* Crop Grid */
.crop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.crop-card {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 24px; border-radius: var(--radius-lg);
    transition: var(--transition);
}
.crop-card:hover { border-color: var(--accent-light); transform: translateY(-4px); }
.crop-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.crop-card h3 { font-size: 1.15rem; font-weight: 700; color: #ffffff; margin-bottom: 8px; }
.crop-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 14px; }
.crop-metric { font-size: 0.75rem; font-weight: 700; color: var(--accent-light); background: rgba(16, 185, 129, 0.12); padding: 4px 10px; border-radius: 12px; display: inline-block; }

/* Region Cards */
.region-cards-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.region-box {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 24px; border-radius: var(--radius-lg);
    text-align: center; transition: var(--transition);
}
.region-box:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.region-flag { font-size: 2.2rem; margin-bottom: 10px; }
.region-box h3 { font-size: 1.2rem; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.region-box p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; }
.region-box strong { color: var(--gold); font-size: 0.9rem; }

/* ===== SKILLS SECTION ===== */
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.skill-category {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 28px; border-radius: var(--radius-lg);
    transition: var(--transition);
}
.skill-category:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.cat-header i { font-size: 1.4rem; color: var(--accent-light); background: rgba(16, 185, 129, 0.12); padding: 10px; border-radius: 12px; }
.cat-header h3 { font-size: 1.2rem; font-weight: 700; color: #ffffff; }

.skill-tags-list { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-pill {
    font-size: 0.85rem; font-weight: 600; padding: 8px 14px; border-radius: 20px;
    background: rgba(16, 185, 129, 0.08); border: 1px solid var(--border-color); color: #d1fae5;
    display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
}
.skill-pill i { color: var(--accent-light); font-size: 0.75rem; }
.skill-pill:hover { background: rgba(16, 185, 129, 0.2); border-color: var(--accent-light); transform: translateY(-2px); }

/* ===== EDUCATION SECTION ===== */
.education-section { background: var(--bg-secondary); }
.edu-card-wrapper { max-width: 800px; margin: 0 auto; }
.edu-card-main {
    background: var(--gradient-card); border: 1px solid var(--border-hover); padding: 36px; border-radius: var(--radius-lg);
    display: flex; gap: 24px; align-items: flex-start; position: relative; box-shadow: var(--shadow-md);
}
.edu-icon {
    width: 60px; height: 60px; background: var(--gradient-accent); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #04120a; flex-shrink: 0;
}
.edu-year { font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.edu-degree { font-size: 1.35rem; font-weight: 800; color: #ffffff; margin-bottom: 6px; }
.edu-college { font-size: 1.05rem; color: var(--accent-light); font-weight: 600; margin-bottom: 6px; }
.edu-univ { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 18px; }
.edu-score-badge {
    display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 30px;
    background: rgba(251, 191, 36, 0.15); border: 1px solid rgba(251, 191, 36, 0.3);
}
.score-label { font-size: 0.85rem; color: var(--text-secondary); }
.score-value { font-size: 1.1rem; font-weight: 800; color: var(--gold); }

/* ===== EXPORTS SECTION ===== */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 24px 18px; border-radius: var(--radius-lg);
    text-align: center; transition: var(--transition);
}
.dest-card:hover { border-color: var(--accent-light); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dest-flag { font-size: 2.4rem; margin-bottom: 8px; }
.dest-card h3 { font-size: 1.1rem; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.dest-country { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.dest-crop { font-size: 0.75rem; font-weight: 600; color: var(--accent-light); background: rgba(16, 185, 129, 0.1); padding: 3px 8px; border-radius: 10px; display: inline-block; }

/* ===== PERSONAL PROFILE SECTION ===== */
.personal-section { background: var(--bg-secondary); }
.personal-card-box {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 40px; border-radius: var(--radius-lg);
    max-width: 950px; margin: 0 auto;
}
.personal-header { display: flex; align-items: center; gap: 14px; font-size: 1.5rem; color: #ffffff; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); }
.personal-header i { color: var(--accent-light); }

.personal-details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 30px; }
.p-item { display: flex; flex-direction: column; gap: 4px; }
.p-label { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.p-label i { color: var(--accent-light); }
.p-val { font-size: 1rem; font-weight: 600; color: #ffffff; }

.declaration-box {
    background: rgba(10, 24, 17, 0.7); border: 1px dashed var(--border-hover); padding: 20px 26px;
    border-radius: var(--radius-md); font-size: 0.9rem; color: var(--text-secondary);
}
.declaration-box p { font-style: italic; margin-bottom: 14px; }
.decl-sign { display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: #ffffff; }
.decl-sign span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ===== CONTACT SECTION ===== */
.contact-cards-container {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto;
}
.contact-card {
    background: var(--gradient-card); border: 1px solid var(--border-color); padding: 26px 30px; border-radius: var(--radius-lg);
    display: flex; align-items: center; gap: 20px; transition: var(--transition);
}
.contact-card:hover { border-color: var(--accent-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.c-icon {
    width: 52px; height: 52px; background: rgba(16, 185, 129, 0.12); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--accent-light); flex-shrink: 0;
}
.contact-card h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-card a, .contact-card p { font-size: 1.1rem; font-weight: 700; color: #ffffff; }
.contact-card a:hover { color: var(--accent-light); }

/* ===== FOOTER ===== */
.footer { background: #040a07; padding: 40px 0; border-top: 1px solid rgba(52, 211, 153, 0.1); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-left p { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
.footer-right { display: flex; align-items: center; gap: 20px; font-size: 0.85rem; color: var(--text-muted); }
.btn-top {
    width: 40px; height: 40px; background: var(--gradient-accent); border-radius: 50%; color: #04120a;
    display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition);
}
.btn-top:hover { transform: translateY(-4px); box-shadow: 0 0 15px var(--accent-glow); }

/* ============================================================ */
/* PRINT RESUME STYLES (PDF EXPORT FORMAT) */
/* ============================================================ */
.printable-resume { display: none; }

@media print {
    @page {
        size: A4 portrait;
        margin: 0; /* Hides browser default date, header, title, and footer URL */
    }
    
    html, body {
        background: #ffffff !important;
        color: #111827 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    body > *:not(#creativeResume) {
        display: none !important;
    }
    header, main, footer, .preloader, .bg-orb, .cursor-dot, .cursor-ring {
        display: none !important;
    }
    
    .printable-resume {
        display: block !important;
        box-sizing: border-box !important;
        width: 100% !important;
        padding: 6mm 10mm !important;
        margin: 0 !important;
        background: #ffffff !important;
        color: #1f2937 !important;
        font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    }
    
    .resume-header {
        background: #064e3b !important;
        color: #ffffff !important;
        padding: 10px 14px !important;
        border-radius: 6px !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    .resume-header h1 {
        font-size: 18pt !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        margin: 0 0 2px 0 !important;
        letter-spacing: 1px !important;
    }
    .resume-header h2 {
        font-size: 9pt !important;
        color: #a7f3d0 !important;
        font-weight: 600 !important;
        margin: 0 0 4px 0 !important;
        letter-spacing: 0.5px !important;
    }
    .resume-contact-bar {
        font-size: 8pt !important;
        color: #ecfdf5 !important;
        display: flex !important;
        justify-content: center !important;
        gap: 14px !important;
        flex-wrap: wrap !important;
    }
    .resume-contact-bar i {
        color: #34d399 !important;
    }

    .resume-body-grid {
        display: flex !important;
        gap: 14px !important;
    }

    .resume-sidebar {
        width: 31% !important;
        flex-shrink: 0 !important;
        background: #f0fdf4 !important;
        border: 1px solid #d1fae5 !important;
        border-radius: 6px !important;
        padding: 12px !important;
        box-sizing: border-box !important;
    }

    .resume-main {
        width: 69% !important;
        flex-grow: 1 !important;
        box-sizing: border-box !important;
    }

    .resume-sec {
        margin-bottom: 12px !important;
    }
    .resume-sec-title {
        font-size: 9pt !important;
        font-weight: 800 !important;
        color: #047857 !important;
        border-bottom: 1.5px solid #059669 !important;
        padding-bottom: 2px !important;
        margin: 0 0 5px 0 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.6px !important;
    }

    .resume-sec p {
        font-size: 8pt !important;
        line-height: 1.35 !important;
        color: #374151 !important;
        margin: 0 !important;
    }

    .edu-item strong { display: block; font-size: 8.5pt; color: #111827; margin-bottom: 1px; }
    .edu-item span { display: block; font-size: 8pt; color: #047857; margin-bottom: 2px; }
    .edu-item p { font-size: 7.5pt !important; color: #4b5563 !important; line-height: 1.3 !important; }

    .resume-skills-list {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 3px !important;
    }
    .resume-skills-list span {
        font-size: 7.5pt !important;
        background: #ffffff !important;
        border: 1px solid #bbf7d0 !important;
        padding: 2px 6px !important;
        border-radius: 3px !important;
        color: #065f46 !important;
        font-weight: 600 !important;
    }

    .personal-line {
        font-size: 8pt !important;
        margin-bottom: 2px !important;
    }

    .resume-job {
        margin-bottom: 13px !important;
    }
    .job-head {
        display: flex !important;
        justify-content: space-between !important;
        font-size: 9.5pt !important;
        font-weight: 700 !important;
        color: #111827 !important;
        margin-bottom: 2px !important;
    }
    .job-date {
        font-size: 8.5pt !important;
        color: #059669 !important;
        font-weight: 600 !important;
    }
    .job-sub {
        font-size: 8.5pt !important;
        font-weight: 600 !important;
        color: #047857 !important;
        margin-bottom: 5px !important;
    }
    .resume-job ul {
        padding-left: 13px !important;
        margin: 0 !important;
        list-style-type: disc !important;
    }
    .resume-job li {
        font-size: 8.5pt !important;
        line-height: 1.38 !important;
        color: #374151 !important;
        margin-bottom: 3px !important;
    }

    .resume-declaration {
        margin-top: 26px !important;
        font-size: 8.5pt !important;
        border-top: 1px solid #d1d5db !important;
        padding-top: 8px !important;
        color: #4b5563 !important;
    }
    .sign-row {
        display: flex !important;
        justify-content: space-between !important;
        font-weight: 700 !important;
        margin-top: 10px !important;
        color: #111827 !important;
        font-size: 8.5pt !important;
    }
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-portrait-wrap { order: -1; margin: 10px auto 35px auto; }
    .hero-typing-wrap { justify-content: center; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-ctas { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .skills-grid, .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; top: var(--nav-height); right: -100%; width: 280px; height: calc(100vh - var(--nav-height));
        background: rgba(6, 14, 10, 0.98); backdrop-filter: blur(20px); flex-direction: column;
        padding: 40px 24px; gap: 20px; transition: var(--transition); border-left: 1px solid var(--border-color);
    }
    .nav-links.active { right: 0; }
    .hero-name { font-size: 2.5rem; }
    .about-grid, .skills-grid, .destinations-grid, .personal-details-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .portrait-card { width: 280px; height: 350px; }
    .float-badge { padding: 8px 12px; gap: 8px; }
    .badge-top-right { top: -10px; right: -8px; }
    .badge-bottom-left { bottom: -10px; left: -8px; }
    .float-badge i { font-size: 1.1rem; }
    .float-badge strong { font-size: 0.75rem; }
    .float-badge span { font-size: 0.68rem; }

    .contact-cards-container { grid-template-columns: 1fr; gap: 16px; }
    .contact-card { padding: 18px 20px; }
    .contact-card a, .contact-card p { font-size: 0.95rem; word-break: break-word; }
}
