:root {
    --bg-color: #0b1121;
    --card-bg: rgba(30, 41, 59, 0.4);
    --card-border: rgba(255, 255, 255, 0.05);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-blue: #0ea5e9;
    --accent-green: #22c55e;
    --tag-bg: rgba(15, 23, 42, 0.6);
    --tag-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- HEADER SECTION --- */
.top-header {
    text-align: center;
    margin-bottom: 50px;
}

.profile-img-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    padding: 4px;
    margin-bottom: 15px;
    object-fit: cover;
}

.top-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.top-header .subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.top-header .contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.top-header .contact-info i {
    color: var(--text-secondary);
    margin-right: 5px;
}

.btn-download {
    background-color: var(--accent-blue);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.btn-download:hover {
    background-color: #0284c7;
    transform: translateY(-2px);
}

/* --- MAIN LAYOUT --- */
.layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

/* --- CARDS & PANELS --- */
.panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.panel-header i {
    color: var(--accent-blue);
}

/* --- LEFT COLUMN: TIMELINES --- */
.summary-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.timeline {
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.timeline-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeline-subtitle {
    color: var(--accent-blue);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.timeline-meta {
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.timeline-meta i {
    margin-right: 4px;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--tag-bg);
    border: 1px solid var(--tag-border);
    color: var(--accent-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* --- RIGHT COLUMN --- */

/* The frame loading your HTML page */
.resume-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #fcfcfc; 
    
    /* Hides scrollbar in Firefox & IE/Edge */
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

/* Hides scrollbar in Chrome, Safari and newer Edge */
.resume-iframe::-webkit-scrollbar { 
    display: none; 
}

/* Glowing Profile Card */
.glowing-profile-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.glowing-profile-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: var(--accent-green);
    filter: blur(40px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.gpc-header {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--card-border);
}

.gpc-body {
    padding: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gpc-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.gpc-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gpc-title {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.gpc-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.gpc-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gpc-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gpc-banner {
    background: var(--accent-green);
    color: #000;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    margin: 0 15px 15px 15px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Skills Section */
.skill-category {
    margin-bottom: 15px;
}
.skill-category:last-child {
    margin-bottom: 0;
}
.skill-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* Achievements */
.achievement-list {
    list-style: none;
}
.achievement-list li {
    position: relative;
    padding-left: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.achievement-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 1.2rem;
    top: -4px;
}

/* Get In Touch */
.get-in-touch-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 15px;
}
.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
}

/* Social Icons */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}
.social-btn {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
}
.social-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}
.social-footer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }
}