:root {
    --primary: #0088CC;
    --secondary: #06d6a0;
    --bg-body: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #201a1a;
}

[data-theme="dark"] {
    --bg-body: #050505;
    --text-main: #ffffff;
    --text-muted: #3a3939;
}

.syne-font {
    font-family: 'Syne', sans-serif;
}

.tech-section {
    border: 1px solid var(--text-muted);
    text-align: center;
    border-radius: 16px;
    padding: 60px 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-section:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

}

/* Tech Card Base */
.tech-card {
    background-color: var(--card-bg);
    /* Use theme variable */
    border: 1px solid rgba(0, 136, 204, 0.3);
    /* Color defined by specific class */
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    margin-bottom: 20px;
}

.tech-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tech-card img {
    width: 3rem;
    height: 1.5rem;
    object-fit: contain;
    transition: transform 0.3s;
}

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

/* Dark mode icon adjustment */
[data-theme="dark"] .tech-card img {
    filter: brightness(1.1);
}

.tech-card span {
    font-size: 10px;
}




/* Background Gradient */
.page-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 136, 204, 0.05), transparent, rgba(6, 214, 160, 0.05));
    z-index: -1;
    pointer-events: none;
}

.gradient-text {
    background: linear-gradient(to right, #0088CC, #06d6a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}