/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #0070f3;
    --primary-hover: #0058cc;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #555;
    --bg-color: #fff;
    --light-bg: #f9f9f9;
    --border-color: #eaeaea;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.card-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 45px 0;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--text-light);
    padding-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-lighter);
}

/* ===== LINKS ===== */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 112, 243, 0.05);
    text-decoration: none;
}

.social-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    text-decoration: none;
}

.ul {
    margin-left: 20px;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

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

/* ===== MAIN CONTENT AREAS ===== */
.site-content {
    min-height: 80vh;
}

.hero-description {
    padding: 5px 0;
}


/* Hero Sections */
.about-hero,
.contact-hero {
    padding: 15px 0 15px;
    background-color: var(--light-bg);
}

.contact-hero {
    padding: 40px 0;
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-hero .lead {
    max-width: 700px;
    margin: 0 auto;
}

/* ===== CARDS & CONTENT BLOCKS ===== */
.card-base {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.project-card {
    padding: 60px 0;
}

.card-content {
    display: flex;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.card-text {
    flex: 1;
    padding: 40px;
}

.card-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.2;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-description {
    margin-bottom: 30px;
}

.card-description p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.card-features {
    margin: 20px 0;
    padding-left: 20px;
}

.card-features li {
    margin-bottom: 8px;
}

.card-actions {
    display: flex;
    gap: 15px;
}

/* ===== PROFILE SECTION ===== */
.profile-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.profile-text {
    flex: 3;
}

.profile-image {
    flex: 2;
    text-align: center;
}

.profile-image img {
    width: 100%;
    max-width: 320px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.intro-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-profiles {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* ===== TIMELINE ===== */
.experience-timeline {
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: calc(50% - 460px);
    top: 150px;
    bottom: 70px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
}

.timeline-marker {
    position: relative;
    min-width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 30px;
    margin-top: 5px;
    z-index: 1;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.job-header {
    margin-bottom: 20px;
}

.job-header h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.company {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.period,
.location,
.edu-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.achievements {
    padding-left: 20px;
}

.achievements li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.sub-role {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.sub-role h4 {
    margin-bottom: 15px;
    color: #444;
}

/* ===== GRIDS ===== */
.skills-grid,
.achievements-grid,
.faq-grid {
    display: grid;
    gap: 30px;
}

.skills-grid {
    grid-template-columns: repeat(3, 1fr);
}

.achievements-grid,
.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== SKILL CATEGORIES ===== */
.skill-category,
.education-item,
.additional-education,
.achievement-card,
.info-card,
.availability-info,
.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.skill-category h3,
.education-item h3,
.additional-education h3,
.achievement-card h3,
.info-card h3,
.availability-info h3,
.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.skill-category {
    padding: 25px;
}

.skill-category h3 {
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.skill-list {
    list-style-type: none;
    padding: 0;
}

.skill-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.skill-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== EDUCATION ===== */
.education-item {
    padding: 30px;
    margin-bottom: 30px;
}

.education-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.degree {
    font-weight: 600;
    margin-bottom: 5px;
}

.additional-education {
    padding: 30px;
}

.additional-education h3 {
    font-size: 1.3rem;
}

.additional-education ul {
    padding-left: 20px;
}

.additional-education li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ===== ACHIEVEMENT CARDS ===== */
.achievement-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.achievement-icon,
.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border-radius: 50%;
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.achievement-icon img {
    width: 30px;
    height: 30px;
}

.info-icon img {
    width: 25px;
    height: 25px;
}

.achievement-card p,
.info-card p,
.faq-item p {
    line-height: 1.6;
}

/* ===== CONTACT INFO ===== */
.info-card {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-card a {
    color: var(--primary-color);
}

.availability-info {
    grid-column: span 2;
    padding: 30px;
    text-align: center;
    margin-top: 10px;
}

.availability-info p {
    margin-bottom: 20px;
}

.availability-info .btn {
    display: inline-block;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

.social-link img {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-signup {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.newsletter-signup h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-signup p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-signup form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-signup input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-signup button {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-signup button:hover {
    background-color: var(--primary-hover);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--light-bg);
    padding: 40px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    background-color: var(--primary-color);
    color: black;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: var(--primary-color);
    color: #f0f3f6;
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--light-bg);
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== FORM MESSAGES ===== */
.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large screens (992px and down) */
@media (max-width: 992px) {
    .card-content {
        flex-direction: column-reverse;
    }
    
    .card-image {
        min-height: 300px;
    }
    
    .card-text {
        padding: 30px;
    }
    
    .profile-intro {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .experience-timeline::before {
        left: 20px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .availability-info {
        grid-column: span 1;
    }
}

/* Medium screens (768px and down) */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-signup form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-signup input[type="email"],
    .newsletter-signup button {
        width: 100%;
        border-radius: 4px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-marker {
        min-width: 30px;
        height: 30px;
        margin-right: 20px;
    }
    
    .timeline-marker::before {
        width: 15px;
        height: 15px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
}
/* Blog Layout */
.blog-section {
    padding: 15px 0;
}

.blog-layout {
    display: flex;
}

.blog-main {
    width: 100%;
}

/* Blog Cards */
.blog-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
    transition: var(--transition);
    overflow: hidden;
    margin: 5px;
}

.blog-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.blog-card .card-content {
    display: block;
}

.blog-card .card-text {
    padding: 30px;
}

.blog-card .card-title {
    margin-bottom: 15px;
}

.blog-card .card-title a {
    color: var(--text-color);
    text-decoration: none;
}

.blog-card .card-title a:hover {
    color: var(--primary-color);
}

/* Post Meta */
.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-date,
.post-author {
    color: var(--text-light);
}

.post-category a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 2px 8px;
    background-color: rgba(0, 112, 243, 0.1);
    border-radius: 3px;
    font-size: 0.85rem;
}

.post-category a:hover {
    background-color: rgba(0, 112, 243, 0.2);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-top: 10px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-bg);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 4px;
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Related Posts */
.related-posts {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.related-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-posts a {
    text-decoration: none;
    color: var(--text-color);
}

.related-posts h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-posts a:hover h4 {
    color: var(--primary-color);
}

.related-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.pagination-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.pagination-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pagination-links .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.current-page {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.pagination-ellipsis {
    color: var(--text-light);
    padding: 8px 4px;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.no-posts h2 {
    color: var(--text-color);
    margin-bottom: 15px;
}

.no-posts p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Individual Post Styles */
.post-header {
    background-color: var(--light-bg);
    padding: 20px 0 20px;
}

.post-header-content {
    max-width: 800
}

.post-content-section {
    padding: 0px 0 20px;
}

.post-navigation {
    margin: 10px 0 10px;
}

/* Project Landing Page Styles */

.project-landing .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Breadcrumbs */
.project-landing .breadcrumbs {
    margin-bottom: 30px;
    padding: 12px 0;
}

.project-landing .breadcrumbs ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.project-landing .breadcrumbs li {
    display: flex;
    align-items: center;
}

.project-landing .breadcrumbs a {
    color: #007bff;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.project-landing .breadcrumbs a:hover {
    background-color: #f1f3f4;
}

.project-landing .breadcrumbs .current {
    color: #6c757d;
    font-weight: 500;
}

.project-landing .breadcrumb-separator {
    margin: 0 8px;
    color: #6c757d;
}

/* Hero Image */
.project-landing .hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Article Content */
.project-landing .article-header {
    margin-bottom: 25px;
}

.project-landing .article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
}

.project-landing .article-meta {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.project-landing .article-meta span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.project-landing .article-meta .tag {
    background-color: #e3f2fd;
    color: #1565c0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-landing .article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.project-landing .article-content h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin: 35px 0 20px 0;
    font-weight: 600;
}

.project-landing .article-content h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.project-landing .article-content p {
    margin-bottom: 20px;
}

.project-landing .article-content ul, .project-landing .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.project-landing .article-content li {
    margin-bottom: 8px;
}

.project-landing .article-content code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #e83e8c;
}

.project-landing .article-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
}

/* Back Button */
.project-landing .back-button-container {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.project-landing .back-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.project-landing .back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
    color: white;
}

.project-landing .back-button::before {
    content: "←";
    margin-right: 8px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-landing .container {
        margin: 10px;
        padding: 15px;
    }

    .project-landing .article-title {
        font-size: 2rem;
    }

    .project-landing .hero-image {
        height: 200px;
    }

    .project-landing .breadcrumbs ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-landing .article-meta span {
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .project-landing .article-title {
        font-size: 1.75rem;
    }

    .project-landing .article-content {
        font-size: 1rem;
    }
}