/* Experience Section */
.experience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.exp-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    will-change: transform;
}

.exp-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.exp-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
}

.company-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.exp-details {
    flex: 1;
    min-width: 0;
}

.exp-company {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.exp-title {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.3;
}

.exp-dates {
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 20px;
}
/* Skill icons hover effect */
.skills-icons img,
.skills-icons i {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.skills-icons img:hover,
.skills-icons i:hover {
    transform: scale(1.1);
}
/* Critical CSS - Above the fold */
body {
    margin: 0 auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    max-width: 1200px;
    font-display: swap;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

header h1 {
    font-size: 1.5em;
    margin: 0;
}

nav a {
    margin-left: 20px;
    color: #000;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
    background-color: #f5f5f5;
}

nav a.active {
    background-color: #000;
    color: #fff;
}

nav a:first-child {
    margin-left: 0;
}

main {
    padding: 20px 40px;
}

h2 {
    font-size: 1.2em;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons i {
    font-size: 1.5em;
    color: #000;
}

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

.project-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.project-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skills-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.skills-icons img {
    width: 50px;
}

.music-grid, .books-grid {
    display: flex;
    gap: 20px;
}

.music-card img, .books-grid img {
    border-radius: 10px;
}

.books-grid img {
    width: 100px;
    height: 130px;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 0.9em;
}

footer {
    text-align: center;
    padding: 9px 40px;
    font-size: 0.9em;
    color: #333;
    font-weight: 600;
    border-top: 1px solid #e5e5e5;
    margin-top: 40px;
}

/* Coming Soon Pages Styles */
#projects-hero, #blogs-hero {
    text-align: center;
    margin-bottom: 40px;
}

#projects-hero p, #blogs-hero p {
    font-size: 1.1em;
    color: #666;
    margin-top: 10px;
}

.coming-soon-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.coming-soon-icon {
    margin-bottom: 30px;
}

.coming-soon-container h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

.coming-soon-container p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}

.features-list li {
    padding: 8px 0;
    font-size: 1em;
    color: #555;
}

.features-list i {
    color: #4CAF50;
    margin-right: 10px;
}

.eta {
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
    margin: 30px 0;
}

.back-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 20px;
}

.back-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.back-btn i {
    margin-right: 8px;
}

/* Responsiveness */
@media (max-width: 768px) {
    body {
        max-width: 100%;
        padding: 0 10px;
    }
    header {
        flex-direction: column;
        padding: 15px 20px;
        text-align: center;
    }
    
    header h1 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }
    
    nav {
        margin-top: 10px;
    }
    
    nav a {
        margin: 0 8px;
        font-size: 0.9em;
        padding: 6px 10px;
    }
    
    nav a.active {
        background-color: #000 !important;
        color: #fff !important;
        border-radius: 6px;
    }
    
    main {
        padding: 15px;
    }
    
    h2 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }
    
    /* Coming soon pages mobile */
    .coming-soon-container {
        margin: 20px 10px;
        padding: 40px 15px;
        border-radius: 15px;
    }
    
    .coming-soon-container h3 {
        font-size: 1.5em;
    }
    
    .coming-soon-container p {
        font-size: 1em;
    }
    
    .coming-soon-icon i {
        font-size: 60px !important;
    }
    
    .features-list {
        text-align: center;
    }
    
    .features-list li {
        font-size: 0.9em;
    }
    
    .back-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    /* Social icons */
    .social-icons {
        justify-content: center;
        gap: 15px;
    }
    
    .social-icons i {
        font-size: 1.3em;
    }
    
    /* Project grid */
    .project-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .project-card {
        padding: 15px;
    }
    
    /* GitHub stats */
    #github-stats img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }
    
    /* Skills section */
    .skills-icons {
        justify-content: center;
        gap: 15px;
    }
    
    .skills-icons img,
    .skills-icons i {
        width: 40px !important;
        height: 40px !important;
        font-size: 40px !important;
    }
    
    /* Experience section mobile styles */
    .exp-card {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .exp-logo {
        margin-right: 0;
        margin-bottom: 8px;
        width: 40px;
        height: 40px;
    }
    
    .company-logo {
        width: 20px;
        height: 20px;
    }
    
    .exp-dates {
        margin-left: 0;
        margin-top: 8px;
        font-size: 0.9rem;
    }
    
    .exp-company {
        font-size: 1.1rem;
    }
    
    .exp-title {
        font-size: 0.9rem;
    }
    
    /* Music section */
    #favorite-music iframe {
        height: 460px;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    /* Books section */
    .books-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .books-grid img {
        width: 80px;
        height: 105px;
    }
    
    /* Stats section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        font-size: 0.8em;
    }
    
    /* Footer */
    footer {
        padding: 6px 15px;
        font-size: 0.8em;
        margin-top: 30px;
    }
}