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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-secondary: #f9fafb;
    --border-color: #e5e7eb;
    --card-bg: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
}

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

/* Profile elements - hidden by default, shown in specific layouts */
.profile-avatar,
.profile-stats {
    display: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fadeInUp 1s ease 0.5s both;
}

.social-pill svg {
    width: 26px;
    height: 18px;
    display: block;
}

.social-pill.youtube {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.social-pill.youtube:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.featured-projects {
    background: var(--bg-secondary);
}

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

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-card.featured {
    grid-column: span 1;
}

.project-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.year-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.project-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    white-space: pre-line;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.timeline {
    background: white;
}

.timeline--glow {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.timeline--glow .section-title,
.timeline--glow .section-subtitle {
    text-align: center;
    color: white;
}

.journey-track {
    max-width: 1100px;
    margin: 3rem auto 0;
    position: relative;
    padding: 2rem 0 4rem;
}

.journey-track::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.35);
    transform: none;
    border-radius: 999px;
}

.milestone {
    position: relative;
    width: 100%;
    padding: 0 0 4rem 6rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

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

.milestone-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    color: white;
    max-width: 760px;
}

.milestone-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.milestone-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.milestone-year {
    position: absolute;
    left: 80px;
    top: -5px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.25);
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.milestone-dot {
    position: absolute;
    left: 80px;
    top: 40px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.milestone-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.milestone-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.milestone-pill {
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.95);
}

.milestone-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.milestone-link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.milestone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .milestone {
        padding: 0 0 4rem 4rem;
    }

    .milestone-card {
        padding: 1.75rem;
    }
}

 

.about {
    background: var(--bg-secondary);
}

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

.about-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.skill {
    background: transparent;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.contact {
    background: white;
    text-align: center;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

.footer {
    background: var(--text-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-secondary);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    line-height: 1;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Project Hero Section */
.project-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
}

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

.project-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-hero-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
    font-size: 1rem;
    opacity: 0.9;
}

.project-hero-description {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    opacity: 0.95;
    line-height: 1.8;
    white-space: pre-line;
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li::after {
    content: '›';
    color: var(--text-light);
}

.breadcrumb-list li:last-child::after {
    content: '';
}

.breadcrumb-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
    opacity: 0.7;
}

.breadcrumb-current {
    color: var(--text-light);
}

/* View Gallery Button */
.view-gallery-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.view-gallery-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Hero Section - Mobile Optimized */
    .hero {
        min-height: 85vh;
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Navigation - Mobile Optimized */
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .nav-link {
        padding: 0.4rem 0.6rem;
        white-space: nowrap;
    }

    /* Project Cards - Mobile Optimized */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 1.25rem;
    }

    .project-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .project-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .project-tags {
        margin-bottom: 1rem;
    }

    .tag {
        font-size: 0.85rem;
        padding: 0.35rem 0.85rem;
    }

    .view-gallery-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        display: block;
        text-align: center;
    }

    /* Timeline - Mobile Optimized */
    .timeline--glow {
        background: #0f172a;
        padding: 4rem 0;
    }

    .journey-track {
        padding-left: 1.5rem;
        margin-top: 2rem;
    }

    .journey-track::before {
        left: 24px;
    }

    .milestone {
        padding: 0 0 3rem 2.75rem;
    }

    .milestone-card {
        width: 100%;
        padding: 1.5rem;
        background: rgba(17, 24, 39, 0.92);
        border-left: 3px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .milestone-year {
        left: 24px;
    }

    .milestone-dot {
        left: 24px;
        top: 40px;
    }

    /* About Section - Mobile Optimized */
    .about-text p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .about-text h3 {
        font-size: 1.35rem;
        margin: 1.5rem 0 1rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .skill {
        padding: 0.85rem 0.5rem;
        font-size: 0.9rem;
    }

    /* Contact Section - Mobile Optimized */
    .contact-description {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
        padding: 0 1rem;
    }

    .contact-links {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .contact-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        border-radius: 12px;
    }

    /* Footer - Mobile Optimized */
    .footer {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }

    /* Gallery Grid - Mobile Optimized */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        margin: 1.5rem 0;
    }

    .gallery-item {
        aspect-ratio: 1/1;
        border-radius: 8px;
        max-height: none;
        cursor: pointer;
        background: var(--bg-secondary);
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .gallery-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

    .gallery-item:hover {
        transform: none;
    }

    .gallery-item:active {
        transform: scale(0.96);
        opacity: 0.85;
    }

    /* Project Hero - Mobile Optimized */
    .project-hero {
        min-height: 40vh;
        padding: 2rem 1.5rem;
    }

    .project-hero-content {
        padding: 0;
    }

    .project-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .project-hero-meta {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .year-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }

    .project-hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .lightbox-content {
        max-width: 100vw;
        max-height: 100vh;
        width: 100%;
        height: 100%;
    }

    .lightbox-image {
        max-width: 100%;
        max-height: 100vh;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 0;
    }

    .lightbox-overlay {
        background: rgba(0, 0, 0, 1);
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2.5rem;
        padding: 1.5rem 1.75rem;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(5px);
        z-index: 10001;
        min-width: 60px;
        min-height: 60px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-close {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10001;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .lightbox-counter {
        font-size: 0.9rem;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        padding: 0.5rem 1rem;
        z-index: 10001;
    }

    /* Section Titles - Mobile Optimized */
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.5;
    }

    /* Breadcrumb - Mobile Optimized */
    .breadcrumb {
        padding: 1rem 0;
        margin-top: 70px;
    }

    .breadcrumb-list {
        font-size: 0.9rem;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        font-weight: 500;
    }
}

/* Additional Touch Optimizations for All Devices */
@media (hover: none) and (pointer: coarse) {
    .project-card,
    .contact-button,
    .cta-button,
    .view-gallery-btn {
        transition: transform 0.15s ease, opacity 0.15s ease;
    }

    .project-card:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .contact-button:active,
    .cta-button:active,
    .view-gallery-btn:active {
        transform: scale(0.97);
        opacity: 0.85;
    }
}
