.hero {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.hero-image {
    order: 1;
    flex: 0 0 auto;
    text-align: center;
    padding-top: 8rem;
    margin-right: 10rem;
}

.hero-image img {
    max-width: 280px;
    border-radius: 50%;
    border: 4px solid #60a5fa33;
    box-shadow: 0 0 20px #60a5fa55;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.techstack-card {
    order: 2;
    position: relative;
    top: 8rem;
    left: 0rem;
    width: 300px;
    background: #ffffffee;
    border-radius: 16px;
    padding: 0.5rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
    z-index: 2;
}

.techstack-card:hover {
    transform: translateY(-4px);
}

.techstack-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.stack-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.2rem;
}

.stack-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
    white-space: nowrap;
}

.stack-list img {
    height: 30px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: transform 0.2s ease;
}

.stack-list img:hover {
    transform: scale(1.15);
    filter: none;
}

.hero-text {
    order: 3;
    flex: 1 1 300px;
    margin-top: -3rem;
    margin-left: 10rem;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.hero-buttons a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.hero-buttons a:hover {
    transform: scale(1.05);
}

.icon-button {
    height: 70px;
    object-fit: contain;
}

.hero-arrow {
    width: 100%;
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 2rem;
}

.hero-arrow img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.hero-arrow img:hover {
    transform: translateY(4px);
    opacity: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(8px);
    }
}
.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: #374151;
    margin: 0.2rem 0 1rem;
}

.pin-icon {
    width: 20px;
    height: 20px;
    filter: grayscale(30%);
    opacity: 0.8;
}