body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: sans-serif;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    padding: 0.5% 1%;
    border: 2px solid #00ffb4;
    border-radius: 6px;
    box-shadow: 0 0 12px #00ffb4;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #00ffb4;
    letter-spacing: 1px;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu-link {
    color: #dcdcdc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s ease;
    position: relative;
}

.menu-link:hover {
    color: #00ffb4;
    text-shadow: 0 0 8px #00ffb4;
}

.menu-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #00ffb4;
    box-shadow: 0 0 8px #00ffb4;
    transition: 0.3s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-link.active {
    color: #00ffb4;
    text-shadow: 0 0 8px #00ffb4;
}

.menu-link.active::after {
    width: 100%;
}

.hire-btn {
    background: #00ffb4;
    color: #000;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0 0 12px #00ffb4;
}

.hire-btn:hover {
    background: #00d49a;
    box-shadow: 0 0 18px #00ffb4;
}


.blocks-wrapper {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Replace the temporary block backgrounds with this */

.block {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Beautiful consistent dark tech backgrounds */
#main {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

#services {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

#stack {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

#contacts {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

#block5 {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

#block6 {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

#block7 {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

/* Subtle glow overlay for all blocks */
.block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 60% 30%, rgba(0, 255, 180, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}