/* --- CSS Reset & Variables --- */
:root {
    --bg-main: #0a0a0c;
    --bg-alt: #121216;
    --text-primary: #f5f5fa;
    --text-secondary: #a0a0b0;
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --accent: #3b82f6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Utility Classes --- */
.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.bg-alt {
    background-color: var(--bg-alt);
    max-width: 100%;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 5%;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    text-decoration: none;
    color: var(--text-primary);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-primary);
}

/* --- Hero Section --- */
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content .title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero-content .description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--primary-color);
}

.hero-graphic {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(50px);
    animation: orbFloat 8s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.2); }
}

.hero-graphic .glass-card {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.secondary-card {
    position: absolute;
    bottom: 20%;
    right: 0%;
    animation: float 7s ease-in-out infinite alternate-reverse !important;
}

.tertiary-card {
    position: absolute;
    top: 15%;
    right: -5%;
    animation: float 8s ease-in-out infinite !important;
    animation-delay: 1s !important;
}

.card-icon {
    font-size: 2.5rem;
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 12px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}


/* --- About Section --- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-text h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.education {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.education .sub-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skill-category h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.tag {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #e0e7ff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- Experience Section (Timeline) --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: var(--glass-border);
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 5px;
    left: 12px;
    width: 18px;
    height: 18px;
    background: var(--bg-main);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-org {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

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

.timeline-content ul {
    list-style-position: inside;
    color: var(--text-secondary);
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
}

/* --- Projects Section --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.project-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.project-card {
    transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

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

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-content p:not(.project-category) {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.tag.small {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.05);
    border: none;
    color: var(--text-secondary);
}

.gallery-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.gallery-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* --- Footer & Contact --- */
.footer-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.footer-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    background: rgba(255,255,255,0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

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

.social-btn {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: var(--transition);
}

.social-btn:hover {
    color: var(--text-primary);
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* --- Responsive Design --- */
@media (max-width: 968px) {
    .hero-container, .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content .title {
        font-size: 3.5rem;
    }
    .hero-content .description {
        margin: 0 auto 2.5rem;
    }
    .cta-buttons {
        justify-content: center;
    }
    .hero-graphic {
        display: none; /* Hide graphic on smaller screens to save space */
    }
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .section-title {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-alt);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* --- Animations for JS IntersectionObserver --- */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}


/* ==================================
   SPA GALLERY OVERLAYS
   ================================== */
.gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000; /* Above navbar and content, below lightbox */
    background: #000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out, visibility 0.5s step-end;
    overflow-y: auto;
    overflow-x: hidden;
}

.gallery-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.5s ease-in-out, visibility 0s step-start;
}

.gallery-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay.active .gallery-container {
    transform: scale(1);
}

.lightbox {
    z-index: 9999 !important;
}

.close-overlay-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-overlay-btn:hover {
    background: var(--theme-primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px var(--theme-glow);
}




/* === DYNAMIC GALLERY CSS === */

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 40px 0;
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.carousel-slide {
    position: absolute;
    width: 60%;
    max-width: 800px;
    aspect-ratio: 16/9;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-nav:hover {
    background: var(--theme-primary);
    border-color: transparent;
    box-shadow: 0 0 20px var(--theme-glow);
}

.carousel-prev { left: 5%; }
.carousel-next { right: 5%; }

.carousel-status {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.7;
}

.gallery-bottom {
    margin-top: auto;
    padding: 2rem;
    text-align: left;
}

.back-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Lightbox Styling */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.3s;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

.lightbox-counter {
    margin-top: 2rem;
    color: white;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .lightbox-nav { width: 45px; height: 45px; font-size: 1.5rem; }
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .carousel-slide { width: 85%; }
}

        /* === MISSION CONTROL === */
        #gallery-sanosat .gallery-container {
            background-color: #060a0f;
            background-image:
                linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
        }
        #gallery-sanosat .project-hero h1 { font-family: 'Outfit', monospace; letter-spacing: 3px; text-transform: uppercase; font-size: 2.5rem; }
        #gallery-sanosat .project-category { font-family: 'Courier New', monospace; letter-spacing: 4px; font-size: 0.75rem; }
        #gallery-sanosat .project-desc { border-left: 3px solid var(--theme-primary); padding-left: 1.2rem; }
        #gallery-sanosat .carousel-slide img { border-radius: 4px; border: 1px solid rgba(16, 185, 129, 0.3); box-shadow: 0 0 20px rgba(16, 185, 129, 0.15); }
    
        /* === BIO-LAB === */
        #gallery-decimalsat .gallery-container {
            background: #0c0a08;
            background-image:
                radial-gradient(ellipse at 20% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
        }
        #gallery-decimalsat .project-hero::before { width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.05) 40%, transparent 70%); filter: blur(100px); }
        #gallery-decimalsat .project-hero h1 { font-size: 3.2rem; }
        #gallery-decimalsat .project-desc { background: rgba(245, 158, 11, 0.04); padding: 1.2rem 1.5rem; border-radius: 20px; border: 1px solid rgba(245, 158, 11, 0.1); }
        #gallery-decimalsat .carousel-slide img { border-radius: 24px; box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2); }
    
        /* === AEROSPACE === */
        #gallery-vegafly .gallery-container {
            background: #050a10;
            background-image:
                linear-gradient(135deg, rgba(6, 182, 212, 0.02) 25%, transparent 25%),
                linear-gradient(225deg, rgba(6, 182, 212, 0.02) 25%, transparent 25%),
                linear-gradient(45deg, rgba(6, 182, 212, 0.02) 25%, transparent 25%),
                linear-gradient(315deg, rgba(6, 182, 212, 0.02) 25%, transparent 25%);
            background-size: 60px 60px; background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
        }
        #gallery-vegafly .project-hero::before { width: 500px; height: 200px; background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent); filter: blur(60px); top: 0; }
        #gallery-vegafly .project-hero h1 { letter-spacing: 5px; text-transform: uppercase; font-weight: 900; }
        #gallery-vegafly .project-category { letter-spacing: 5px; border: 1px solid rgba(6, 182, 212, 0.25); display: inline-block; padding: 0.4rem 1.2rem; }
        #gallery-vegafly .carousel-slide img { border-radius: 0; border: 1px solid rgba(6, 182, 212, 0.4); }
        #gallery-vegafly .carousel-nav, #gallery-vegafly .lightbox-nav { clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%); border-radius: 0; width: 60px; }
    