body {
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f9fbff; /* Very slight blue tint for a technical look */
}

/* --- HERO --- */
.hero {
    padding: 80px 0 40px;
    background: #ffffff;
}

.project-badge {
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bs-primary);
}

/* --- DYNAMIC CONTENT TABS --- */
.nav-pills .nav-link {
    color: #6c757d;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-pills .nav-link.active {
    background-color: var(--bs-primary);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.dynamic-container {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 3rem;
    min-height: 400px; /* Prevents jumping when switching tabs */
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}


/* --- CAROUSEL --- */
.browser-frame {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.browser-bar {
    background: #f1f1f1;
    height: 30px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    gap: 6px;
}

.dot { height: 8px; width: 8px; border-radius: 50%; background: #ddd; }