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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    /* Option 1: Subtle gray gradient */
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    
    /* Option 2: Warm professional gradient */
    /* background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); */
    
    /* Option 3: Cool tech gradient */
    /* background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); */
    
    /* Option 4: Dark professional */
    /* background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%); */
    
    /* Option 5: Clean minimal */
    /* background: #f8f9fa; */
    
    /* Option 6: Elegant dark (current) */
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    pointer-events: none;
}

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

.profile-section {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.name {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #3498db;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #3498db;
    transform: translateY(-2px);
}

.linkedin-primary {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #0077b5;
    transition: all 0.3s ease;
}

.linkedin-primary:hover {
    background: linear-gradient(135deg, #005885, #004466);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.contact-item i {
    width: 20px;
    text-align: center;
}

section {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

section h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h3 {
    margin-bottom: 0;
}

.view-all-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border: 2px solid #3498db;
    border-radius: 25px;
}

.view-all-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

/* Skills page styles */
.skills-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 2rem;
    position: relative;
}

.skills-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    pointer-events: none;
}

.skills-intro {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.skills-overview {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.stat-card p {
    color: #666;
    font-weight: 500;
}

.core-competencies-section,
.technical-skills-section,
.leadership-skills-section,
.expertise-timeline {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.core-competencies-section h2,
.technical-skills-section h2,
.leadership-skills-section h2,
.expertise-timeline h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

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

.competency-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.competency-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.competency-card.primary {
    border-left-color: #e74c3c;
}

.competency-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.competency-card p {
    color: #666;
    line-height: 1.6;
}

.technical-skills-section .skills-category {
    margin-bottom: 3rem;
}

.technical-skills-section .skills-category h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
}

.technical-skills-section .skills-category i {
    color: #3498db;
    font-size: 1.3rem;
}

.skill-tag.expert {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    font-weight: 600;
}

.skill-tag.proficient {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.skill-tag.familiar {
    background: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
}

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

.leadership-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leadership-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.leadership-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.leadership-card p {
    color: #666;
    line-height: 1.6;
}

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3498db, #2980b9);
}

.timeline-period {
    position: relative;
    margin-bottom: 3rem;
}

.period-marker {
    position: absolute;
    left: -56px;
    top: 30px;
    width: 16px;
    height: 16px;
    background: white;
    border: 4px solid #3498db;
    border-radius: 50%;
    z-index: 2;
}

.period-marker.current {
    background: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
}

.period-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.period-content h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.period-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.period-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.period-tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #bdc3c7;
}

/* Experience page styles */
.experience-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 2rem;
    position: relative;
}

.experience-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.back-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #3498db;
    transform: translateX(-5px);
}

.experience-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.experience-intro {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.experience-timeline {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3498db, #2980b9);
}

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

.timeline-marker {
    position: absolute;
    left: -56px;
    top: 30px;
    width: 16px;
    height: 16px;
    background: white;
    border: 4px solid #3498db;
    border-radius: 50%;
    z-index: 2;
}

.timeline-marker.current {
    background: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
}

.job.detailed {
    background: white;
    border: 1px solid #e0e6ed;
    border-left: 4px solid #3498db;
}

.job.detailed h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.role-description {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #3498db;
}

.role-description p {
    margin: 0;
    line-height: 1.7;
    color: #555;
}

.expand-skills-btn {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.expand-skills-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.expand-skills-btn i {
    transition: transform 0.3s ease;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.core-skills {
    margin-bottom: 1rem;
}

.expanded-skills {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.expanded-skills.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 2rem;
}

.skills-category {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.skills-category h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.skills-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 1px;
}

.skills-category .skills-grid {
    margin-top: 1rem;
}

.skills-category .skill-tag {
    background: white;
    color: #2c3e50;
    border: 1px solid #e0e6ed;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.skills-category .skill-tag:hover {
    background: #3498db;
    color: white;
    border-color: #2980b9;
}

.skill-tag {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.skill-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.job {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.job:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.job-title {
    font-size: 1.1rem;
    color: #3498db;
    font-weight: 600;
}

.job-meta {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

.location {
    display: block;
    margin-bottom: 0.2rem;
}

.duration {
    font-weight: 600;
    color: #2c3e50;
}

.company-desc {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
}

.achievements {
    list-style: none;
    padding-left: 0;
}

.achievements li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.1rem;
}

.achievements strong {
    color: #2c3e50;
}

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

.tech-category h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.tech-tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-tag:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    border-color: #2980b9;
}

.stats-overview {
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-overview h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.stats-overview h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.highlight-card h5 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.highlight-card p {
    color: #666;
    line-height: 1.5;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 2rem 1rem;
    }
    
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .profile-photo {
        width: 120px;
        height: 120px;
    }
    
    .name {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .linkedin-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Stats Overview Mobile */
    .stats-overview {
        padding: 2rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Sections Mobile */
    section {
        padding: 2rem 1rem;
    }
    
    section h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .view-all-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Skills Mobile */
    .skills-grid {
        gap: 0.6rem;
    }
    
    .skill-tag {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Experience Mobile */
    .job {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .job-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }
    
    .job h4 {
        font-size: 1.3rem;
    }
    
    .job-title {
        font-size: 1rem;
    }
    
    .job-meta {
        text-align: left;
    }
    
    .achievements li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Tech Categories Mobile */
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .tech-category h5 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    /* Highlights Mobile */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .highlight-card h5 {
        font-size: 1.2rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Small Mobile Specific */
@media (max-width: 480px) {
    .name {
        font-size: 1.8rem;
    }
    
    .title {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    /* Stats - Stack vertically on very small screens */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .linkedin-primary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
    
    section h3 {
        font-size: 1.6rem;
    }
    
    .job h4 {
        font-size: 1.2rem;
    }
    
    .highlight-card {
        padding: 1.2rem;
    }
}

/* Skills Page Mobile */
@media (max-width: 768px) {
    .skills-header {
        padding: 2rem 1rem;
    }
    
    .skills-header h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .skills-intro {
        font-size: 1rem;
        text-align: center;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .period-marker {
        left: -21px;
        width: 12px;
        height: 12px;
    }
    
    .period-content {
        padding: 1.5rem;
    }
    
    .period-content h4 {
        font-size: 1.2rem;
    }
}

/* Experience Page Mobile */
@media (max-width: 768px) {
    .experience-header {
        padding: 2rem 1rem;
    }
    
    .experience-header h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .experience-intro {
        font-size: 1rem;
        text-align: center;
    }
    
    .experience-timeline {
        padding: 2rem 1rem;
        padding-left: 30px;
    }
    
    .experience-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        margin-left: 30px;
    }
    
    .timeline-marker {
        left: -21px;
        width: 12px;
        height: 12px;
        border-width: 3px;
    }
    
    .job.detailed {
        padding: 1.5rem;
    }
    
    .job.detailed h3 {
        font-size: 1.3rem;
    }
    
    .role-description {
        padding: 1rem;
    }
}
