/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --section-bg: #f3f4f6;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Ensure fixed header doesn't cover content */
main {
    padding-top: 88px; /* matches header height + small gap */
}

/* Make hero fit under the fixed header */
.hero {
    min-height: calc(100vh - 88px);
    padding-top: 2rem;
}

/* Nav active and visual polish */
.nav-links li a.active {
    color: var(--primary-color);
    background: rgba(37,99,235,0.08);
}

.nav-links li a {
    letter-spacing: 0.1px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(37,99,235,0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 220ms var(--transition), transform 220ms var(--transition);
    z-index: 1200;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation enhancements */
.logo {
    text-decoration: none;
    display: inline-block;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a:focus {
    color: var(--primary-color);
    background: rgba(37,99,235,0.06);
    outline: none;
}

/* Make sure anchored sections are not hidden behind fixed header */
section[id] {
    scroll-margin-top: 88px; /* adjust according to header height */
}

@media (max-width: 880px) {
    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        margin: 0.5rem 1rem;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(2,6,23,0.08);
        display: none;
        min-width: 200px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

/* Visual polish for navbar */
header {
    border-bottom: 1px solid rgba(2,6,23,0.04);
}

.logo {
    font-size: 1.6rem;
    letter-spacing: 0.6px;
    color: var(--primary-color);
    font-weight: 800;
}

.mobile-nav-toggle {
    padding: 0.4rem;
    border-radius: 6px;
}

/* Smooth reveal for mobile menu */
.nav-links {
    transition: opacity 220ms var(--transition), transform 220ms var(--transition);
}

@media (max-width: 880px) {
    .nav-links {
        transform-origin: top right;
        opacity: 0;
        transform: translateY(-6px) scaleY(0.98);
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

/* Desktop small touch targets */
@media (min-width: 881px) {
    .nav-links li a {
        padding: 0.5rem 0.8rem;
    }
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.highlight {
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-button.outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cta-button.outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.achievements {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s backwards;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.resume-overview {
    background: var(--background);
}

.resume-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.resume-actions .cta-button {
    min-width: 200px;
}

.experience-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.experience-list li {
    margin-bottom: 0.8rem;
    position: relative;
}

.experience-list li::before {
    content: "\2022";
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.skills-category {
    margin-bottom: 2rem;
}

.skills-category h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--section-bg);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.skill-tags span {
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .skills-category {
        margin-bottom: 1.5rem;
    }
    
    .skills-category h4 {
        font-size: 1.1rem;
    }
    
    .skill-tags {
        gap: 0.8rem;
    }
    
    .skill-tags span {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Credentials Showcase */
.credentials {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.credentials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.credentials-note {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--light-text);
    font-size: 1.05rem;
}

.badge-gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.badge-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.16);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.badge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.badge-card h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
}

.badge-embed.badge-credly {
    min-height: 180px;
}

.badge-embed.badge-credly > div {
    min-height: 180px;
}

.badge-embed.badge-badgr iframe {
    max-width: 100%;
}

@media (max-width: 768px) {
    .credentials {
        padding: 4rem 1.5rem;
    }

    .badge-gallery {
        grid-template-columns: 1fr;
    }
}

/* Projects Section */
.projects {
    padding: 6rem 2rem;
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.project-category {
    max-width: 1200px;
    margin: 0 auto 3rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding-bottom: 1.5rem;
    transition: border-color 0.3s ease;
}

.project-category:last-of-type {
    border-bottom: none;
}

.project-category.collapsed {
    padding-bottom: 0.75rem;
}

.project-category-title {
    margin: 0;
}

.project-toggle,
.cert-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
    transition: color var(--transition);
}

.project-toggle:hover,
.cert-toggle:hover {
    color: var(--secondary-color);
}

.project-toggle:focus-visible,
.cert-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.project-toggle-text,
.cert-toggle-text {
    flex: 1;
}

.toggle-icon i {
    transition: transform 0.3s ease;
}

.project-category.collapsed .toggle-icon i,
.cert-category.collapsed .toggle-icon i {
    transform: rotate(180deg);
}

.project-category.collapsed .project-grid {
    display: none;
}

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

.project-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Thumbnail for projects without images */
.project-thumb {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.06), rgba(14,165,233,0.03));
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(37,99,235,0.06);
}

.project-thumb-inner {
    font-size: 2.25rem;
}

@media (min-width: 768px) {
    .project-thumb {
        height: 180px;
    }
}

.project-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.project-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
    cursor: pointer;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f8fafc;
    padding: 1rem;
}

.project-image[src=""] {
    position: relative;
}

.project-image[src=""]:after {
    content: "Project Screenshot";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #94a3b8;
    font-size: 1.25rem;
    font-weight: 500;
}

.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-info h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-date {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-features {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.project-features li {
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.project-features li::before {
    content: "\2022";
    position: absolute;
    left: -1.2rem;
    color: var(--primary-color);
}

.project-description {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tech-stack {
    margin-top: auto;
    padding-top: 1rem;
}

.tech-stack span {
    padding: 0.4rem 0.8rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.tech-stack span:hover {
    background: var(--primary-color);
    color: white;
}

.project-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.project-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.project-link i {
    font-size: 1rem;
}

/* Featured Project Card */
.project-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.project-card.featured .project-image {
    height: 100%;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .project-toggle,
    .cert-toggle {
        font-size: 1.3rem;
        padding: 1rem 0;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card.featured {
        grid-template-columns: 1fr;
    }

    .project-card.featured .project-image {
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-features {
        padding-left: 1rem;
    }
    
    .project-features li {
        font-size: 0.95rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--text-color);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        padding: 1.5rem;
    }
}

/* Education Section */
.education {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.education h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.education-grid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 2.5rem;
}

.education-grid::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    bottom: 0.75rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.55), rgba(37, 99, 235, 0));
}

.education-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    animation: timelineFade 0.8s ease forwards;
}

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

.education-card::before {
    content: "";
    position: absolute;
    left: -2.35rem;
    top: 1.6rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--background);
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.education-card:nth-child(1) { animation-delay: 0.1s; }
.education-card:nth-child(2) { animation-delay: 0.25s; }
.education-card:nth-child(3) { animation-delay: 0.4s; }
.education-card:nth-child(4) { animation-delay: 0.55s; }
.education-card:nth-child(5) { animation-delay: 0.7s; }

.education-timeline .education-card {
    border-radius: 14px;
}

.education-timeline .education-card:hover {
    transform: translateY(-6px);
}

@keyframes timelineFade {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.education-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.education-info .school {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.education-info .degree {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.education-info .duration {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.education-info .grade {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.education-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.education-skills span {
    padding: 0.4rem 0.8rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.education-skills span:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .education-grid {
        padding-left: 1.5rem;
    }

    .education-grid::before {
        left: 0.5rem;
    }
    
    .education-card {
        padding: 1.5rem;
    }

    .education-card::before {
        left: -1.8rem;
    }
}

/* Certifications Section */
.certifications {
    padding: 6rem 2rem;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cert-category {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.cert-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.cert-category-title {
    margin: 0;
}

.cert-category.collapsed {
    padding-bottom: 1.25rem;
}

.cert-category.collapsed .cert-list,
.cert-category.collapsed .cert-grid {
    display: none;
}

.cert-list,
.cert-grid {
    margin-top: 1.25rem;
}

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

.cert-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.badge-embed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 0.75rem;
}

.badge-embed iframe {
    width: 100%;
    max-width: 370px;
    height: 167px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.badge-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.badge-link:hover {
    text-decoration: underline;
}

.badge-embed iframe[loading="lazy"] {
    background: #f8fafc;
}

.badge-link::after {
    content: " (external)";
    font-size: 0.75rem;
    color: var(--light-text);
}

.cert-issuer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.cert-issuer i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cert-issuer img {
    width: 24px;
    height: 24px;
}

.cert-issuer span {
    font-weight: 500;
    color: var(--text-color);
}

.cert-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    line-height: 1.4;
}

.cert-date {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cert-id {
    font-size: 0.8rem;
    color: var(--light-text);
    font-family: monospace;
}

@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-category {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .badge-embed iframe {
        height: 150px;
    }
}

/* Honors & Awards Section */
.honors {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.honors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.honors-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.honor-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

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

.honor-title h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.honor-meta {
    display: flex;
    gap: 1rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.honor-badge {
    color: var(--primary-color);
    font-size: 2rem;
}

.honor-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.honor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.honor-tags span {
    padding: 0.4rem 0.8rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.honor-tags span:hover {
    background: var(--primary-color);
    color: white;
}

.honor-links {
    margin-top: 1.5rem;
}

.honor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.honor-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.honor-link i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .honor-header {
        flex-direction: column;
        gap: 1rem;
    }

    .honor-badge {
        font-size: 1.5rem;
    }

    .honor-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Experience Section */
.experience {
    padding: 6rem 2rem;
    background: var(--section-bg);
}

.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.experience-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.experience-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.experience-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.experience-info .company {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.experience-info .duration {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.experience-list {
    list-style: none;
    margin: 0;
    padding-left: 1.2rem;
}

.experience-list li {
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.experience-list li::before {
    content: "\2022";
    position: absolute;
    left: -1.2rem;
    color: var(--primary-color);
}

/* Job Simulations Section */
.simulations {
    padding: 6rem 2rem;
}

.simulations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.simulation-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.simulation-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.simulation-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.simulation-info .date {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.simulation-list {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.simulation-list li {
    position: relative;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.simulation-list li::before {
    content: "\2022";
    position: absolute;
    left: -1.2rem;
    color: var(--primary-color);
}

.simulation-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.simulation-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Updated Certifications Section */
.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cert-item h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cert-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.cert-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .experience-grid,
    .simulation-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card,
    .simulation-card,
    .cert-item {
        padding: 1.5rem;
    }
    
    .experience-info h3,
    .simulation-info h3 {
        font-size: 1.2rem;
    }
} 
