/* Global Styles */
body {
    font-family: 'Indie Flower', cursive;
    margin: 0;
    padding: 0;
    color: #fff;
    /* Background image with dark overlay */
    background: url('../img/pexels-enginakyurt-24181494.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for readability */
    z-index: -1;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

/* Navigation */
.menu-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-nav .nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s;
}

.menu-nav .nav-link:hover,
.menu-nav .current .nav-link {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

/* Main Section */
main#work {
    text-align: center;
    padding: 4rem 2rem;
}

.lg-heading {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.sm-heading {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #fff;
    opacity: 0.8;
}

/* Projects Grid */
.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Project Card - Glassmorphism Style */
.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff;
}

/* Project Image */
.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

/* Project Info */
.project-info {
    padding: 1rem;
}

.project-info h3 {
    margin: 0.5rem 0 1rem 0;
    font-size: 1.4rem;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

/* View Button */
.btn-view {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
    border: 1px solid #00ffff;
}

.btn-view:hover {
    background: #00ffff;
    color
